Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | Copyright (c) 2014 Cisco and/or its affiliates. |
| 3 | |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at: |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 17 | /** @cond DOCUMENTATION_IS_IN_BIHASH_DOC_H */ |
Dave Barach | dd3a57f | 2016-07-27 16:58:51 -0400 | [diff] [blame] | 18 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 19 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 20 | * Note: to instantiate the template multiple times in a single file, |
| 21 | * #undef __included_bihash_template_h__... |
| 22 | */ |
| 23 | #ifndef __included_bihash_template_h__ |
| 24 | #define __included_bihash_template_h__ |
| 25 | |
| 26 | #include <vppinfra/heap.h> |
| 27 | #include <vppinfra/format.h> |
| 28 | #include <vppinfra/pool.h> |
Dave Barach | 30765e7 | 2018-02-23 07:45:36 -0500 | [diff] [blame] | 29 | #include <vppinfra/cache.h> |
Damjan Marion | 2a03efe | 2018-07-20 21:48:59 +0200 | [diff] [blame] | 30 | #include <vppinfra/lock.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 31 | |
| 32 | #ifndef BIHASH_TYPE |
| 33 | #error BIHASH_TYPE not defined |
| 34 | #endif |
| 35 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 36 | #ifdef BIHASH_32_64_SVM |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 37 | #include <vppinfra/linux/syscall.h> |
| 38 | #include <fcntl.h> |
| 39 | #define F_LINUX_SPECIFIC_BASE 1024 |
| 40 | #define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9) |
| 41 | #define F_SEAL_SHRINK (2) |
| 42 | /* Max page size 2**16 due to refcount width */ |
| 43 | #define BIHASH_FREELIST_LENGTH 17 |
| 44 | #endif |
| 45 | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 46 | /* default is 2MB, use 30 for 1GB */ |
| 47 | #ifndef BIHASH_LOG2_HUGEPAGE_SIZE |
| 48 | #define BIHASH_LOG2_HUGEPAGE_SIZE 21 |
| 49 | #endif |
| 50 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 51 | #define _bv(a,b) a##b |
| 52 | #define __bv(a,b) _bv(a,b) |
| 53 | #define BV(a) __bv(a,BIHASH_TYPE) |
| 54 | |
| 55 | #define _bvt(a,b) a##b##_t |
| 56 | #define __bvt(a,b) _bvt(a,b) |
| 57 | #define BVT(a) __bvt(a,BIHASH_TYPE) |
| 58 | |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 59 | #define _bvs(a,b) struct a##b |
| 60 | #define __bvs(a,b) _bvs(a,b) |
| 61 | #define BVS(a) __bvs(a,BIHASH_TYPE) |
| 62 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 63 | #if _LP64 == 0 |
| 64 | #define OVERFLOW_ASSERT(x) ASSERT(((x) & 0xFFFFFFFF00000000ULL) == 0) |
| 65 | #define u64_to_pointer(x) (void *)(u32)((x)) |
| 66 | #define pointer_to_u64(x) (u64)(u32)((x)) |
| 67 | #else |
| 68 | #define OVERFLOW_ASSERT(x) |
| 69 | #define u64_to_pointer(x) (void *)((x)) |
| 70 | #define pointer_to_u64(x) (u64)((x)) |
| 71 | #endif |
| 72 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 73 | typedef struct BV (clib_bihash_value) |
| 74 | { |
| 75 | union |
| 76 | { |
| 77 | BVT (clib_bihash_kv) kvp[BIHASH_KVP_PER_PAGE]; |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 78 | u64 next_free_as_u64; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 79 | }; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 80 | } BVT (clib_bihash_value); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 81 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 82 | #define BIHASH_BUCKET_OFFSET_BITS 36 |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 83 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 84 | typedef struct |
| 85 | { |
| 86 | union |
| 87 | { |
| 88 | struct |
| 89 | { |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 90 | u64 offset:BIHASH_BUCKET_OFFSET_BITS; |
| 91 | u64 lock:1; |
Damjan Marion | 882fcfe | 2018-07-17 23:01:49 +0200 | [diff] [blame] | 92 | u64 linear_search:1; |
| 93 | u64 log2_pages:8; |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 94 | u64 refcnt:16; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 95 | }; |
| 96 | u64 as_u64; |
| 97 | }; |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 98 | } BVT (clib_bihash_bucket); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 99 | |
Damjan Marion | 882fcfe | 2018-07-17 23:01:49 +0200 | [diff] [blame] | 100 | STATIC_ASSERT_SIZEOF (BVT (clib_bihash_bucket), sizeof (u64)); |
Damjan Marion | 882fcfe | 2018-07-17 23:01:49 +0200 | [diff] [blame] | 101 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 102 | typedef CLIB_PACKED (struct { |
| 103 | /* |
| 104 | * Backing store allocation. Since bihash manages its own |
Andrew Yourtchenko | a713254 | 2018-09-19 15:50:55 +0200 | [diff] [blame] | 105 | * freelists, we simple dole out memory starting from alloc_arena[alloc_arena_next]. |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 106 | */ |
Andrew Yourtchenko | a713254 | 2018-09-19 15:50:55 +0200 | [diff] [blame] | 107 | u64 alloc_arena_next; /* Next offset from alloc_arena to allocate, definitely NOT a constant */ |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 108 | u64 alloc_arena_size; /* Size of the arena */ |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 109 | u64 alloc_arena_mapped; /* Size of the mapped memory in the arena */ |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 110 | /* Two SVM pointers stored as 8-byte integers */ |
| 111 | u64 alloc_lock_as_u64; |
| 112 | u64 buckets_as_u64; |
| 113 | /* freelist list-head arrays/vectors */ |
| 114 | u64 freelists_as_u64; |
| 115 | u32 nbuckets; /* Number of buckets */ |
| 116 | /* Set when header valid */ |
| 117 | volatile u32 ready; |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 118 | u64 pad[1]; |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 119 | }) BVT (clib_bihash_shared_header); |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 120 | |
| 121 | STATIC_ASSERT_SIZEOF (BVT (clib_bihash_shared_header), 8 * sizeof (u64)); |
| 122 | |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 123 | typedef |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 124 | BVS (clib_bihash_alloc_chunk) |
| 125 | { |
| 126 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
| 127 | |
| 128 | /* chunk size */ |
| 129 | uword size; |
| 130 | |
| 131 | /* pointer to the next allocation */ |
| 132 | u8 *next_alloc; |
| 133 | |
| 134 | /* number of bytes left in this chunk */ |
| 135 | uword bytes_left; |
| 136 | |
| 137 | /* doubly linked list of heap allocated chunks */ |
| 138 | BVS (clib_bihash_alloc_chunk) * prev, *next; |
| 139 | |
| 140 | } BVT (clib_bihash_alloc_chunk); |
| 141 | |
| 142 | typedef |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 143 | BVS (clib_bihash) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 144 | { |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 145 | BVT (clib_bihash_bucket) * buckets; |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 146 | volatile u32 *alloc_lock; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 147 | |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 148 | BVT (clib_bihash_value) ** working_copies; |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 149 | int *working_copy_lengths; |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 150 | BVT (clib_bihash_bucket) saved_bucket; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 151 | |
| 152 | u32 nbuckets; |
| 153 | u32 log2_nbuckets; |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 154 | u64 memory_size; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 155 | u8 *name; |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 156 | format_function_t *fmt_fn; |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 157 | void *heap; |
| 158 | BVT (clib_bihash_alloc_chunk) * chunks; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 159 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 160 | u64 *freelists; |
Dave Barach | 97f5af0 | 2018-02-22 09:48:45 -0500 | [diff] [blame] | 161 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 162 | #if BIHASH_32_64_SVM |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 163 | BVT (clib_bihash_shared_header) * sh; |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 164 | int memfd; |
| 165 | #else |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 166 | BVT (clib_bihash_shared_header) sh; |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 167 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 168 | |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 169 | u64 alloc_arena; /* Base of the allocation arena */ |
Dave Barach | 67d09e0 | 2019-08-01 08:15:01 -0400 | [diff] [blame] | 170 | volatile u8 instantiated; |
Nathan Skrzypczak | a8c720e | 2021-08-06 12:03:11 +0200 | [diff] [blame] | 171 | u8 dont_add_to_all_bihash_list; |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 172 | |
Vijayabhaskar Katamreddy | fb8e61c | 2017-12-14 13:20:50 -0800 | [diff] [blame] | 173 | /** |
| 174 | * A custom format function to print the Key and Value of bihash_key instead of default hexdump |
| 175 | */ |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 176 | format_function_t *kvp_fmt_fn; |
Vijayabhaskar Katamreddy | fb8e61c | 2017-12-14 13:20:50 -0800 | [diff] [blame] | 177 | |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 178 | /** Optional statistics-gathering callback */ |
| 179 | #if BIHASH_ENABLE_STATS |
| 180 | void (*inc_stats_callback) (BVS (clib_bihash) *, int stat_id, u64 count); |
| 181 | |
| 182 | /** Statistics callback context (e.g. address of stats data structure) */ |
| 183 | void *inc_stats_context; |
| 184 | #endif |
| 185 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 186 | } BVT (clib_bihash); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 187 | |
Dave Barach | bdf9b97 | 2019-09-03 10:57:19 -0400 | [diff] [blame] | 188 | typedef struct |
| 189 | { |
| 190 | BVT (clib_bihash) * h; |
| 191 | char *name; |
| 192 | u32 nbuckets; |
| 193 | uword memory_size; |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 194 | format_function_t *kvp_fmt_fn; |
Dave Barach | bdf9b97 | 2019-09-03 10:57:19 -0400 | [diff] [blame] | 195 | u8 instantiate_immediately; |
| 196 | u8 dont_add_to_all_bihash_list; |
| 197 | } BVT (clib_bihash_init2_args); |
| 198 | |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 199 | extern void **clib_all_bihashes; |
| 200 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 201 | #if BIHASH_32_64_SVM |
| 202 | #undef alloc_arena_next |
| 203 | #undef alloc_arena_size |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 204 | #undef alloc_arena_mapped |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 205 | #undef alloc_arena |
| 206 | #undef CLIB_BIHASH_READY_MAGIC |
| 207 | #define alloc_arena_next(h) (((h)->sh)->alloc_arena_next) |
| 208 | #define alloc_arena_size(h) (((h)->sh)->alloc_arena_size) |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 209 | #define alloc_arena_mapped(h) (((h)->sh)->alloc_arena_mapped) |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 210 | #define alloc_arena(h) ((h)->alloc_arena) |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 211 | #define CLIB_BIHASH_READY_MAGIC 0xFEEDFACE |
| 212 | #else |
| 213 | #undef alloc_arena_next |
| 214 | #undef alloc_arena_size |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 215 | #undef alloc_arena_mapped |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 216 | #undef alloc_arena |
| 217 | #undef CLIB_BIHASH_READY_MAGIC |
| 218 | #define alloc_arena_next(h) ((h)->sh.alloc_arena_next) |
| 219 | #define alloc_arena_size(h) ((h)->sh.alloc_arena_size) |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 220 | #define alloc_arena_mapped(h) ((h)->sh.alloc_arena_mapped) |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 221 | #define alloc_arena(h) ((h)->alloc_arena) |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 222 | #define CLIB_BIHASH_READY_MAGIC 0 |
| 223 | #endif |
| 224 | |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 225 | #ifndef BIHASH_STAT_IDS |
| 226 | #define BIHASH_STAT_IDS 1 |
| 227 | |
| 228 | #define foreach_bihash_stat \ |
| 229 | _(alloc_add) \ |
| 230 | _(add) \ |
| 231 | _(split_add) \ |
| 232 | _(replace) \ |
| 233 | _(update) \ |
| 234 | _(del) \ |
| 235 | _(del_free) \ |
| 236 | _(linear) \ |
| 237 | _(resplit) \ |
| 238 | _(working_copy_lost) \ |
| 239 | _(splits) /* must be last */ |
| 240 | |
| 241 | typedef enum |
| 242 | { |
| 243 | #define _(a) BIHASH_STAT_##a, |
| 244 | foreach_bihash_stat |
| 245 | #undef _ |
| 246 | BIHASH_STAT_N_STATS, |
| 247 | } BVT (clib_bihash_stat_id); |
| 248 | #endif /* BIHASH_STAT_IDS */ |
| 249 | |
| 250 | static inline void BV (clib_bihash_increment_stat) (BVT (clib_bihash) * h, |
| 251 | int stat_id, u64 count) |
| 252 | { |
| 253 | #if BIHASH_ENABLE_STATS |
| 254 | if (PREDICT_FALSE (h->inc_stats_callback != 0)) |
| 255 | h->inc_stats_callback (h, stat_id, count); |
| 256 | #endif |
| 257 | } |
| 258 | |
| 259 | #if BIHASH_ENABLE_STATS |
| 260 | static inline void BV (clib_bihash_set_stats_callback) |
| 261 | (BVT (clib_bihash) * h, void (*cb) (BVT (clib_bihash) *, int, u64), |
| 262 | void *ctx) |
| 263 | { |
| 264 | h->inc_stats_callback = cb; |
| 265 | h->inc_stats_context = ctx; |
| 266 | } |
| 267 | #endif |
| 268 | |
| 269 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 270 | static inline void BV (clib_bihash_alloc_lock) (BVT (clib_bihash) * h) |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 271 | { |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 272 | while (__atomic_test_and_set (h->alloc_lock, __ATOMIC_ACQUIRE)) |
Damjan Marion | 2a03efe | 2018-07-20 21:48:59 +0200 | [diff] [blame] | 273 | CLIB_PAUSE (); |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 274 | } |
| 275 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 276 | static inline void BV (clib_bihash_alloc_unlock) (BVT (clib_bihash) * h) |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 277 | { |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 278 | __atomic_clear (h->alloc_lock, __ATOMIC_RELEASE); |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 279 | } |
| 280 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 281 | static inline void BV (clib_bihash_lock_bucket) (BVT (clib_bihash_bucket) * b) |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 282 | { |
Damjan Marion | 74ee18b | 2020-04-21 20:14:34 +0200 | [diff] [blame] | 283 | BVT (clib_bihash_bucket) mask = { .lock = 1 }; |
Damjan Marion | 74ee18b | 2020-04-21 20:14:34 +0200 | [diff] [blame] | 284 | u64 old; |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 285 | |
Damjan Marion | 74ee18b | 2020-04-21 20:14:34 +0200 | [diff] [blame] | 286 | try_again: |
| 287 | old = clib_atomic_fetch_or (&b->as_u64, mask.as_u64); |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 288 | |
Damjan Marion | 74ee18b | 2020-04-21 20:14:34 +0200 | [diff] [blame] | 289 | if (PREDICT_FALSE (old & mask.as_u64)) |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 290 | { |
Damjan Marion | 74ee18b | 2020-04-21 20:14:34 +0200 | [diff] [blame] | 291 | /* somebody else flipped the bit, try again */ |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 292 | CLIB_PAUSE (); |
Damjan Marion | 74ee18b | 2020-04-21 20:14:34 +0200 | [diff] [blame] | 293 | goto try_again; |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 294 | } |
Dave Barach | 858c06f | 2017-07-21 10:44:27 -0400 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | static inline void BV (clib_bihash_unlock_bucket) |
| 298 | (BVT (clib_bihash_bucket) * b) |
| 299 | { |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 300 | b->lock = 0; |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | static inline void *BV (clib_bihash_get_value) (BVT (clib_bihash) * h, |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 304 | uword offset) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 305 | { |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 306 | u8 *hp = (u8 *) (uword) alloc_arena (h); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 307 | u8 *vp = hp + offset; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 308 | |
| 309 | return (void *) vp; |
| 310 | } |
| 311 | |
Damjan Marion | 882fcfe | 2018-07-17 23:01:49 +0200 | [diff] [blame] | 312 | static inline int BV (clib_bihash_bucket_is_empty) |
| 313 | (BVT (clib_bihash_bucket) * b) |
| 314 | { |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 315 | /* Note: applied to locked buckets, test offset */ |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 316 | if (BIHASH_KVP_AT_BUCKET_LEVEL == 0) |
| 317 | return b->offset == 0; |
| 318 | else |
| 319 | return (b->log2_pages == 0 && b->refcnt == 1); |
Damjan Marion | 882fcfe | 2018-07-17 23:01:49 +0200 | [diff] [blame] | 320 | } |
| 321 | |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 322 | static inline uword BV (clib_bihash_get_offset) (BVT (clib_bihash) * h, |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 323 | void *v) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 324 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 325 | u8 *hp, *vp; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 326 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 327 | hp = (u8 *) (uword) alloc_arena (h); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 328 | vp = (u8 *) v; |
| 329 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 330 | return vp - hp; |
| 331 | } |
| 332 | |
Paul Atkins | 2ac4135 | 2021-01-19 15:22:23 +0000 | [diff] [blame] | 333 | #define BIHASH_ADD 1 |
| 334 | #define BIHASH_DEL 0 |
| 335 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 336 | void BV (clib_bihash_init) |
| 337 | (BVT (clib_bihash) * h, char *name, u32 nbuckets, uword memory_size); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 338 | |
Dave Barach | bdf9b97 | 2019-09-03 10:57:19 -0400 | [diff] [blame] | 339 | void BV (clib_bihash_init2) (BVT (clib_bihash_init2_args) * a); |
| 340 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 341 | #if BIHASH_32_64_SVM |
Dave Barach | d4a639b | 2020-08-06 11:38:40 -0400 | [diff] [blame] | 342 | void BV (clib_bihash_initiator_init_svm) |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 343 | (BVT (clib_bihash) * h, char *name, u32 nbuckets, u64 memory_size); |
Dave Barach | d4a639b | 2020-08-06 11:38:40 -0400 | [diff] [blame] | 344 | void BV (clib_bihash_responder_init_svm) |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 345 | (BVT (clib_bihash) * h, char *name, int fd); |
| 346 | #endif |
| 347 | |
Vijayabhaskar Katamreddy | fb8e61c | 2017-12-14 13:20:50 -0800 | [diff] [blame] | 348 | void BV (clib_bihash_set_kvp_format_fn) (BVT (clib_bihash) * h, |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 349 | format_function_t * kvp_fmt_fn); |
Vijayabhaskar Katamreddy | fb8e61c | 2017-12-14 13:20:50 -0800 | [diff] [blame] | 350 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 351 | void BV (clib_bihash_free) (BVT (clib_bihash) * h); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 352 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 353 | int BV (clib_bihash_add_del) (BVT (clib_bihash) * h, |
| 354 | BVT (clib_bihash_kv) * add_v, int is_add); |
Nathan Skrzypczak | 17ecd85 | 2021-12-02 14:40:06 +0100 | [diff] [blame] | 355 | |
| 356 | int BV (clib_bihash_add_del_with_hash) (BVT (clib_bihash) * h, |
| 357 | BVT (clib_bihash_kv) * add_v, u64 hash, |
| 358 | int is_add); |
Matus Fabian | 828d27e | 2018-08-21 03:15:50 -0700 | [diff] [blame] | 359 | int BV (clib_bihash_add_or_overwrite_stale) (BVT (clib_bihash) * h, |
| 360 | BVT (clib_bihash_kv) * add_v, |
| 361 | int (*is_stale_cb) (BVT |
| 362 | (clib_bihash_kv) |
| 363 | *, void *), |
| 364 | void *arg); |
Nathan Skrzypczak | 17ecd85 | 2021-12-02 14:40:06 +0100 | [diff] [blame] | 365 | int BV (clib_bihash_add_with_overwrite_cb) ( |
| 366 | BVT (clib_bihash) * h, BVT (clib_bihash_kv) * add_v, |
| 367 | void (*overwrite_cb) (BVT (clib_bihash_kv) *, void *), void *arg); |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 368 | int BV (clib_bihash_search) (BVT (clib_bihash) * h, |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 369 | BVT (clib_bihash_kv) * search_v, |
| 370 | BVT (clib_bihash_kv) * return_v); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 371 | |
Neale Ranns | eb69648 | 2020-09-29 14:44:23 +0000 | [diff] [blame] | 372 | int BV (clib_bihash_is_initialised) (const BVT (clib_bihash) * h); |
| 373 | |
Neale Ranns | f50bac1 | 2019-12-06 05:53:17 +0000 | [diff] [blame] | 374 | #define BIHASH_WALK_STOP 0 |
| 375 | #define BIHASH_WALK_CONTINUE 1 |
| 376 | |
| 377 | typedef |
| 378 | int (*BV (clib_bihash_foreach_key_value_pair_cb)) (BVT (clib_bihash_kv) *, |
| 379 | void *); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 380 | void BV (clib_bihash_foreach_key_value_pair) (BVT (clib_bihash) * h, |
Neale Ranns | f50bac1 | 2019-12-06 05:53:17 +0000 | [diff] [blame] | 381 | BV |
| 382 | (clib_bihash_foreach_key_value_pair_cb) |
| 383 | cb, void *arg); |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 384 | void *clib_all_bihash_set_heap (void); |
| 385 | void clib_bihash_copied (void *dst, void *src); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 386 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 387 | format_function_t BV (format_bihash); |
| 388 | format_function_t BV (format_bihash_kvp); |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 389 | format_function_t BV (format_bihash_lru); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 390 | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 391 | static inline |
| 392 | BVT (clib_bihash_bucket) * |
| 393 | BV (clib_bihash_get_bucket) (BVT (clib_bihash) * h, u64 hash) |
| 394 | { |
| 395 | #if BIHASH_KVP_AT_BUCKET_LEVEL |
| 396 | uword offset; |
| 397 | offset = (hash & (h->nbuckets - 1)); |
| 398 | offset = offset * (sizeof (BVT (clib_bihash_bucket)) |
| 399 | + (BIHASH_KVP_PER_PAGE * sizeof (BVT (clib_bihash_kv)))); |
| 400 | return ((BVT (clib_bihash_bucket) *) (((u8 *) h->buckets) + offset)); |
Nathan Skrzypczak | 7be4746 | 2020-09-01 09:35:31 +0200 | [diff] [blame] | 401 | #else |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 402 | return h->buckets + (hash & (h->nbuckets - 1)); |
Nathan Skrzypczak | 7be4746 | 2020-09-01 09:35:31 +0200 | [diff] [blame] | 403 | #endif |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 404 | } |
| 405 | |
Dave Barach | 30765e7 | 2018-02-23 07:45:36 -0500 | [diff] [blame] | 406 | static inline int BV (clib_bihash_search_inline_with_hash) |
| 407 | (BVT (clib_bihash) * h, u64 hash, BVT (clib_bihash_kv) * key_result) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 408 | { |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 409 | BVT (clib_bihash_kv) rv; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 410 | BVT (clib_bihash_value) * v; |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 411 | BVT (clib_bihash_bucket) * b; |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 412 | int i, limit; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 413 | |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 414 | static const BVT (clib_bihash_bucket) mask = { |
| 415 | .linear_search = 1, |
| 416 | .log2_pages = -1 |
| 417 | }; |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 418 | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 419 | #if BIHASH_LAZY_INSTANTIATE |
Nathan Skrzypczak | 42b29ba | 2020-08-17 14:14:56 +0200 | [diff] [blame] | 420 | if (PREDICT_FALSE (h->instantiated == 0)) |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 421 | return -1; |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 422 | #endif |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 423 | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 424 | b = BV (clib_bihash_get_bucket) (h, hash); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 425 | |
Damjan Marion | 882fcfe | 2018-07-17 23:01:49 +0200 | [diff] [blame] | 426 | if (PREDICT_FALSE (BV (clib_bihash_bucket_is_empty) (b))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 427 | return -1; |
| 428 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 429 | if (PREDICT_FALSE (b->lock)) |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 430 | { |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 431 | volatile BVT (clib_bihash_bucket) * bv = b; |
| 432 | while (bv->lock) |
Damjan Marion | 2a03efe | 2018-07-20 21:48:59 +0200 | [diff] [blame] | 433 | CLIB_PAUSE (); |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 434 | } |
| 435 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 436 | v = BV (clib_bihash_get_value) (h, b->offset); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 437 | |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 438 | /* If the bucket has unresolvable collisions, use linear search */ |
| 439 | limit = BIHASH_KVP_PER_PAGE; |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 440 | |
| 441 | if (PREDICT_FALSE (b->as_u64 & mask.as_u64)) |
| 442 | { |
| 443 | if (PREDICT_FALSE (b->linear_search)) |
| 444 | limit <<= b->log2_pages; |
| 445 | else |
| 446 | v += extract_bits (hash, h->log2_nbuckets, b->log2_pages); |
| 447 | } |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 448 | |
| 449 | for (i = 0; i < limit; i++) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 450 | { |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 451 | if (BV (clib_bihash_key_compare) (v->kvp[i].key, key_result->key)) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 452 | { |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 453 | rv = v->kvp[i]; |
| 454 | if (BV (clib_bihash_is_free) (&rv)) |
| 455 | return -1; |
| 456 | *key_result = rv; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 457 | return 0; |
| 458 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 459 | } |
| 460 | return -1; |
| 461 | } |
| 462 | |
Dave Barach | 30765e7 | 2018-02-23 07:45:36 -0500 | [diff] [blame] | 463 | static inline int BV (clib_bihash_search_inline) |
| 464 | (BVT (clib_bihash) * h, BVT (clib_bihash_kv) * key_result) |
| 465 | { |
| 466 | u64 hash; |
| 467 | |
| 468 | hash = BV (clib_bihash_hash) (key_result); |
| 469 | |
| 470 | return BV (clib_bihash_search_inline_with_hash) (h, hash, key_result); |
| 471 | } |
| 472 | |
| 473 | static inline void BV (clib_bihash_prefetch_bucket) |
| 474 | (BVT (clib_bihash) * h, u64 hash) |
| 475 | { |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 476 | CLIB_PREFETCH (BV (clib_bihash_get_bucket) (h, hash), |
| 477 | BIHASH_BUCKET_PREFETCH_CACHE_LINES * CLIB_CACHE_LINE_BYTES, |
| 478 | LOAD); |
Dave Barach | 30765e7 | 2018-02-23 07:45:36 -0500 | [diff] [blame] | 479 | } |
| 480 | |
| 481 | static inline void BV (clib_bihash_prefetch_data) |
| 482 | (BVT (clib_bihash) * h, u64 hash) |
| 483 | { |
Dave Barach | 30765e7 | 2018-02-23 07:45:36 -0500 | [diff] [blame] | 484 | BVT (clib_bihash_value) * v; |
| 485 | BVT (clib_bihash_bucket) * b; |
| 486 | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 487 | #if BIHASH_LAZY_INSTANTIATE |
Nathan Skrzypczak | 42b29ba | 2020-08-17 14:14:56 +0200 | [diff] [blame] | 488 | if (PREDICT_FALSE (h->instantiated == 0)) |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 489 | return; |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 490 | #endif |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 491 | |
Damjan Marion | 4e14977 | 2020-03-27 16:57:28 +0100 | [diff] [blame] | 492 | b = BV (clib_bihash_get_bucket) (h, hash); |
Dave Barach | 30765e7 | 2018-02-23 07:45:36 -0500 | [diff] [blame] | 493 | |
Damjan Marion | 882fcfe | 2018-07-17 23:01:49 +0200 | [diff] [blame] | 494 | if (PREDICT_FALSE (BV (clib_bihash_bucket_is_empty) (b))) |
Dave Barach | 30765e7 | 2018-02-23 07:45:36 -0500 | [diff] [blame] | 495 | return; |
| 496 | |
Dave Barach | 30765e7 | 2018-02-23 07:45:36 -0500 | [diff] [blame] | 497 | v = BV (clib_bihash_get_value) (h, b->offset); |
| 498 | |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 499 | if (PREDICT_FALSE (b->log2_pages && b->linear_search == 0)) |
| 500 | v += extract_bits (hash, h->log2_nbuckets, b->log2_pages); |
Dave Barach | 30765e7 | 2018-02-23 07:45:36 -0500 | [diff] [blame] | 501 | |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 502 | CLIB_PREFETCH (v, BIHASH_KVP_PER_PAGE * sizeof (BVT (clib_bihash_kv)), |
| 503 | LOAD); |
Dave Barach | 30765e7 | 2018-02-23 07:45:36 -0500 | [diff] [blame] | 504 | } |
| 505 | |
Andrew Yourtchenko | abcddcb | 2018-05-27 20:56:26 +0200 | [diff] [blame] | 506 | static inline int BV (clib_bihash_search_inline_2_with_hash) |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 507 | (BVT (clib_bihash) * h, |
Andrew Yourtchenko | abcddcb | 2018-05-27 20:56:26 +0200 | [diff] [blame] | 508 | u64 hash, BVT (clib_bihash_kv) * search_key, BVT (clib_bihash_kv) * valuep) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 509 | { |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 510 | BVT (clib_bihash_kv) rv; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 511 | BVT (clib_bihash_value) * v; |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 512 | BVT (clib_bihash_bucket) * b; |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 513 | int i, limit; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 514 | |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 515 | static const BVT (clib_bihash_bucket) mask = { |
| 516 | .linear_search = 1, |
| 517 | .log2_pages = -1 |
| 518 | }; |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 519 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 520 | ASSERT (valuep); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 521 | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 522 | #if BIHASH_LAZY_INSTANTIATE |
Nathan Skrzypczak | 42b29ba | 2020-08-17 14:14:56 +0200 | [diff] [blame] | 523 | if (PREDICT_FALSE (h->instantiated == 0)) |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 524 | return -1; |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 525 | #endif |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 526 | |
Damjan Marion | 4e14977 | 2020-03-27 16:57:28 +0100 | [diff] [blame] | 527 | b = BV (clib_bihash_get_bucket) (h, hash); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 528 | |
Damjan Marion | 882fcfe | 2018-07-17 23:01:49 +0200 | [diff] [blame] | 529 | if (PREDICT_FALSE (BV (clib_bihash_bucket_is_empty) (b))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 530 | return -1; |
| 531 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 532 | if (PREDICT_FALSE (b->lock)) |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 533 | { |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 534 | volatile BVT (clib_bihash_bucket) * bv = b; |
| 535 | while (bv->lock) |
Damjan Marion | 2a03efe | 2018-07-20 21:48:59 +0200 | [diff] [blame] | 536 | CLIB_PAUSE (); |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 537 | } |
| 538 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 539 | v = BV (clib_bihash_get_value) (h, b->offset); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 540 | |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 541 | /* If the bucket has unresolvable collisions, use linear search */ |
| 542 | limit = BIHASH_KVP_PER_PAGE; |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 543 | |
| 544 | if (PREDICT_FALSE (b->as_u64 & mask.as_u64)) |
| 545 | { |
| 546 | if (PREDICT_FALSE (b->linear_search)) |
| 547 | limit <<= b->log2_pages; |
| 548 | else |
| 549 | v += extract_bits (hash, h->log2_nbuckets, b->log2_pages); |
| 550 | } |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 551 | |
| 552 | for (i = 0; i < limit; i++) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 553 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 554 | if (BV (clib_bihash_key_compare) (v->kvp[i].key, search_key->key)) |
| 555 | { |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 556 | rv = v->kvp[i]; |
| 557 | if (BV (clib_bihash_is_free) (&rv)) |
| 558 | return -1; |
| 559 | *valuep = rv; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 560 | return 0; |
| 561 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 562 | } |
| 563 | return -1; |
| 564 | } |
| 565 | |
Andrew Yourtchenko | abcddcb | 2018-05-27 20:56:26 +0200 | [diff] [blame] | 566 | static inline int BV (clib_bihash_search_inline_2) |
| 567 | (BVT (clib_bihash) * h, |
| 568 | BVT (clib_bihash_kv) * search_key, BVT (clib_bihash_kv) * valuep) |
| 569 | { |
| 570 | u64 hash; |
| 571 | |
| 572 | hash = BV (clib_bihash_hash) (search_key); |
| 573 | |
| 574 | return BV (clib_bihash_search_inline_2_with_hash) (h, hash, search_key, |
| 575 | valuep); |
| 576 | } |
| 577 | |
| 578 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 579 | #endif /* __included_bihash_template_h__ */ |
Dave Barach | dd3a57f | 2016-07-27 16:58:51 -0400 | [diff] [blame] | 580 | |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 581 | /** @endcond */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 582 | |
| 583 | /* |
| 584 | * fd.io coding-style-patch-verification: ON |
| 585 | * |
| 586 | * Local Variables: |
| 587 | * eval: (c-set-style "gnu") |
| 588 | * End: |
| 589 | */ |