Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 16 | /** @cond DOCUMENTATION_IS_IN_BIHASH_DOC_H */ |
Dave Barach | dd3a57f | 2016-07-27 16:58:51 -0400 | [diff] [blame] | 17 | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 18 | #ifndef MAP_HUGE_SHIFT |
| 19 | #define MAP_HUGE_SHIFT 26 |
| 20 | #endif |
| 21 | |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 22 | #ifndef BIIHASH_MIN_ALLOC_LOG2_PAGES |
| 23 | #define BIIHASH_MIN_ALLOC_LOG2_PAGES 10 |
| 24 | #endif |
| 25 | |
Damjan Marion | 4a251d0 | 2021-05-06 17:28:12 +0200 | [diff] [blame] | 26 | #ifndef BIHASH_USE_HEAP |
| 27 | #define BIHASH_USE_HEAP 1 |
| 28 | #endif |
| 29 | |
Dave Barach | 97f5af0 | 2018-02-22 09:48:45 -0500 | [diff] [blame] | 30 | static inline void *BV (alloc_aligned) (BVT (clib_bihash) * h, uword nbytes) |
| 31 | { |
| 32 | uword rv; |
| 33 | |
| 34 | /* Round to an even number of cache lines */ |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 35 | nbytes = round_pow2 (nbytes, CLIB_CACHE_LINE_BYTES); |
| 36 | |
| 37 | if (BIHASH_USE_HEAP) |
| 38 | { |
| 39 | void *rv, *oldheap; |
| 40 | uword page_sz = sizeof (BVT (clib_bihash_value)); |
| 41 | uword chunk_sz = round_pow2 (page_sz << BIIHASH_MIN_ALLOC_LOG2_PAGES, |
| 42 | CLIB_CACHE_LINE_BYTES); |
| 43 | |
| 44 | BVT (clib_bihash_alloc_chunk) * chunk = h->chunks; |
| 45 | |
| 46 | /* if there is enough space in the currenrt chunk */ |
| 47 | if (chunk && chunk->bytes_left >= nbytes) |
| 48 | { |
| 49 | rv = chunk->next_alloc; |
| 50 | chunk->bytes_left -= nbytes; |
| 51 | chunk->next_alloc += nbytes; |
| 52 | return rv; |
| 53 | } |
| 54 | |
| 55 | /* requested allocation is bigger than chunk size */ |
| 56 | if (nbytes >= chunk_sz) |
| 57 | { |
| 58 | oldheap = clib_mem_set_heap (h->heap); |
| 59 | chunk = clib_mem_alloc_aligned (nbytes + sizeof (*chunk), |
| 60 | CLIB_CACHE_LINE_BYTES); |
| 61 | clib_mem_set_heap (oldheap); |
| 62 | clib_memset_u8 (chunk, 0, sizeof (*chunk)); |
| 63 | chunk->size = nbytes; |
| 64 | rv = (u8 *) (chunk + 1); |
| 65 | if (h->chunks) |
| 66 | { |
| 67 | /* take 2nd place in the list */ |
| 68 | chunk->next = h->chunks->next; |
| 69 | chunk->prev = h->chunks; |
| 70 | h->chunks->next = chunk; |
| 71 | if (chunk->next) |
| 72 | chunk->next->prev = chunk; |
| 73 | } |
| 74 | else |
| 75 | h->chunks = chunk; |
| 76 | |
| 77 | return rv; |
| 78 | } |
| 79 | |
| 80 | oldheap = clib_mem_set_heap (h->heap); |
| 81 | chunk = clib_mem_alloc_aligned (chunk_sz + sizeof (*chunk), |
| 82 | CLIB_CACHE_LINE_BYTES); |
| 83 | clib_mem_set_heap (oldheap); |
| 84 | chunk->size = chunk_sz; |
| 85 | chunk->bytes_left = chunk_sz; |
| 86 | chunk->next_alloc = (u8 *) (chunk + 1); |
| 87 | chunk->next = h->chunks; |
| 88 | chunk->prev = 0; |
| 89 | if (chunk->next) |
| 90 | chunk->next->prev = chunk; |
| 91 | h->chunks = chunk; |
| 92 | rv = chunk->next_alloc; |
| 93 | chunk->bytes_left -= nbytes; |
| 94 | chunk->next_alloc += nbytes; |
| 95 | return rv; |
| 96 | } |
Dave Barach | 97f5af0 | 2018-02-22 09:48:45 -0500 | [diff] [blame] | 97 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 98 | rv = alloc_arena_next (h); |
| 99 | alloc_arena_next (h) += nbytes; |
Dave Barach | 97f5af0 | 2018-02-22 09:48:45 -0500 | [diff] [blame] | 100 | |
Andreas Schultz | b4b525e | 2019-07-19 11:14:50 +0200 | [diff] [blame] | 101 | if (alloc_arena_next (h) > alloc_arena_size (h)) |
Dave Barach | 97f5af0 | 2018-02-22 09:48:45 -0500 | [diff] [blame] | 102 | os_out_of_memory (); |
| 103 | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 104 | if (alloc_arena_next (h) > alloc_arena_mapped (h)) |
| 105 | { |
| 106 | void *base, *rv; |
| 107 | uword alloc = alloc_arena_next (h) - alloc_arena_mapped (h); |
| 108 | int mmap_flags = MAP_FIXED | MAP_PRIVATE | MAP_ANONYMOUS; |
Damjan Marion | e6db775 | 2020-05-24 20:43:10 +0200 | [diff] [blame] | 109 | int mmap_flags_huge = (mmap_flags | MAP_HUGETLB | MAP_LOCKED | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 110 | BIHASH_LOG2_HUGEPAGE_SIZE << MAP_HUGE_SHIFT); |
| 111 | |
| 112 | /* new allocation is 25% of existing one */ |
| 113 | if (alloc_arena_mapped (h) >> 2 > alloc) |
| 114 | alloc = alloc_arena_mapped (h) >> 2; |
| 115 | |
| 116 | /* round allocation to page size */ |
| 117 | alloc = round_pow2 (alloc, 1 << BIHASH_LOG2_HUGEPAGE_SIZE); |
| 118 | |
| 119 | base = (void *) (uword) (alloc_arena (h) + alloc_arena_mapped (h)); |
| 120 | |
| 121 | rv = mmap (base, alloc, PROT_READ | PROT_WRITE, mmap_flags_huge, -1, 0); |
| 122 | |
| 123 | /* fallback - maybe we are still able to allocate normal pages */ |
Damjan Marion | 6183cf4 | 2020-05-27 16:43:35 +0200 | [diff] [blame] | 124 | if (rv == MAP_FAILED || mlock (base, alloc) != 0) |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 125 | rv = mmap (base, alloc, PROT_READ | PROT_WRITE, mmap_flags, -1, 0); |
| 126 | |
| 127 | if (rv == MAP_FAILED) |
| 128 | os_out_of_memory (); |
| 129 | |
| 130 | alloc_arena_mapped (h) += alloc; |
| 131 | } |
| 132 | |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 133 | return (void *) (uword) (rv + alloc_arena (h)); |
Dave Barach | 97f5af0 | 2018-02-22 09:48:45 -0500 | [diff] [blame] | 134 | } |
| 135 | |
Vijayabhaskar Katamreddy | f0bae64 | 2020-01-15 13:45:19 -0800 | [diff] [blame] | 136 | static void BV (clib_bihash_instantiate) (BVT (clib_bihash) * h) |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 137 | { |
| 138 | uword bucket_size; |
| 139 | |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 140 | if (BIHASH_USE_HEAP) |
| 141 | { |
| 142 | h->heap = clib_mem_get_heap (); |
| 143 | h->chunks = 0; |
| 144 | alloc_arena (h) = (uword) clib_mem_get_heap_base (h->heap); |
| 145 | } |
| 146 | else |
| 147 | { |
| 148 | alloc_arena (h) = clib_mem_vm_reserve (0, h->memory_size, |
| 149 | BIHASH_LOG2_HUGEPAGE_SIZE); |
| 150 | if (alloc_arena (h) == ~0) |
| 151 | os_out_of_memory (); |
| 152 | alloc_arena_next (h) = 0; |
| 153 | alloc_arena_size (h) = h->memory_size; |
| 154 | alloc_arena_mapped (h) = 0; |
| 155 | } |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 156 | |
| 157 | bucket_size = h->nbuckets * sizeof (h->buckets[0]); |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 158 | |
| 159 | if (BIHASH_KVP_AT_BUCKET_LEVEL) |
| 160 | bucket_size += |
| 161 | h->nbuckets * BIHASH_KVP_PER_PAGE * sizeof (BVT (clib_bihash_kv)); |
| 162 | |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 163 | h->buckets = BV (alloc_aligned) (h, bucket_size); |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 164 | clib_memset_u8 (h->buckets, 0, bucket_size); |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 165 | |
| 166 | if (BIHASH_KVP_AT_BUCKET_LEVEL) |
| 167 | { |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 168 | int i, j; |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 169 | BVT (clib_bihash_bucket) * b; |
| 170 | |
| 171 | b = h->buckets; |
| 172 | |
| 173 | for (i = 0; i < h->nbuckets; i++) |
| 174 | { |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 175 | BVT (clib_bihash_kv) * v; |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 176 | b->offset = BV (clib_bihash_get_offset) (h, (void *) (b + 1)); |
| 177 | b->refcnt = 1; |
| 178 | /* Mark all elements free */ |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 179 | v = (void *) (b + 1); |
| 180 | for (j = 0; j < BIHASH_KVP_PER_PAGE; j++) |
| 181 | { |
| 182 | BV (clib_bihash_mark_free) (v); |
| 183 | v++; |
| 184 | } |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 185 | /* Compute next bucket start address */ |
| 186 | b = (void *) (((uword) b) + sizeof (*b) + |
| 187 | (BIHASH_KVP_PER_PAGE * |
| 188 | sizeof (BVT (clib_bihash_kv)))); |
| 189 | } |
| 190 | } |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 191 | CLIB_MEMORY_STORE_BARRIER (); |
Dave Barach | 67d09e0 | 2019-08-01 08:15:01 -0400 | [diff] [blame] | 192 | h->instantiated = 1; |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 193 | } |
Dave Barach | 97f5af0 | 2018-02-22 09:48:45 -0500 | [diff] [blame] | 194 | |
Dave Barach | bdf9b97 | 2019-09-03 10:57:19 -0400 | [diff] [blame] | 195 | void BV (clib_bihash_init2) (BVT (clib_bihash_init2_args) * a) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 196 | { |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 197 | int i; |
| 198 | void *oldheap; |
Dave Barach | bdf9b97 | 2019-09-03 10:57:19 -0400 | [diff] [blame] | 199 | BVT (clib_bihash) * h = a->h; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 200 | |
Dave Barach | bdf9b97 | 2019-09-03 10:57:19 -0400 | [diff] [blame] | 201 | a->nbuckets = 1 << (max_log2 (a->nbuckets)); |
| 202 | |
| 203 | h->name = (u8 *) a->name; |
| 204 | h->nbuckets = a->nbuckets; |
| 205 | h->log2_nbuckets = max_log2 (a->nbuckets); |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 206 | h->memory_size = BIHASH_USE_HEAP ? 0 : a->memory_size; |
Dave Barach | 67d09e0 | 2019-08-01 08:15:01 -0400 | [diff] [blame] | 207 | h->instantiated = 0; |
Nathan Skrzypczak | a8c720e | 2021-08-06 12:03:11 +0200 | [diff] [blame] | 208 | h->dont_add_to_all_bihash_list = a->dont_add_to_all_bihash_list; |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 209 | h->fmt_fn = BV (format_bihash); |
| 210 | h->kvp_fmt_fn = a->kvp_fmt_fn; |
Dave Barach | bdf9b97 | 2019-09-03 10:57:19 -0400 | [diff] [blame] | 211 | |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 212 | alloc_arena (h) = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 213 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 214 | /* |
| 215 | * Make sure the requested size is rational. The max table |
| 216 | * size without playing the alignment card is 64 Gbytes. |
| 217 | * If someone starts complaining that's not enough, we can shift |
| 218 | * the offset by CLIB_LOG2_CACHE_LINE_BYTES... |
| 219 | */ |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 220 | if (BIHASH_USE_HEAP) |
| 221 | ASSERT (h->memory_size < (1ULL << BIHASH_BUCKET_OFFSET_BITS)); |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 222 | |
| 223 | /* Add this hash table to the list */ |
Dave Barach | bdf9b97 | 2019-09-03 10:57:19 -0400 | [diff] [blame] | 224 | if (a->dont_add_to_all_bihash_list == 0) |
| 225 | { |
| 226 | for (i = 0; i < vec_len (clib_all_bihashes); i++) |
| 227 | if (clib_all_bihashes[i] == h) |
| 228 | goto do_lock; |
| 229 | oldheap = clib_all_bihash_set_heap (); |
| 230 | vec_add1 (clib_all_bihashes, (void *) h); |
| 231 | clib_mem_set_heap (oldheap); |
| 232 | } |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 233 | |
Dave Barach | bdf9b97 | 2019-09-03 10:57:19 -0400 | [diff] [blame] | 234 | do_lock: |
| 235 | if (h->alloc_lock) |
| 236 | clib_mem_free ((void *) h->alloc_lock); |
Dave Barach | 67d09e0 | 2019-08-01 08:15:01 -0400 | [diff] [blame] | 237 | |
| 238 | /* |
| 239 | * Set up the lock now, so we can use it to make the first add |
| 240 | * thread-safe |
| 241 | */ |
| 242 | h->alloc_lock = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES, |
| 243 | CLIB_CACHE_LINE_BYTES); |
| 244 | h->alloc_lock[0] = 0; |
| 245 | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 246 | #if BIHASH_LAZY_INSTANTIATE |
Dave Barach | bdf9b97 | 2019-09-03 10:57:19 -0400 | [diff] [blame] | 247 | if (a->instantiate_immediately) |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 248 | #endif |
Dave Barach | bdf9b97 | 2019-09-03 10:57:19 -0400 | [diff] [blame] | 249 | BV (clib_bihash_instantiate) (h); |
| 250 | } |
| 251 | |
| 252 | void BV (clib_bihash_init) |
| 253 | (BVT (clib_bihash) * h, char *name, u32 nbuckets, uword memory_size) |
| 254 | { |
| 255 | BVT (clib_bihash_init2_args) _a, *a = &_a; |
| 256 | |
| 257 | memset (a, 0, sizeof (*a)); |
| 258 | |
| 259 | a->h = h; |
| 260 | a->name = name; |
| 261 | a->nbuckets = nbuckets; |
| 262 | a->memory_size = memory_size; |
| 263 | |
| 264 | BV (clib_bihash_init2) (a); |
Vijayabhaskar Katamreddy | fb8e61c | 2017-12-14 13:20:50 -0800 | [diff] [blame] | 265 | } |
| 266 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 267 | #if BIHASH_32_64_SVM |
| 268 | #if !defined (MFD_ALLOW_SEALING) |
| 269 | #define MFD_ALLOW_SEALING 0x0002U |
| 270 | #endif |
| 271 | |
Dave Barach | d4a639b | 2020-08-06 11:38:40 -0400 | [diff] [blame] | 272 | void BV (clib_bihash_initiator_init_svm) |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 273 | (BVT (clib_bihash) * h, char *name, u32 nbuckets, u64 memory_size) |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 274 | { |
| 275 | uword bucket_size; |
| 276 | u8 *mmap_addr; |
| 277 | vec_header_t *freelist_vh; |
| 278 | int fd; |
| 279 | |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 280 | ASSERT (BIHASH_USE_HEAP == 0); |
| 281 | |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 282 | ASSERT (memory_size < (1ULL << 32)); |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 283 | /* Set up for memfd sharing */ |
Damjan Marion | f8cb701 | 2020-10-09 17:16:55 +0200 | [diff] [blame] | 284 | if ((fd = clib_mem_vm_create_fd (CLIB_MEM_PAGE_SZ_DEFAULT, name) == -1) |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 285 | { |
| 286 | clib_unix_warning ("memfd_create"); |
| 287 | return; |
| 288 | } |
| 289 | |
| 290 | if (ftruncate (fd, memory_size) < 0) |
| 291 | { |
| 292 | clib_unix_warning ("ftruncate"); |
| 293 | return; |
| 294 | } |
| 295 | |
| 296 | /* Not mission-critical, complain and continue */ |
| 297 | if ((fcntl (fd, F_ADD_SEALS, F_SEAL_SHRINK)) == -1) |
| 298 | clib_unix_warning ("fcntl (F_ADD_SEALS)"); |
| 299 | |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 300 | mmap_addr = mmap (0, memory_size, |
| 301 | PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0 /* offset */ ); |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 302 | |
| 303 | if (mmap_addr == MAP_FAILED) |
| 304 | { |
| 305 | clib_unix_warning ("mmap failed"); |
| 306 | ASSERT (0); |
| 307 | } |
| 308 | |
| 309 | h->sh = (void *) mmap_addr; |
| 310 | h->memfd = fd; |
| 311 | nbuckets = 1 << (max_log2 (nbuckets)); |
| 312 | |
| 313 | h->name = (u8 *) name; |
| 314 | h->sh->nbuckets = h->nbuckets = nbuckets; |
| 315 | h->log2_nbuckets = max_log2 (nbuckets); |
| 316 | |
| 317 | alloc_arena (h) = (u64) (uword) mmap_addr; |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 318 | alloc_arena_next (h) = CLIB_CACHE_LINE_BYTES; |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 319 | alloc_arena_size (h) = memory_size; |
| 320 | |
| 321 | bucket_size = nbuckets * sizeof (h->buckets[0]); |
| 322 | h->buckets = BV (alloc_aligned) (h, bucket_size); |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 323 | clib_memset_u8 (h->buckets, 0, bucket_size); |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 324 | h->sh->buckets_as_u64 = (u64) BV (clib_bihash_get_offset) (h, h->buckets); |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 325 | |
| 326 | h->alloc_lock = BV (alloc_aligned) (h, CLIB_CACHE_LINE_BYTES); |
| 327 | h->alloc_lock[0] = 0; |
| 328 | |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 329 | h->sh->alloc_lock_as_u64 = |
| 330 | (u64) BV (clib_bihash_get_offset) (h, (void *) h->alloc_lock); |
| 331 | freelist_vh = |
| 332 | BV (alloc_aligned) (h, |
| 333 | sizeof (vec_header_t) + |
| 334 | BIHASH_FREELIST_LENGTH * sizeof (u64)); |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 335 | freelist_vh->len = BIHASH_FREELIST_LENGTH; |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 336 | h->sh->freelists_as_u64 = |
| 337 | (u64) BV (clib_bihash_get_offset) (h, freelist_vh->vector_data); |
| 338 | h->freelists = (void *) (freelist_vh->vector_data); |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 339 | |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 340 | h->fmt_fn = BV (format_bihash); |
| 341 | h->kvp_fmt_fn = NULL; |
Vijayabhaskar Katamreddy | f0bae64 | 2020-01-15 13:45:19 -0800 | [diff] [blame] | 342 | h->instantiated = 1; |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 343 | } |
| 344 | |
Dave Barach | d4a639b | 2020-08-06 11:38:40 -0400 | [diff] [blame] | 345 | void BV (clib_bihash_responder_init_svm) |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 346 | (BVT (clib_bihash) * h, char *name, int fd) |
| 347 | { |
| 348 | u8 *mmap_addr; |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 349 | u64 memory_size; |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 350 | BVT (clib_bihash_shared_header) * sh; |
| 351 | |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 352 | ASSERT (BIHASH_USE_HEAP == 0); |
| 353 | |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 354 | /* Trial mapping, to learn the segment size */ |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 355 | mmap_addr = mmap (0, 4096, PROT_READ, MAP_SHARED, fd, 0 /* offset */ ); |
| 356 | if (mmap_addr == MAP_FAILED) |
| 357 | { |
| 358 | clib_unix_warning ("trial mmap failed"); |
| 359 | ASSERT (0); |
| 360 | } |
| 361 | |
| 362 | sh = (BVT (clib_bihash_shared_header) *) mmap_addr; |
| 363 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 364 | memory_size = sh->alloc_arena_size; |
| 365 | |
| 366 | munmap (mmap_addr, 4096); |
| 367 | |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 368 | /* Actual mapping, at the required size */ |
| 369 | mmap_addr = mmap (0, memory_size, |
| 370 | PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0 /* offset */ ); |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 371 | |
| 372 | if (mmap_addr == MAP_FAILED) |
| 373 | { |
| 374 | clib_unix_warning ("mmap failed"); |
| 375 | ASSERT (0); |
| 376 | } |
| 377 | |
| 378 | (void) close (fd); |
| 379 | |
| 380 | h->sh = (void *) mmap_addr; |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 381 | alloc_arena (h) = (u64) (uword) mmap_addr; |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 382 | h->memfd = -1; |
| 383 | |
| 384 | h->name = (u8 *) name; |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 385 | h->buckets = BV (clib_bihash_get_value) (h, h->sh->buckets_as_u64); |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 386 | h->nbuckets = h->sh->nbuckets; |
| 387 | h->log2_nbuckets = max_log2 (h->nbuckets); |
| 388 | |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 389 | h->alloc_lock = BV (clib_bihash_get_value) (h, h->sh->alloc_lock_as_u64); |
| 390 | h->freelists = BV (clib_bihash_get_value) (h, h->sh->freelists_as_u64); |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 391 | h->fmt_fn = BV (format_bihash); |
| 392 | h->kvp_fmt_fn = NULL; |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 393 | } |
| 394 | #endif /* BIHASH_32_64_SVM */ |
| 395 | |
Vijayabhaskar Katamreddy | fb8e61c | 2017-12-14 13:20:50 -0800 | [diff] [blame] | 396 | void BV (clib_bihash_set_kvp_format_fn) (BVT (clib_bihash) * h, |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 397 | format_function_t * kvp_fmt_fn) |
Vijayabhaskar Katamreddy | fb8e61c | 2017-12-14 13:20:50 -0800 | [diff] [blame] | 398 | { |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 399 | h->kvp_fmt_fn = kvp_fmt_fn; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 400 | } |
| 401 | |
Neale Ranns | eb69648 | 2020-09-29 14:44:23 +0000 | [diff] [blame] | 402 | int BV (clib_bihash_is_initialised) (const BVT (clib_bihash) * h) |
| 403 | { |
| 404 | return (h->instantiated != 0); |
| 405 | } |
| 406 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 407 | void BV (clib_bihash_free) (BVT (clib_bihash) * h) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 408 | { |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 409 | int i; |
| 410 | |
Dave Barach | 67d09e0 | 2019-08-01 08:15:01 -0400 | [diff] [blame] | 411 | if (PREDICT_FALSE (h->instantiated == 0)) |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 412 | goto never_initialized; |
| 413 | |
Dave Barach | 67d09e0 | 2019-08-01 08:15:01 -0400 | [diff] [blame] | 414 | h->instantiated = 0; |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 415 | |
| 416 | if (BIHASH_USE_HEAP) |
| 417 | { |
| 418 | BVT (clib_bihash_alloc_chunk) * next, *chunk; |
| 419 | void *oldheap = clib_mem_set_heap (h->heap); |
| 420 | |
| 421 | chunk = h->chunks; |
| 422 | while (chunk) |
| 423 | { |
| 424 | next = chunk->next; |
| 425 | clib_mem_free (chunk); |
| 426 | chunk = next; |
| 427 | } |
| 428 | clib_mem_set_heap (oldheap); |
| 429 | } |
| 430 | |
Dave Barach | 97f5af0 | 2018-02-22 09:48:45 -0500 | [diff] [blame] | 431 | vec_free (h->working_copies); |
Vijayabhaskar Katamreddy | 72739a6 | 2019-05-07 13:27:32 -0700 | [diff] [blame] | 432 | vec_free (h->working_copy_lengths); |
Han Wu | 3d5e48b | 2021-11-19 17:45:40 +0800 | [diff] [blame] | 433 | clib_mem_free ((void *) h->alloc_lock); |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 434 | #if BIHASH_32_64_SVM == 0 |
Dave Barach | 97f5af0 | 2018-02-22 09:48:45 -0500 | [diff] [blame] | 435 | vec_free (h->freelists); |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 436 | #else |
| 437 | if (h->memfd > 0) |
| 438 | (void) close (h->memfd); |
| 439 | #endif |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 440 | if (BIHASH_USE_HEAP == 0) |
| 441 | clib_mem_vm_free ((void *) (uword) (alloc_arena (h)), |
| 442 | alloc_arena_size (h)); |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 443 | never_initialized: |
Nathan Skrzypczak | a8c720e | 2021-08-06 12:03:11 +0200 | [diff] [blame] | 444 | if (h->dont_add_to_all_bihash_list) |
| 445 | { |
| 446 | clib_memset_u8 (h, 0, sizeof (*h)); |
| 447 | return; |
| 448 | } |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 449 | clib_memset_u8 (h, 0, sizeof (*h)); |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 450 | for (i = 0; i < vec_len (clib_all_bihashes); i++) |
| 451 | { |
| 452 | if ((void *) h == clib_all_bihashes[i]) |
| 453 | { |
| 454 | vec_delete (clib_all_bihashes, 1, i); |
| 455 | return; |
| 456 | } |
| 457 | } |
| 458 | clib_warning ("Couldn't find hash table %llx on clib_all_bihashes...", |
Vijayabhaskar Katamreddy | f0bae64 | 2020-01-15 13:45:19 -0800 | [diff] [blame] | 459 | (u64) (uword) h); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 460 | } |
| 461 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 462 | static |
| 463 | BVT (clib_bihash_value) * |
| 464 | BV (value_alloc) (BVT (clib_bihash) * h, u32 log2_pages) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 465 | { |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 466 | int i; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 467 | BVT (clib_bihash_value) * rv = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 468 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 469 | ASSERT (h->alloc_lock[0]); |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 470 | |
| 471 | #if BIHASH_32_64_SVM |
| 472 | ASSERT (log2_pages < vec_len (h->freelists)); |
| 473 | #endif |
| 474 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 475 | if (log2_pages >= vec_len (h->freelists) || h->freelists[log2_pages] == 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 476 | { |
Dave Barach | 97f5af0 | 2018-02-22 09:48:45 -0500 | [diff] [blame] | 477 | vec_validate_init_empty (h->freelists, log2_pages, 0); |
| 478 | rv = BV (alloc_aligned) (h, (sizeof (*rv) * (1 << log2_pages))); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 479 | goto initialize; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 480 | } |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 481 | rv = BV (clib_bihash_get_value) (h, (uword) h->freelists[log2_pages]); |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 482 | h->freelists[log2_pages] = rv->next_free_as_u64; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 483 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 484 | initialize: |
| 485 | ASSERT (rv); |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 486 | |
| 487 | BVT (clib_bihash_kv) * v; |
| 488 | v = (BVT (clib_bihash_kv) *) rv; |
| 489 | |
| 490 | for (i = 0; i < BIHASH_KVP_PER_PAGE * (1 << log2_pages); i++) |
| 491 | { |
| 492 | BV (clib_bihash_mark_free) (v); |
| 493 | v++; |
| 494 | } |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 495 | return rv; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | static void |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 499 | BV (value_free) (BVT (clib_bihash) * h, BVT (clib_bihash_value) * v, |
| 500 | u32 log2_pages) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 501 | { |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 502 | ASSERT (h->alloc_lock[0]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 503 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 504 | ASSERT (vec_len (h->freelists) > log2_pages); |
| 505 | |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 506 | if (BIHASH_USE_HEAP && log2_pages >= BIIHASH_MIN_ALLOC_LOG2_PAGES) |
| 507 | { |
| 508 | /* allocations bigger or equal to chunk size always contain single |
| 509 | * alloc and they can be given back to heap */ |
| 510 | void *oldheap; |
| 511 | BVT (clib_bihash_alloc_chunk) * c; |
| 512 | c = (BVT (clib_bihash_alloc_chunk) *) v - 1; |
| 513 | |
| 514 | if (c->prev) |
| 515 | c->prev->next = c->next; |
| 516 | else |
| 517 | h->chunks = c->next; |
| 518 | |
| 519 | if (c->next) |
| 520 | c->next->prev = c->prev; |
| 521 | |
| 522 | oldheap = clib_mem_set_heap (h->heap); |
| 523 | clib_mem_free (c); |
| 524 | clib_mem_set_heap (oldheap); |
| 525 | return; |
| 526 | } |
| 527 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 528 | if (CLIB_DEBUG > 0) |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 529 | clib_memset_u8 (v, 0xFE, sizeof (*v) * (1 << log2_pages)); |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 530 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 531 | v->next_free_as_u64 = (u64) h->freelists[log2_pages]; |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 532 | h->freelists[log2_pages] = (u64) BV (clib_bihash_get_offset) (h, v); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | static inline void |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 536 | BV (make_working_copy) (BVT (clib_bihash) * h, BVT (clib_bihash_bucket) * b) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 537 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 538 | BVT (clib_bihash_value) * v; |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 539 | BVT (clib_bihash_bucket) working_bucket __attribute__ ((aligned (8))); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 540 | BVT (clib_bihash_value) * working_copy; |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 541 | u32 thread_index = os_get_thread_index (); |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 542 | int log2_working_copy_length; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 543 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 544 | ASSERT (h->alloc_lock[0]); |
| 545 | |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 546 | if (thread_index >= vec_len (h->working_copies)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 547 | { |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 548 | vec_validate (h->working_copies, thread_index); |
Steve Shin | 871cdec | 2017-06-02 10:09:02 -0700 | [diff] [blame] | 549 | vec_validate_init_empty (h->working_copy_lengths, thread_index, ~0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 550 | } |
| 551 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 552 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 553 | * working_copies are per-cpu so that near-simultaneous |
| 554 | * updates from multiple threads will not result in sporadic, spurious |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 555 | * lookup failures. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 556 | */ |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 557 | working_copy = h->working_copies[thread_index]; |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 558 | log2_working_copy_length = h->working_copy_lengths[thread_index]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 559 | |
| 560 | h->saved_bucket.as_u64 = b->as_u64; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 561 | |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 562 | if (b->log2_pages > log2_working_copy_length) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 563 | { |
Dave Barach | 97f5af0 | 2018-02-22 09:48:45 -0500 | [diff] [blame] | 564 | /* |
| 565 | * It's not worth the bookkeeping to free working copies |
| 566 | * if (working_copy) |
| 567 | * clib_mem_free (working_copy); |
| 568 | */ |
| 569 | working_copy = BV (alloc_aligned) |
| 570 | (h, sizeof (working_copy[0]) * (1 << b->log2_pages)); |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 571 | h->working_copy_lengths[thread_index] = b->log2_pages; |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 572 | h->working_copies[thread_index] = working_copy; |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 573 | |
| 574 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_working_copy_lost, |
| 575 | 1ULL << b->log2_pages); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 576 | } |
| 577 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 578 | v = BV (clib_bihash_get_value) (h, b->offset); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 579 | |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 580 | clib_memcpy_fast (working_copy, v, sizeof (*v) * (1 << b->log2_pages)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 581 | working_bucket.as_u64 = b->as_u64; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 582 | working_bucket.offset = BV (clib_bihash_get_offset) (h, working_copy); |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 583 | CLIB_MEMORY_STORE_BARRIER (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 584 | b->as_u64 = working_bucket.as_u64; |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 585 | h->working_copies[thread_index] = working_copy; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 586 | } |
| 587 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 588 | static |
| 589 | BVT (clib_bihash_value) * |
| 590 | BV (split_and_rehash) |
| 591 | (BVT (clib_bihash) * h, |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 592 | BVT (clib_bihash_value) * old_values, u32 old_log2_pages, |
| 593 | u32 new_log2_pages) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 594 | { |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 595 | BVT (clib_bihash_value) * new_values, *new_v; |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 596 | int i, j, length_in_kvs; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 597 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 598 | ASSERT (h->alloc_lock[0]); |
| 599 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 600 | new_values = BV (value_alloc) (h, new_log2_pages); |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 601 | length_in_kvs = (1 << old_log2_pages) * BIHASH_KVP_PER_PAGE; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 602 | |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 603 | for (i = 0; i < length_in_kvs; i++) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 604 | { |
| 605 | u64 new_hash; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 606 | |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 607 | /* Entry not in use? Forget it */ |
| 608 | if (BV (clib_bihash_is_free) (&(old_values->kvp[i]))) |
| 609 | continue; |
| 610 | |
| 611 | /* rehash the item onto its new home-page */ |
| 612 | new_hash = BV (clib_bihash_hash) (&(old_values->kvp[i])); |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 613 | new_hash = extract_bits (new_hash, h->log2_nbuckets, new_log2_pages); |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 614 | new_v = &new_values[new_hash]; |
| 615 | |
| 616 | /* Across the new home-page */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 617 | for (j = 0; j < BIHASH_KVP_PER_PAGE; j++) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 618 | { |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 619 | /* Empty slot */ |
| 620 | if (BV (clib_bihash_is_free) (&(new_v->kvp[j]))) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 621 | { |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 622 | clib_memcpy_fast (&(new_v->kvp[j]), &(old_values->kvp[i]), |
| 623 | sizeof (new_v->kvp[j])); |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 624 | goto doublebreak; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 625 | } |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 626 | } |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 627 | /* Crap. Tell caller to try again */ |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 628 | BV (value_free) (h, new_values, new_log2_pages); |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 629 | return 0; |
| 630 | doublebreak:; |
| 631 | } |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 632 | |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 633 | return new_values; |
| 634 | } |
| 635 | |
| 636 | static |
| 637 | BVT (clib_bihash_value) * |
| 638 | BV (split_and_rehash_linear) |
| 639 | (BVT (clib_bihash) * h, |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 640 | BVT (clib_bihash_value) * old_values, u32 old_log2_pages, |
| 641 | u32 new_log2_pages) |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 642 | { |
| 643 | BVT (clib_bihash_value) * new_values; |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 644 | int i, j, new_length, old_length; |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 645 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 646 | ASSERT (h->alloc_lock[0]); |
| 647 | |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 648 | new_values = BV (value_alloc) (h, new_log2_pages); |
| 649 | new_length = (1 << new_log2_pages) * BIHASH_KVP_PER_PAGE; |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 650 | old_length = (1 << old_log2_pages) * BIHASH_KVP_PER_PAGE; |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 651 | |
| 652 | j = 0; |
| 653 | /* Across the old value array */ |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 654 | for (i = 0; i < old_length; i++) |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 655 | { |
| 656 | /* Find a free slot in the new linear scan bucket */ |
| 657 | for (; j < new_length; j++) |
| 658 | { |
Dave Barach | 8f54496 | 2017-01-18 10:23:22 -0500 | [diff] [blame] | 659 | /* Old value not in use? Forget it. */ |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 660 | if (BV (clib_bihash_is_free) (&(old_values->kvp[i]))) |
| 661 | goto doublebreak; |
| 662 | |
| 663 | /* New value should never be in use */ |
| 664 | if (BV (clib_bihash_is_free) (&(new_values->kvp[j]))) |
| 665 | { |
| 666 | /* Copy the old value and move along */ |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 667 | clib_memcpy_fast (&(new_values->kvp[j]), &(old_values->kvp[i]), |
| 668 | sizeof (new_values->kvp[j])); |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 669 | j++; |
| 670 | goto doublebreak; |
| 671 | } |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 672 | } |
Dave Barach | 8f54496 | 2017-01-18 10:23:22 -0500 | [diff] [blame] | 673 | /* This should never happen... */ |
| 674 | clib_warning ("BUG: linear rehash failed!"); |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 675 | BV (value_free) (h, new_values, new_log2_pages); |
Dave Barach | 8f54496 | 2017-01-18 10:23:22 -0500 | [diff] [blame] | 676 | return 0; |
| 677 | |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 678 | doublebreak:; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 679 | } |
| 680 | return new_values; |
| 681 | } |
| 682 | |
Nathan Skrzypczak | 17ecd85 | 2021-12-02 14:40:06 +0100 | [diff] [blame] | 683 | static_always_inline int BV (clib_bihash_add_del_inline_with_hash) ( |
| 684 | BVT (clib_bihash) * h, BVT (clib_bihash_kv) * add_v, u64 hash, int is_add, |
| 685 | int (*is_stale_cb) (BVT (clib_bihash_kv) *, void *), void *is_stale_arg, |
| 686 | void (*overwrite_cb) (BVT (clib_bihash_kv) *, void *), void *overwrite_arg) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 687 | { |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 688 | BVT (clib_bihash_bucket) * b, tmp_b; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 689 | BVT (clib_bihash_value) * v, *new_v, *save_new_v, *working_copy; |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 690 | int i, limit; |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 691 | u64 new_hash; |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 692 | u32 new_log2_pages, old_log2_pages; |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 693 | u32 thread_index = os_get_thread_index (); |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 694 | int mark_bucket_linear; |
| 695 | int resplit_once; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 696 | |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 697 | /* *INDENT-OFF* */ |
| 698 | static const BVT (clib_bihash_bucket) mask = { |
| 699 | .linear_search = 1, |
| 700 | .log2_pages = -1 |
| 701 | }; |
| 702 | /* *INDENT-ON* */ |
| 703 | |
| 704 | #if BIHASH_LAZY_INSTANTIATE |
Dave Barach | 67d09e0 | 2019-08-01 08:15:01 -0400 | [diff] [blame] | 705 | /* |
| 706 | * Create the table (is_add=1,2), or flunk the request now (is_add=0) |
| 707 | * Use the alloc_lock to protect the instantiate operation. |
| 708 | */ |
| 709 | if (PREDICT_FALSE (h->instantiated == 0)) |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 710 | { |
| 711 | if (is_add == 0) |
| 712 | return (-1); |
Dave Barach | 67d09e0 | 2019-08-01 08:15:01 -0400 | [diff] [blame] | 713 | |
| 714 | BV (clib_bihash_alloc_lock) (h); |
| 715 | if (h->instantiated == 0) |
| 716 | BV (clib_bihash_instantiate) (h); |
| 717 | BV (clib_bihash_alloc_unlock) (h); |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 718 | } |
Dave Barach | a90ba64 | 2020-04-23 16:56:15 -0400 | [diff] [blame] | 719 | #else |
| 720 | /* Debug image: make sure the table has been instantiated */ |
| 721 | ASSERT (h->instantiated != 0); |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 722 | #endif |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 723 | |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 724 | /* |
| 725 | * Debug image: make sure that an item being added doesn't accidentally |
| 726 | * look like a free item. |
| 727 | */ |
| 728 | ASSERT ((is_add && BV (clib_bihash_is_free) (add_v)) == 0); |
| 729 | |
Damjan Marion | 4e14977 | 2020-03-27 16:57:28 +0100 | [diff] [blame] | 730 | b = BV (clib_bihash_get_bucket) (h, hash); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 731 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 732 | BV (clib_bihash_lock_bucket) (b); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 733 | |
| 734 | /* First elt in the bucket? */ |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 735 | if (BIHASH_KVP_AT_BUCKET_LEVEL == 0 && BV (clib_bihash_bucket_is_empty) (b)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 736 | { |
| 737 | if (is_add == 0) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 738 | { |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 739 | BV (clib_bihash_unlock_bucket) (b); |
| 740 | return (-1); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 741 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 742 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 743 | BV (clib_bihash_alloc_lock) (h); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 744 | v = BV (value_alloc) (h, 0); |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 745 | BV (clib_bihash_alloc_unlock) (h); |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 746 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 747 | *v->kvp = *add_v; |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 748 | tmp_b.as_u64 = 0; /* clears bucket lock */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 749 | tmp_b.offset = BV (clib_bihash_get_offset) (h, v); |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 750 | tmp_b.refcnt = 1; |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 751 | CLIB_MEMORY_STORE_BARRIER (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 752 | |
Tom Seidenberg | 97f8ae9 | 2019-03-15 10:15:26 -0400 | [diff] [blame] | 753 | b->as_u64 = tmp_b.as_u64; /* unlocks the bucket */ |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 754 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_alloc_add, 1); |
| 755 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 756 | return (0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 757 | } |
| 758 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 759 | /* WARNING: we're still looking at the live copy... */ |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 760 | limit = BIHASH_KVP_PER_PAGE; |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 761 | v = BV (clib_bihash_get_value) (h, b->offset); |
| 762 | |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 763 | if (PREDICT_FALSE (b->as_u64 & mask.as_u64)) |
| 764 | { |
| 765 | if (PREDICT_FALSE (b->linear_search)) |
| 766 | limit <<= b->log2_pages; |
| 767 | else |
| 768 | v += extract_bits (hash, h->log2_nbuckets, b->log2_pages); |
| 769 | } |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 770 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 771 | if (is_add) |
| 772 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 773 | /* |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 774 | * Because reader threads are looking at live data, |
| 775 | * we have to be extra careful. Readers do NOT hold the |
| 776 | * bucket lock. We need to be SLOWER than a search, past the |
| 777 | * point where readers CHECK the bucket lock. |
| 778 | */ |
| 779 | |
| 780 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 781 | * For obvious (in hindsight) reasons, see if we're supposed to |
| 782 | * replace an existing key, then look for an empty slot. |
| 783 | */ |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 784 | for (i = 0; i < limit; i++) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 785 | { |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 786 | if (BV (clib_bihash_is_free) (&(v->kvp[i]))) |
| 787 | continue; |
Dave Barach | a11bf45 | 2019-04-17 17:27:31 -0400 | [diff] [blame] | 788 | if (BV (clib_bihash_key_compare) (v->kvp[i].key, add_v->key)) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 789 | { |
Dave Barach | 9e4946b | 2019-07-08 14:47:44 -0400 | [diff] [blame] | 790 | /* Add but do not overwrite? */ |
| 791 | if (is_add == 2) |
| 792 | { |
| 793 | BV (clib_bihash_unlock_bucket) (b); |
| 794 | return (-2); |
| 795 | } |
Nathan Skrzypczak | 17ecd85 | 2021-12-02 14:40:06 +0100 | [diff] [blame] | 796 | if (overwrite_cb) |
| 797 | overwrite_cb (&(v->kvp[i]), overwrite_arg); |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 798 | clib_memcpy_fast (&(v->kvp[i].value), |
| 799 | &add_v->value, sizeof (add_v->value)); |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 800 | BV (clib_bihash_unlock_bucket) (b); |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 801 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_replace, 1); |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 802 | return (0); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 803 | } |
| 804 | } |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 805 | /* |
| 806 | * Look for an empty slot. If found, use it |
| 807 | */ |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 808 | for (i = 0; i < limit; i++) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 809 | { |
| 810 | if (BV (clib_bihash_is_free) (&(v->kvp[i]))) |
| 811 | { |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 812 | /* |
| 813 | * Copy the value first, so that if a reader manages |
| 814 | * to match the new key, the value will be right... |
| 815 | */ |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 816 | clib_memcpy_fast (&(v->kvp[i].value), |
| 817 | &add_v->value, sizeof (add_v->value)); |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 818 | CLIB_MEMORY_STORE_BARRIER (); /* Make sure the value has settled */ |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 819 | clib_memcpy_fast (&(v->kvp[i]), &add_v->key, |
| 820 | sizeof (add_v->key)); |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 821 | b->refcnt++; |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 822 | ASSERT (b->refcnt > 0); |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 823 | BV (clib_bihash_unlock_bucket) (b); |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 824 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_add, 1); |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 825 | return (0); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 826 | } |
| 827 | } |
Matus Fabian | 828d27e | 2018-08-21 03:15:50 -0700 | [diff] [blame] | 828 | /* look for stale data to overwrite */ |
| 829 | if (is_stale_cb) |
| 830 | { |
| 831 | for (i = 0; i < limit; i++) |
| 832 | { |
Nathan Skrzypczak | 17ecd85 | 2021-12-02 14:40:06 +0100 | [diff] [blame] | 833 | if (is_stale_cb (&(v->kvp[i]), is_stale_arg)) |
Matus Fabian | 828d27e | 2018-08-21 03:15:50 -0700 | [diff] [blame] | 834 | { |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 835 | clib_memcpy_fast (&(v->kvp[i]), add_v, sizeof (*add_v)); |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 836 | CLIB_MEMORY_STORE_BARRIER (); |
Matus Fabian | 828d27e | 2018-08-21 03:15:50 -0700 | [diff] [blame] | 837 | BV (clib_bihash_unlock_bucket) (b); |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 838 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_replace, 1); |
Matus Fabian | 828d27e | 2018-08-21 03:15:50 -0700 | [diff] [blame] | 839 | return (0); |
| 840 | } |
| 841 | } |
| 842 | } |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 843 | /* Out of space in this bucket, split the bucket... */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 844 | } |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 845 | else /* delete case */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 846 | { |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 847 | for (i = 0; i < limit; i++) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 848 | { |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 849 | /* no sense even looking at this one */ |
| 850 | if (BV (clib_bihash_is_free) (&(v->kvp[i]))) |
| 851 | continue; |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 852 | /* Found the key? Kill it... */ |
Dave Barach | a11bf45 | 2019-04-17 17:27:31 -0400 | [diff] [blame] | 853 | if (BV (clib_bihash_key_compare) (v->kvp[i].key, add_v->key)) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 854 | { |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 855 | BV (clib_bihash_mark_free) (&(v->kvp[i])); |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 856 | /* Is the bucket empty? */ |
| 857 | if (PREDICT_TRUE (b->refcnt > 1)) |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 858 | { |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 859 | b->refcnt--; |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 860 | /* Switch back to the bucket-level kvp array? */ |
| 861 | if (BIHASH_KVP_AT_BUCKET_LEVEL && b->refcnt == 1 |
| 862 | && b->log2_pages > 0) |
| 863 | { |
| 864 | tmp_b.as_u64 = b->as_u64; |
| 865 | b->offset = BV (clib_bihash_get_offset) |
| 866 | (h, (void *) (b + 1)); |
| 867 | b->linear_search = 0; |
| 868 | b->log2_pages = 0; |
| 869 | /* Clean up the bucket-level kvp array */ |
Dave Barach | b9c8c57 | 2023-03-16 13:03:47 -0400 | [diff] [blame] | 870 | BVT (clib_bihash_kv) *v = (void *) (b + 1); |
| 871 | int j; |
| 872 | for (j = 0; j < BIHASH_KVP_PER_PAGE; j++) |
| 873 | { |
| 874 | BV (clib_bihash_mark_free) (v); |
| 875 | v++; |
| 876 | } |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 877 | CLIB_MEMORY_STORE_BARRIER (); |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 878 | BV (clib_bihash_unlock_bucket) (b); |
| 879 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_del, 1); |
| 880 | goto free_backing_store; |
| 881 | } |
| 882 | |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 883 | CLIB_MEMORY_STORE_BARRIER (); |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 884 | BV (clib_bihash_unlock_bucket) (b); |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 885 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_del, 1); |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 886 | return (0); |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 887 | } |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 888 | else /* yes, free it */ |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 889 | { |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 890 | /* Save old bucket value, need log2_pages to free it */ |
| 891 | tmp_b.as_u64 = b->as_u64; |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 892 | |
| 893 | /* Kill and unlock the bucket */ |
| 894 | b->as_u64 = 0; |
| 895 | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 896 | free_backing_store: |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 897 | /* And free the backing storage */ |
| 898 | BV (clib_bihash_alloc_lock) (h); |
| 899 | /* Note: v currently points into the middle of the bucket */ |
| 900 | v = BV (clib_bihash_get_value) (h, tmp_b.offset); |
| 901 | BV (value_free) (h, v, tmp_b.log2_pages); |
| 902 | BV (clib_bihash_alloc_unlock) (h); |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 903 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_del_free, |
| 904 | 1); |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 905 | return (0); |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 906 | } |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 907 | } |
| 908 | } |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 909 | /* Not found... */ |
| 910 | BV (clib_bihash_unlock_bucket) (b); |
| 911 | return (-3); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 912 | } |
| 913 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 914 | /* Move readers to a (locked) temp copy of the bucket */ |
| 915 | BV (clib_bihash_alloc_lock) (h); |
| 916 | BV (make_working_copy) (h, b); |
| 917 | |
| 918 | v = BV (clib_bihash_get_value) (h, h->saved_bucket.offset); |
| 919 | |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 920 | old_log2_pages = h->saved_bucket.log2_pages; |
| 921 | new_log2_pages = old_log2_pages + 1; |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 922 | mark_bucket_linear = 0; |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 923 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_split_add, 1); |
| 924 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_splits, old_log2_pages); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 925 | |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 926 | working_copy = h->working_copies[thread_index]; |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 927 | resplit_once = 0; |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 928 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_splits, 1); |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 929 | |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 930 | new_v = BV (split_and_rehash) (h, working_copy, old_log2_pages, |
| 931 | new_log2_pages); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 932 | if (new_v == 0) |
| 933 | { |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 934 | try_resplit: |
| 935 | resplit_once = 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 936 | new_log2_pages++; |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 937 | /* Try re-splitting. If that fails, fall back to linear search */ |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 938 | new_v = BV (split_and_rehash) (h, working_copy, old_log2_pages, |
| 939 | new_log2_pages); |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 940 | if (new_v == 0) |
| 941 | { |
| 942 | mark_linear: |
| 943 | new_log2_pages--; |
| 944 | /* pinned collisions, use linear search */ |
| 945 | new_v = |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 946 | BV (split_and_rehash_linear) (h, working_copy, old_log2_pages, |
| 947 | new_log2_pages); |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 948 | mark_bucket_linear = 1; |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 949 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_linear, 1); |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 950 | } |
Dave Barach | 2ce28d6 | 2019-05-03 12:58:01 -0400 | [diff] [blame] | 951 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_resplit, 1); |
| 952 | BV (clib_bihash_increment_stat) (h, BIHASH_STAT_splits, |
| 953 | old_log2_pages + 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 954 | } |
| 955 | |
| 956 | /* Try to add the new entry */ |
| 957 | save_new_v = new_v; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 958 | new_hash = BV (clib_bihash_hash) (add_v); |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 959 | limit = BIHASH_KVP_PER_PAGE; |
| 960 | if (mark_bucket_linear) |
| 961 | limit <<= new_log2_pages; |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 962 | else |
| 963 | new_v += extract_bits (new_hash, h->log2_nbuckets, new_log2_pages); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 964 | |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 965 | for (i = 0; i < limit; i++) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 966 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 967 | if (BV (clib_bihash_is_free) (&(new_v->kvp[i]))) |
| 968 | { |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 969 | clib_memcpy_fast (&(new_v->kvp[i]), add_v, sizeof (*add_v)); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 970 | goto expand_ok; |
| 971 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 972 | } |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 973 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 974 | /* Crap. Try again */ |
Dave Barach | ba7ddfe | 2017-05-17 20:20:50 -0400 | [diff] [blame] | 975 | BV (value_free) (h, save_new_v, new_log2_pages); |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 976 | /* |
| 977 | * If we've already doubled the size of the bucket once, |
| 978 | * fall back to linear search now. |
| 979 | */ |
| 980 | if (resplit_once) |
| 981 | goto mark_linear; |
| 982 | else |
| 983 | goto try_resplit; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 984 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 985 | expand_ok: |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 986 | tmp_b.log2_pages = new_log2_pages; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 987 | tmp_b.offset = BV (clib_bihash_get_offset) (h, save_new_v); |
Dave Barach | 5e6b958 | 2016-12-12 15:37:29 -0500 | [diff] [blame] | 988 | tmp_b.linear_search = mark_bucket_linear; |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 989 | #if BIHASH_KVP_AT_BUCKET_LEVEL |
| 990 | /* Compensate for permanent refcount bump at the bucket level */ |
| 991 | if (new_log2_pages > 0) |
| 992 | #endif |
| 993 | tmp_b.refcnt = h->saved_bucket.refcnt + 1; |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 994 | ASSERT (tmp_b.refcnt > 0); |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 995 | tmp_b.lock = 0; |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 996 | CLIB_MEMORY_STORE_BARRIER (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 997 | b->as_u64 = tmp_b.as_u64; |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 998 | |
| 999 | #if BIHASH_KVP_AT_BUCKET_LEVEL |
| 1000 | if (h->saved_bucket.log2_pages > 0) |
| 1001 | { |
| 1002 | #endif |
| 1003 | |
| 1004 | /* free the old bucket, except at the bucket level if so configured */ |
| 1005 | v = BV (clib_bihash_get_value) (h, h->saved_bucket.offset); |
| 1006 | BV (value_free) (h, v, h->saved_bucket.log2_pages); |
| 1007 | |
| 1008 | #if BIHASH_KVP_AT_BUCKET_LEVEL |
| 1009 | } |
| 1010 | #endif |
| 1011 | |
| 1012 | |
Dave Barach | 508498f | 2018-07-19 12:11:16 -0400 | [diff] [blame] | 1013 | BV (clib_bihash_alloc_unlock) (h); |
| 1014 | return (0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1015 | } |
| 1016 | |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 1017 | static_always_inline int BV (clib_bihash_add_del_inline) |
| 1018 | (BVT (clib_bihash) * h, BVT (clib_bihash_kv) * add_v, int is_add, |
| 1019 | int (*is_stale_cb) (BVT (clib_bihash_kv) *, void *), void *arg) |
| 1020 | { |
| 1021 | u64 hash = BV (clib_bihash_hash) (add_v); |
| 1022 | return BV (clib_bihash_add_del_inline_with_hash) (h, add_v, hash, is_add, |
Nathan Skrzypczak | 17ecd85 | 2021-12-02 14:40:06 +0100 | [diff] [blame] | 1023 | is_stale_cb, arg, 0, 0); |
| 1024 | } |
| 1025 | |
| 1026 | int BV (clib_bihash_add_del_with_hash) (BVT (clib_bihash) * h, |
| 1027 | BVT (clib_bihash_kv) * add_v, u64 hash, |
| 1028 | int is_add) |
| 1029 | { |
| 1030 | return BV (clib_bihash_add_del_inline_with_hash) (h, add_v, hash, is_add, 0, |
| 1031 | 0, 0, 0); |
Damjan Marion | 801ec2a | 2020-04-21 19:42:30 +0200 | [diff] [blame] | 1032 | } |
| 1033 | |
Matus Fabian | 828d27e | 2018-08-21 03:15:50 -0700 | [diff] [blame] | 1034 | int BV (clib_bihash_add_del) |
| 1035 | (BVT (clib_bihash) * h, BVT (clib_bihash_kv) * add_v, int is_add) |
| 1036 | { |
| 1037 | return BV (clib_bihash_add_del_inline) (h, add_v, is_add, 0, 0); |
| 1038 | } |
| 1039 | |
| 1040 | int BV (clib_bihash_add_or_overwrite_stale) |
| 1041 | (BVT (clib_bihash) * h, BVT (clib_bihash_kv) * add_v, |
| 1042 | int (*stale_callback) (BVT (clib_bihash_kv) *, void *), void *arg) |
| 1043 | { |
| 1044 | return BV (clib_bihash_add_del_inline) (h, add_v, 1, stale_callback, arg); |
| 1045 | } |
| 1046 | |
Nathan Skrzypczak | 17ecd85 | 2021-12-02 14:40:06 +0100 | [diff] [blame] | 1047 | int BV (clib_bihash_add_with_overwrite_cb) ( |
| 1048 | BVT (clib_bihash) * h, BVT (clib_bihash_kv) * add_v, |
| 1049 | void (overwrite_cb) (BVT (clib_bihash_kv) *, void *), void *arg) |
| 1050 | { |
| 1051 | u64 hash = BV (clib_bihash_hash) (add_v); |
| 1052 | return BV (clib_bihash_add_del_inline_with_hash) (h, add_v, hash, 1, 0, 0, |
| 1053 | overwrite_cb, arg); |
| 1054 | } |
| 1055 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1056 | int BV (clib_bihash_search) |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 1057 | (BVT (clib_bihash) * h, |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1058 | BVT (clib_bihash_kv) * search_key, BVT (clib_bihash_kv) * valuep) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1059 | { |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 1060 | return BV (clib_bihash_search_inline_2) (h, search_key, valuep); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1061 | } |
| 1062 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1063 | u8 *BV (format_bihash) (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1064 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1065 | BVT (clib_bihash) * h = va_arg (*args, BVT (clib_bihash) *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1066 | int verbose = va_arg (*args, int); |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 1067 | BVT (clib_bihash_bucket) * b; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1068 | BVT (clib_bihash_value) * v; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1069 | int i, j, k; |
| 1070 | u64 active_elements = 0; |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 1071 | u64 active_buckets = 0; |
| 1072 | u64 linear_buckets = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1073 | |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 1074 | s = format (s, "Hash table '%s'\n", h->name ? h->name : (u8 *) "(unnamed)"); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1075 | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 1076 | #if BIHASH_LAZY_INSTANTIATE |
Nathan Skrzypczak | 42b29ba | 2020-08-17 14:14:56 +0200 | [diff] [blame] | 1077 | if (PREDICT_FALSE (h->instantiated == 0)) |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 1078 | return format (s, " empty, uninitialized"); |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 1079 | #endif |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 1080 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1081 | for (i = 0; i < h->nbuckets; i++) |
| 1082 | { |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 1083 | b = BV (clib_bihash_get_bucket) (h, i); |
Damjan Marion | 882fcfe | 2018-07-17 23:01:49 +0200 | [diff] [blame] | 1084 | if (BV (clib_bihash_bucket_is_empty) (b)) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1085 | { |
| 1086 | if (verbose > 1) |
| 1087 | s = format (s, "[%d]: empty\n", i); |
| 1088 | continue; |
| 1089 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1090 | |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 1091 | active_buckets++; |
| 1092 | |
| 1093 | if (b->linear_search) |
| 1094 | linear_buckets++; |
| 1095 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1096 | if (verbose) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1097 | { |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 1098 | s = format |
| 1099 | (s, "[%d]: heap offset %lld, len %d, refcnt %d, linear %d\n", i, |
| 1100 | b->offset, (1 << b->log2_pages), b->refcnt, b->linear_search); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1101 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1102 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1103 | v = BV (clib_bihash_get_value) (h, b->offset); |
| 1104 | for (j = 0; j < (1 << b->log2_pages); j++) |
| 1105 | { |
| 1106 | for (k = 0; k < BIHASH_KVP_PER_PAGE; k++) |
| 1107 | { |
| 1108 | if (BV (clib_bihash_is_free) (&v->kvp[k])) |
| 1109 | { |
| 1110 | if (verbose > 1) |
| 1111 | s = format (s, " %d: empty\n", |
| 1112 | j * BIHASH_KVP_PER_PAGE + k); |
| 1113 | continue; |
| 1114 | } |
| 1115 | if (verbose) |
| 1116 | { |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 1117 | if (h->kvp_fmt_fn) |
Vijayabhaskar Katamreddy | fb8e61c | 2017-12-14 13:20:50 -0800 | [diff] [blame] | 1118 | { |
| 1119 | s = format (s, " %d: %U\n", |
| 1120 | j * BIHASH_KVP_PER_PAGE + k, |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 1121 | h->kvp_fmt_fn, &(v->kvp[k]), verbose); |
Vijayabhaskar Katamreddy | fb8e61c | 2017-12-14 13:20:50 -0800 | [diff] [blame] | 1122 | } |
| 1123 | else |
| 1124 | { |
| 1125 | s = format (s, " %d: %U\n", |
| 1126 | j * BIHASH_KVP_PER_PAGE + k, |
| 1127 | BV (format_bihash_kvp), &(v->kvp[k])); |
| 1128 | } |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1129 | } |
| 1130 | active_elements++; |
| 1131 | } |
| 1132 | v++; |
| 1133 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1134 | } |
| 1135 | |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 1136 | s = format (s, " %lld active elements %lld active buckets\n", |
| 1137 | active_elements, active_buckets); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1138 | s = format (s, " %d free lists\n", vec_len (h->freelists)); |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 1139 | |
| 1140 | for (i = 0; i < vec_len (h->freelists); i++) |
| 1141 | { |
| 1142 | u32 nfree = 0; |
| 1143 | BVT (clib_bihash_value) * free_elt; |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 1144 | u64 free_elt_as_u64 = h->freelists[i]; |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 1145 | |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 1146 | while (free_elt_as_u64) |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 1147 | { |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 1148 | free_elt = BV (clib_bihash_get_value) (h, free_elt_as_u64); |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 1149 | nfree++; |
Dave Barach | ffb14b9 | 2018-09-11 17:20:23 -0400 | [diff] [blame] | 1150 | free_elt_as_u64 = free_elt->next_free_as_u64; |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 1151 | } |
| 1152 | |
Dave Barach | 9466c45 | 2018-08-24 17:21:14 -0400 | [diff] [blame] | 1153 | if (nfree || verbose) |
| 1154 | s = format (s, " [len %d] %u free elts\n", 1 << i, nfree); |
Dave Barach | e7d212f | 2018-02-07 13:14:06 -0500 | [diff] [blame] | 1155 | } |
| 1156 | |
| 1157 | s = format (s, " %lld linear search buckets\n", linear_buckets); |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 1158 | if (BIHASH_USE_HEAP) |
| 1159 | { |
| 1160 | BVT (clib_bihash_alloc_chunk) * c = h->chunks; |
| 1161 | uword bytes_left = 0, total_size = 0, n_chunks = 0; |
| 1162 | |
| 1163 | while (c) |
| 1164 | { |
| 1165 | bytes_left += c->bytes_left; |
| 1166 | total_size += c->size; |
| 1167 | n_chunks += 1; |
| 1168 | c = c->next; |
| 1169 | } |
| 1170 | s = format (s, |
Damjan Marion | f2b4a37 | 2020-09-30 14:15:24 +0200 | [diff] [blame] | 1171 | " heap: %u chunk(s) allocated\n" |
| 1172 | " bytes: used %U, scrap %U\n", n_chunks, |
Damjan Marion | 2454de2 | 2020-09-26 19:32:34 +0200 | [diff] [blame] | 1173 | format_memory_size, total_size, |
| 1174 | format_memory_size, bytes_left); |
| 1175 | } |
| 1176 | else |
| 1177 | { |
| 1178 | u64 used_bytes = alloc_arena_next (h); |
| 1179 | s = format (s, |
| 1180 | " arena: base %llx, next %llx\n" |
| 1181 | " used %lld b (%lld Mbytes) of %lld b (%lld Mbytes)\n", |
| 1182 | alloc_arena (h), alloc_arena_next (h), |
| 1183 | used_bytes, used_bytes >> 20, |
| 1184 | alloc_arena_size (h), alloc_arena_size (h) >> 20); |
| 1185 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1186 | return s; |
| 1187 | } |
| 1188 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1189 | void BV (clib_bihash_foreach_key_value_pair) |
Neale Ranns | f50bac1 | 2019-12-06 05:53:17 +0000 | [diff] [blame] | 1190 | (BVT (clib_bihash) * h, |
| 1191 | BV (clib_bihash_foreach_key_value_pair_cb) cb, void *arg) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1192 | { |
| 1193 | int i, j, k; |
Dave Barach | 908a5ea | 2017-07-14 12:42:21 -0400 | [diff] [blame] | 1194 | BVT (clib_bihash_bucket) * b; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1195 | BVT (clib_bihash_value) * v; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1196 | |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 1197 | |
| 1198 | #if BIHASH_LAZY_INSTANTIATE |
Nathan Skrzypczak | 42b29ba | 2020-08-17 14:14:56 +0200 | [diff] [blame] | 1199 | if (PREDICT_FALSE (h->instantiated == 0)) |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 1200 | return; |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 1201 | #endif |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 1202 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1203 | for (i = 0; i < h->nbuckets; i++) |
| 1204 | { |
Dave Barach | 16e4a4a | 2020-04-16 12:00:14 -0400 | [diff] [blame] | 1205 | b = BV (clib_bihash_get_bucket) (h, i); |
Damjan Marion | 882fcfe | 2018-07-17 23:01:49 +0200 | [diff] [blame] | 1206 | if (BV (clib_bihash_bucket_is_empty) (b)) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1207 | continue; |
| 1208 | |
| 1209 | v = BV (clib_bihash_get_value) (h, b->offset); |
| 1210 | for (j = 0; j < (1 << b->log2_pages); j++) |
| 1211 | { |
| 1212 | for (k = 0; k < BIHASH_KVP_PER_PAGE; k++) |
| 1213 | { |
| 1214 | if (BV (clib_bihash_is_free) (&v->kvp[k])) |
| 1215 | continue; |
| 1216 | |
Neale Ranns | f50bac1 | 2019-12-06 05:53:17 +0000 | [diff] [blame] | 1217 | if (BIHASH_WALK_STOP == cb (&v->kvp[k], arg)) |
| 1218 | return; |
Dave Barach | ca45ee7 | 2018-08-06 08:43:47 -0400 | [diff] [blame] | 1219 | /* |
| 1220 | * In case the callback deletes the last entry in the bucket... |
| 1221 | */ |
| 1222 | if (BV (clib_bihash_bucket_is_empty) (b)) |
| 1223 | goto doublebreak; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1224 | } |
| 1225 | v++; |
| 1226 | } |
Dave Barach | ca45ee7 | 2018-08-06 08:43:47 -0400 | [diff] [blame] | 1227 | doublebreak: |
| 1228 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1229 | } |
| 1230 | } |
Dave Barach | dd3a57f | 2016-07-27 16:58:51 -0400 | [diff] [blame] | 1231 | |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 1232 | /** @endcond */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 1233 | |
| 1234 | /* |
| 1235 | * fd.io coding-style-patch-verification: ON |
| 1236 | * |
| 1237 | * Local Variables: |
| 1238 | * eval: (c-set-style "gnu") |
| 1239 | * End: |
| 1240 | */ |