blob: 4ef32efbe890cd4fea912494eeb9ce2b8e2cb92f [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 Luke16bcf7d2016-09-01 14:31:46 -040016/** @cond DOCUMENTATION_IS_IN_BIHASH_DOC_H */
Dave Barachdd3a57f2016-07-27 16:58:51 -040017
Dave Barach97f5af02018-02-22 09:48:45 -050018static inline void *BV (alloc_aligned) (BVT (clib_bihash) * h, uword nbytes)
19{
20 uword rv;
21
22 /* Round to an even number of cache lines */
23 nbytes += CLIB_CACHE_LINE_BYTES - 1;
24 nbytes &= ~(CLIB_CACHE_LINE_BYTES - 1);
25
Dave Barach9466c452018-08-24 17:21:14 -040026 rv = alloc_arena_next (h);
27 alloc_arena_next (h) += nbytes;
Dave Barach97f5af02018-02-22 09:48:45 -050028
Andreas Schultzb4b525e2019-07-19 11:14:50 +020029 if (alloc_arena_next (h) > alloc_arena_size (h))
Dave Barach97f5af02018-02-22 09:48:45 -050030 os_out_of_memory ();
31
Dave Barachffb14b92018-09-11 17:20:23 -040032 return (void *) (uword) (rv + alloc_arena (h));
Dave Barach97f5af02018-02-22 09:48:45 -050033}
34
Dave Barach32dcd3b2019-07-08 12:25:38 -040035void BV (clib_bihash_instantiate) (BVT (clib_bihash) * h)
36{
37 uword bucket_size;
38
39 alloc_arena (h) = (uword) clib_mem_vm_alloc (h->memory_size);
40 alloc_arena_next (h) = 0;
41 alloc_arena_size (h) = h->memory_size;
42
43 bucket_size = h->nbuckets * sizeof (h->buckets[0]);
44 h->buckets = BV (alloc_aligned) (h, bucket_size);
Dave Barach67d09e02019-08-01 08:15:01 -040045 CLIB_MEMORY_BARRIER ();
46 h->instantiated = 1;
Dave Barach32dcd3b2019-07-08 12:25:38 -040047}
Dave Barach97f5af02018-02-22 09:48:45 -050048
Dave Barachc3799992016-08-15 11:12:27 -040049void BV (clib_bihash_init)
50 (BVT (clib_bihash) * h, char *name, u32 nbuckets, uword memory_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -070051{
Dave Barach32dcd3b2019-07-08 12:25:38 -040052 int i;
53 void *oldheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -070054 nbuckets = 1 << (max_log2 (nbuckets));
55
Dave Barachc3799992016-08-15 11:12:27 -040056 h->name = (u8 *) name;
Ed Warnickecb9cada2015-12-08 15:45:58 -070057 h->nbuckets = nbuckets;
58 h->log2_nbuckets = max_log2 (nbuckets);
Dave Barach32dcd3b2019-07-08 12:25:38 -040059 h->memory_size = memory_size;
Dave Barach67d09e02019-08-01 08:15:01 -040060 h->instantiated = 0;
Dave Barach32dcd3b2019-07-08 12:25:38 -040061 alloc_arena (h) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
Dave Barach508498f2018-07-19 12:11:16 -040063 /*
64 * Make sure the requested size is rational. The max table
65 * size without playing the alignment card is 64 Gbytes.
66 * If someone starts complaining that's not enough, we can shift
67 * the offset by CLIB_LOG2_CACHE_LINE_BYTES...
68 */
69 ASSERT (memory_size < (1ULL << BIHASH_BUCKET_OFFSET_BITS));
Vijayabhaskar Katamreddyfb8e61c2017-12-14 13:20:50 -080070 h->fmt_fn = NULL;
Dave Barach32dcd3b2019-07-08 12:25:38 -040071
72 /* Add this hash table to the list */
73 for (i = 0; i < vec_len (clib_all_bihashes); i++)
74 if (clib_all_bihashes[i] == h)
75 return;
76
77 /* Unfortunately, the heap push/pop is required.... */
78 oldheap = clib_all_bihash_set_heap ();
79 vec_add1 (clib_all_bihashes, (void *) h);
80 clib_mem_set_heap (oldheap);
81
Dave Barach67d09e02019-08-01 08:15:01 -040082
83 /*
84 * Set up the lock now, so we can use it to make the first add
85 * thread-safe
86 */
87 h->alloc_lock = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
88 CLIB_CACHE_LINE_BYTES);
89 h->alloc_lock[0] = 0;
90
Dave Barach32dcd3b2019-07-08 12:25:38 -040091#if BIHASH_INSTANTIATE_IMMEDIATELY
92 BV (clib_bihash_instantiate) (h);
93#endif
Vijayabhaskar Katamreddyfb8e61c2017-12-14 13:20:50 -080094}
95
Dave Barach9466c452018-08-24 17:21:14 -040096#if BIHASH_32_64_SVM
97#if !defined (MFD_ALLOW_SEALING)
98#define MFD_ALLOW_SEALING 0x0002U
99#endif
100
101void BV (clib_bihash_master_init_svm)
Dave Barachffb14b92018-09-11 17:20:23 -0400102 (BVT (clib_bihash) * h, char *name, u32 nbuckets, u64 memory_size)
Dave Barach9466c452018-08-24 17:21:14 -0400103{
104 uword bucket_size;
105 u8 *mmap_addr;
106 vec_header_t *freelist_vh;
107 int fd;
108
Dave Barachffb14b92018-09-11 17:20:23 -0400109 ASSERT (memory_size < (1ULL << 32));
Dave Barach9466c452018-08-24 17:21:14 -0400110 /* Set up for memfd sharing */
111 if ((fd = memfd_create (name, MFD_ALLOW_SEALING)) == -1)
112 {
113 clib_unix_warning ("memfd_create");
114 return;
115 }
116
117 if (ftruncate (fd, memory_size) < 0)
118 {
119 clib_unix_warning ("ftruncate");
120 return;
121 }
122
123 /* Not mission-critical, complain and continue */
124 if ((fcntl (fd, F_ADD_SEALS, F_SEAL_SHRINK)) == -1)
125 clib_unix_warning ("fcntl (F_ADD_SEALS)");
126
Dave Barachffb14b92018-09-11 17:20:23 -0400127 mmap_addr = mmap (0, memory_size,
128 PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0 /* offset */ );
Dave Barach9466c452018-08-24 17:21:14 -0400129
130 if (mmap_addr == MAP_FAILED)
131 {
132 clib_unix_warning ("mmap failed");
133 ASSERT (0);
134 }
135
136 h->sh = (void *) mmap_addr;
137 h->memfd = fd;
138 nbuckets = 1 << (max_log2 (nbuckets));
139
140 h->name = (u8 *) name;
141 h->sh->nbuckets = h->nbuckets = nbuckets;
142 h->log2_nbuckets = max_log2 (nbuckets);
143
144 alloc_arena (h) = (u64) (uword) mmap_addr;
Dave Barachffb14b92018-09-11 17:20:23 -0400145 alloc_arena_next (h) = CLIB_CACHE_LINE_BYTES;
Dave Barach9466c452018-08-24 17:21:14 -0400146 alloc_arena_size (h) = memory_size;
147
148 bucket_size = nbuckets * sizeof (h->buckets[0]);
149 h->buckets = BV (alloc_aligned) (h, bucket_size);
Dave Barachffb14b92018-09-11 17:20:23 -0400150 h->sh->buckets_as_u64 = (u64) BV (clib_bihash_get_offset) (h, h->buckets);
Dave Barach9466c452018-08-24 17:21:14 -0400151
152 h->alloc_lock = BV (alloc_aligned) (h, CLIB_CACHE_LINE_BYTES);
153 h->alloc_lock[0] = 0;
154
Dave Barachffb14b92018-09-11 17:20:23 -0400155 h->sh->alloc_lock_as_u64 =
156 (u64) BV (clib_bihash_get_offset) (h, (void *) h->alloc_lock);
157 freelist_vh =
158 BV (alloc_aligned) (h,
159 sizeof (vec_header_t) +
160 BIHASH_FREELIST_LENGTH * sizeof (u64));
Dave Barach9466c452018-08-24 17:21:14 -0400161 freelist_vh->len = BIHASH_FREELIST_LENGTH;
162 freelist_vh->dlmalloc_header_offset = 0xDEADBEEF;
Dave Barachffb14b92018-09-11 17:20:23 -0400163 h->sh->freelists_as_u64 =
164 (u64) BV (clib_bihash_get_offset) (h, freelist_vh->vector_data);
165 h->freelists = (void *) (freelist_vh->vector_data);
Dave Barach9466c452018-08-24 17:21:14 -0400166
167 h->fmt_fn = NULL;
168}
169
170void BV (clib_bihash_slave_init_svm)
171 (BVT (clib_bihash) * h, char *name, int fd)
172{
173 u8 *mmap_addr;
Dave Barachffb14b92018-09-11 17:20:23 -0400174 u64 memory_size;
Dave Barach9466c452018-08-24 17:21:14 -0400175 BVT (clib_bihash_shared_header) * sh;
176
Dave Barachffb14b92018-09-11 17:20:23 -0400177 /* Trial mapping, to learn the segment size */
Dave Barach9466c452018-08-24 17:21:14 -0400178 mmap_addr = mmap (0, 4096, PROT_READ, MAP_SHARED, fd, 0 /* offset */ );
179 if (mmap_addr == MAP_FAILED)
180 {
181 clib_unix_warning ("trial mmap failed");
182 ASSERT (0);
183 }
184
185 sh = (BVT (clib_bihash_shared_header) *) mmap_addr;
186
Dave Barach9466c452018-08-24 17:21:14 -0400187 memory_size = sh->alloc_arena_size;
188
189 munmap (mmap_addr, 4096);
190
Dave Barachffb14b92018-09-11 17:20:23 -0400191 /* Actual mapping, at the required size */
192 mmap_addr = mmap (0, memory_size,
193 PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0 /* offset */ );
Dave Barach9466c452018-08-24 17:21:14 -0400194
195 if (mmap_addr == MAP_FAILED)
196 {
197 clib_unix_warning ("mmap failed");
198 ASSERT (0);
199 }
200
201 (void) close (fd);
202
203 h->sh = (void *) mmap_addr;
Dave Barachffb14b92018-09-11 17:20:23 -0400204 alloc_arena (h) = (u64) (uword) mmap_addr;
Dave Barach9466c452018-08-24 17:21:14 -0400205 h->memfd = -1;
206
207 h->name = (u8 *) name;
Dave Barachffb14b92018-09-11 17:20:23 -0400208 h->buckets = BV (clib_bihash_get_value) (h, h->sh->buckets_as_u64);
Dave Barach9466c452018-08-24 17:21:14 -0400209 h->nbuckets = h->sh->nbuckets;
210 h->log2_nbuckets = max_log2 (h->nbuckets);
211
Dave Barachffb14b92018-09-11 17:20:23 -0400212 h->alloc_lock = BV (clib_bihash_get_value) (h, h->sh->alloc_lock_as_u64);
213 h->freelists = BV (clib_bihash_get_value) (h, h->sh->freelists_as_u64);
Dave Barach9466c452018-08-24 17:21:14 -0400214 h->fmt_fn = NULL;
215}
216#endif /* BIHASH_32_64_SVM */
217
Vijayabhaskar Katamreddyfb8e61c2017-12-14 13:20:50 -0800218void BV (clib_bihash_set_kvp_format_fn) (BVT (clib_bihash) * h,
219 format_function_t * fmt_fn)
220{
221 h->fmt_fn = fmt_fn;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222}
223
Dave Barachc3799992016-08-15 11:12:27 -0400224void BV (clib_bihash_free) (BVT (clib_bihash) * h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225{
Dave Barach32dcd3b2019-07-08 12:25:38 -0400226 int i;
227
Dave Barach67d09e02019-08-01 08:15:01 -0400228 if (PREDICT_FALSE (h->instantiated == 0))
Dave Barach32dcd3b2019-07-08 12:25:38 -0400229 goto never_initialized;
230
Dave Barach67d09e02019-08-01 08:15:01 -0400231 h->instantiated = 0;
Dave Barach97f5af02018-02-22 09:48:45 -0500232 vec_free (h->working_copies);
Vijayabhaskar Katamreddy72739a62019-05-07 13:27:32 -0700233 vec_free (h->working_copy_lengths);
Dave Barach9466c452018-08-24 17:21:14 -0400234#if BIHASH_32_64_SVM == 0
Dave Barach97f5af02018-02-22 09:48:45 -0500235 vec_free (h->freelists);
Dave Barach9466c452018-08-24 17:21:14 -0400236#else
237 if (h->memfd > 0)
238 (void) close (h->memfd);
239#endif
240 clib_mem_vm_free ((void *) (uword) (alloc_arena (h)), alloc_arena_size (h));
Dave Barach32dcd3b2019-07-08 12:25:38 -0400241never_initialized:
Dave Barachb7b92992018-10-17 10:38:51 -0400242 clib_memset (h, 0, sizeof (*h));
Dave Barach32dcd3b2019-07-08 12:25:38 -0400243 for (i = 0; i < vec_len (clib_all_bihashes); i++)
244 {
245 if ((void *) h == clib_all_bihashes[i])
246 {
247 vec_delete (clib_all_bihashes, 1, i);
248 return;
249 }
250 }
251 clib_warning ("Couldn't find hash table %llx on clib_all_bihashes...",
252 (u64) h);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253}
254
Dave Barachc3799992016-08-15 11:12:27 -0400255static
256BVT (clib_bihash_value) *
257BV (value_alloc) (BVT (clib_bihash) * h, u32 log2_pages)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258{
Dave Barachc3799992016-08-15 11:12:27 -0400259 BVT (clib_bihash_value) * rv = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260
Dave Barach508498f2018-07-19 12:11:16 -0400261 ASSERT (h->alloc_lock[0]);
Dave Barach9466c452018-08-24 17:21:14 -0400262
263#if BIHASH_32_64_SVM
264 ASSERT (log2_pages < vec_len (h->freelists));
265#endif
266
Dave Barachc3799992016-08-15 11:12:27 -0400267 if (log2_pages >= vec_len (h->freelists) || h->freelists[log2_pages] == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268 {
Dave Barach97f5af02018-02-22 09:48:45 -0500269 vec_validate_init_empty (h->freelists, log2_pages, 0);
270 rv = BV (alloc_aligned) (h, (sizeof (*rv) * (1 << log2_pages)));
Dave Barachc3799992016-08-15 11:12:27 -0400271 goto initialize;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272 }
Dave Barachffb14b92018-09-11 17:20:23 -0400273 rv = BV (clib_bihash_get_value) (h, (uword) h->freelists[log2_pages]);
Dave Barach9466c452018-08-24 17:21:14 -0400274 h->freelists[log2_pages] = rv->next_free_as_u64;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275
Dave Barachc3799992016-08-15 11:12:27 -0400276initialize:
277 ASSERT (rv);
Dave Barachc3799992016-08-15 11:12:27 -0400278 /*
279 * Latest gcc complains that the length arg is zero
280 * if we replace (1<<log2_pages) with vec_len(rv).
281 * No clue.
282 */
Dave Barachb7b92992018-10-17 10:38:51 -0400283 clib_memset (rv, 0xff, sizeof (*rv) * (1 << log2_pages));
Dave Barachc3799992016-08-15 11:12:27 -0400284 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285}
286
287static void
Dave Barachba7ddfe2017-05-17 20:20:50 -0400288BV (value_free) (BVT (clib_bihash) * h, BVT (clib_bihash_value) * v,
289 u32 log2_pages)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290{
Dave Barach508498f2018-07-19 12:11:16 -0400291 ASSERT (h->alloc_lock[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292
Dave Barachc3799992016-08-15 11:12:27 -0400293 ASSERT (vec_len (h->freelists) > log2_pages);
294
Dave Barach508498f2018-07-19 12:11:16 -0400295 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400296 clib_memset (v, 0xFE, sizeof (*v) * (1 << log2_pages));
Dave Barach508498f2018-07-19 12:11:16 -0400297
Dave Barach9466c452018-08-24 17:21:14 -0400298 v->next_free_as_u64 = (u64) h->freelists[log2_pages];
Dave Barachffb14b92018-09-11 17:20:23 -0400299 h->freelists[log2_pages] = (u64) BV (clib_bihash_get_offset) (h, v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300}
301
302static inline void
Dave Barach908a5ea2017-07-14 12:42:21 -0400303BV (make_working_copy) (BVT (clib_bihash) * h, BVT (clib_bihash_bucket) * b)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304{
Dave Barachc3799992016-08-15 11:12:27 -0400305 BVT (clib_bihash_value) * v;
Dave Barach908a5ea2017-07-14 12:42:21 -0400306 BVT (clib_bihash_bucket) working_bucket __attribute__ ((aligned (8)));
Dave Barachc3799992016-08-15 11:12:27 -0400307 BVT (clib_bihash_value) * working_copy;
Damjan Marionf55f9b82017-05-10 21:06:28 +0200308 u32 thread_index = os_get_thread_index ();
Dave Barachba7ddfe2017-05-17 20:20:50 -0400309 int log2_working_copy_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310
Dave Barach508498f2018-07-19 12:11:16 -0400311 ASSERT (h->alloc_lock[0]);
312
Damjan Marionf55f9b82017-05-10 21:06:28 +0200313 if (thread_index >= vec_len (h->working_copies))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314 {
Damjan Marionf55f9b82017-05-10 21:06:28 +0200315 vec_validate (h->working_copies, thread_index);
Steve Shin871cdec2017-06-02 10:09:02 -0700316 vec_validate_init_empty (h->working_copy_lengths, thread_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317 }
318
Dave Barachc3799992016-08-15 11:12:27 -0400319 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320 * working_copies are per-cpu so that near-simultaneous
321 * updates from multiple threads will not result in sporadic, spurious
Dave Barachc3799992016-08-15 11:12:27 -0400322 * lookup failures.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323 */
Damjan Marionf55f9b82017-05-10 21:06:28 +0200324 working_copy = h->working_copies[thread_index];
Dave Barachba7ddfe2017-05-17 20:20:50 -0400325 log2_working_copy_length = h->working_copy_lengths[thread_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
327 h->saved_bucket.as_u64 = b->as_u64;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328
Dave Barachba7ddfe2017-05-17 20:20:50 -0400329 if (b->log2_pages > log2_working_copy_length)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 {
Dave Barach97f5af02018-02-22 09:48:45 -0500331 /*
332 * It's not worth the bookkeeping to free working copies
333 * if (working_copy)
334 * clib_mem_free (working_copy);
335 */
336 working_copy = BV (alloc_aligned)
337 (h, sizeof (working_copy[0]) * (1 << b->log2_pages));
Dave Barachba7ddfe2017-05-17 20:20:50 -0400338 h->working_copy_lengths[thread_index] = b->log2_pages;
Damjan Marionf55f9b82017-05-10 21:06:28 +0200339 h->working_copies[thread_index] = working_copy;
Dave Barach2ce28d62019-05-03 12:58:01 -0400340
341 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_working_copy_lost,
342 1ULL << b->log2_pages);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343 }
344
Dave Barachc3799992016-08-15 11:12:27 -0400345 v = BV (clib_bihash_get_value) (h, b->offset);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346
Dave Barach178cf492018-11-13 16:34:13 -0500347 clib_memcpy_fast (working_copy, v, sizeof (*v) * (1 << b->log2_pages));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348 working_bucket.as_u64 = b->as_u64;
Dave Barachc3799992016-08-15 11:12:27 -0400349 working_bucket.offset = BV (clib_bihash_get_offset) (h, working_copy);
350 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351 b->as_u64 = working_bucket.as_u64;
Damjan Marionf55f9b82017-05-10 21:06:28 +0200352 h->working_copies[thread_index] = working_copy;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353}
354
Dave Barachc3799992016-08-15 11:12:27 -0400355static
356BVT (clib_bihash_value) *
357BV (split_and_rehash)
358 (BVT (clib_bihash) * h,
Dave Barachba7ddfe2017-05-17 20:20:50 -0400359 BVT (clib_bihash_value) * old_values, u32 old_log2_pages,
360 u32 new_log2_pages)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361{
Dave Barach5e6b9582016-12-12 15:37:29 -0500362 BVT (clib_bihash_value) * new_values, *new_v;
Dave Barachba7ddfe2017-05-17 20:20:50 -0400363 int i, j, length_in_kvs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364
Dave Barach508498f2018-07-19 12:11:16 -0400365 ASSERT (h->alloc_lock[0]);
366
Dave Barachc3799992016-08-15 11:12:27 -0400367 new_values = BV (value_alloc) (h, new_log2_pages);
Dave Barachba7ddfe2017-05-17 20:20:50 -0400368 length_in_kvs = (1 << old_log2_pages) * BIHASH_KVP_PER_PAGE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369
Dave Barachba7ddfe2017-05-17 20:20:50 -0400370 for (i = 0; i < length_in_kvs; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371 {
372 u64 new_hash;
Dave Barachc3799992016-08-15 11:12:27 -0400373
Dave Barach5e6b9582016-12-12 15:37:29 -0500374 /* Entry not in use? Forget it */
375 if (BV (clib_bihash_is_free) (&(old_values->kvp[i])))
376 continue;
377
378 /* rehash the item onto its new home-page */
379 new_hash = BV (clib_bihash_hash) (&(old_values->kvp[i]));
380 new_hash >>= h->log2_nbuckets;
381 new_hash &= (1 << new_log2_pages) - 1;
382 new_v = &new_values[new_hash];
383
384 /* Across the new home-page */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385 for (j = 0; j < BIHASH_KVP_PER_PAGE; j++)
Dave Barachc3799992016-08-15 11:12:27 -0400386 {
Dave Barach5e6b9582016-12-12 15:37:29 -0500387 /* Empty slot */
388 if (BV (clib_bihash_is_free) (&(new_v->kvp[j])))
Dave Barachc3799992016-08-15 11:12:27 -0400389 {
Dave Barach178cf492018-11-13 16:34:13 -0500390 clib_memcpy_fast (&(new_v->kvp[j]), &(old_values->kvp[i]),
391 sizeof (new_v->kvp[j]));
Dave Barach5e6b9582016-12-12 15:37:29 -0500392 goto doublebreak;
Dave Barachc3799992016-08-15 11:12:27 -0400393 }
Dave Barachc3799992016-08-15 11:12:27 -0400394 }
Dave Barach5e6b9582016-12-12 15:37:29 -0500395 /* Crap. Tell caller to try again */
Dave Barachba7ddfe2017-05-17 20:20:50 -0400396 BV (value_free) (h, new_values, new_log2_pages);
Dave Barach5e6b9582016-12-12 15:37:29 -0500397 return 0;
398 doublebreak:;
399 }
Dave Barachba7ddfe2017-05-17 20:20:50 -0400400
Dave Barach5e6b9582016-12-12 15:37:29 -0500401 return new_values;
402}
403
404static
405BVT (clib_bihash_value) *
406BV (split_and_rehash_linear)
407 (BVT (clib_bihash) * h,
Dave Barachba7ddfe2017-05-17 20:20:50 -0400408 BVT (clib_bihash_value) * old_values, u32 old_log2_pages,
409 u32 new_log2_pages)
Dave Barach5e6b9582016-12-12 15:37:29 -0500410{
411 BVT (clib_bihash_value) * new_values;
Dave Barachba7ddfe2017-05-17 20:20:50 -0400412 int i, j, new_length, old_length;
Dave Barach5e6b9582016-12-12 15:37:29 -0500413
Dave Barach508498f2018-07-19 12:11:16 -0400414 ASSERT (h->alloc_lock[0]);
415
Dave Barach5e6b9582016-12-12 15:37:29 -0500416 new_values = BV (value_alloc) (h, new_log2_pages);
417 new_length = (1 << new_log2_pages) * BIHASH_KVP_PER_PAGE;
Dave Barachba7ddfe2017-05-17 20:20:50 -0400418 old_length = (1 << old_log2_pages) * BIHASH_KVP_PER_PAGE;
Dave Barach5e6b9582016-12-12 15:37:29 -0500419
420 j = 0;
421 /* Across the old value array */
Dave Barachba7ddfe2017-05-17 20:20:50 -0400422 for (i = 0; i < old_length; i++)
Dave Barach5e6b9582016-12-12 15:37:29 -0500423 {
424 /* Find a free slot in the new linear scan bucket */
425 for (; j < new_length; j++)
426 {
Dave Barach8f544962017-01-18 10:23:22 -0500427 /* Old value not in use? Forget it. */
Dave Barach5e6b9582016-12-12 15:37:29 -0500428 if (BV (clib_bihash_is_free) (&(old_values->kvp[i])))
429 goto doublebreak;
430
431 /* New value should never be in use */
432 if (BV (clib_bihash_is_free) (&(new_values->kvp[j])))
433 {
434 /* Copy the old value and move along */
Dave Barach178cf492018-11-13 16:34:13 -0500435 clib_memcpy_fast (&(new_values->kvp[j]), &(old_values->kvp[i]),
436 sizeof (new_values->kvp[j]));
Dave Barach5e6b9582016-12-12 15:37:29 -0500437 j++;
438 goto doublebreak;
439 }
Dave Barach5e6b9582016-12-12 15:37:29 -0500440 }
Dave Barach8f544962017-01-18 10:23:22 -0500441 /* This should never happen... */
442 clib_warning ("BUG: linear rehash failed!");
Dave Barachba7ddfe2017-05-17 20:20:50 -0400443 BV (value_free) (h, new_values, new_log2_pages);
Dave Barach8f544962017-01-18 10:23:22 -0500444 return 0;
445
Dave Barach5e6b9582016-12-12 15:37:29 -0500446 doublebreak:;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447 }
448 return new_values;
449}
450
Matus Fabian828d27e2018-08-21 03:15:50 -0700451static inline int BV (clib_bihash_add_del_inline)
452 (BVT (clib_bihash) * h, BVT (clib_bihash_kv) * add_v, int is_add,
453 int (*is_stale_cb) (BVT (clib_bihash_kv) *, void *), void *arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700454{
455 u32 bucket_index;
Dave Barach908a5ea2017-07-14 12:42:21 -0400456 BVT (clib_bihash_bucket) * b, tmp_b;
Dave Barachc3799992016-08-15 11:12:27 -0400457 BVT (clib_bihash_value) * v, *new_v, *save_new_v, *working_copy;
Dave Barach5e6b9582016-12-12 15:37:29 -0500458 int i, limit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 u64 hash, new_hash;
Dave Barachba7ddfe2017-05-17 20:20:50 -0400460 u32 new_log2_pages, old_log2_pages;
Damjan Marionf55f9b82017-05-10 21:06:28 +0200461 u32 thread_index = os_get_thread_index ();
Dave Barach5e6b9582016-12-12 15:37:29 -0500462 int mark_bucket_linear;
463 int resplit_once;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464
Dave Barach67d09e02019-08-01 08:15:01 -0400465 /*
466 * Create the table (is_add=1,2), or flunk the request now (is_add=0)
467 * Use the alloc_lock to protect the instantiate operation.
468 */
469 if (PREDICT_FALSE (h->instantiated == 0))
Dave Barach32dcd3b2019-07-08 12:25:38 -0400470 {
471 if (is_add == 0)
472 return (-1);
Dave Barach67d09e02019-08-01 08:15:01 -0400473
474 BV (clib_bihash_alloc_lock) (h);
475 if (h->instantiated == 0)
476 BV (clib_bihash_instantiate) (h);
477 BV (clib_bihash_alloc_unlock) (h);
Dave Barach32dcd3b2019-07-08 12:25:38 -0400478 }
479
Dave Barachc3799992016-08-15 11:12:27 -0400480 hash = BV (clib_bihash_hash) (add_v);
481
482 bucket_index = hash & (h->nbuckets - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700483 b = &h->buckets[bucket_index];
484
485 hash >>= h->log2_nbuckets;
486
Dave Barach508498f2018-07-19 12:11:16 -0400487 BV (clib_bihash_lock_bucket) (b);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488
489 /* First elt in the bucket? */
Damjan Marion882fcfe2018-07-17 23:01:49 +0200490 if (BV (clib_bihash_bucket_is_empty) (b))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491 {
492 if (is_add == 0)
Dave Barachc3799992016-08-15 11:12:27 -0400493 {
Dave Barach508498f2018-07-19 12:11:16 -0400494 BV (clib_bihash_unlock_bucket) (b);
495 return (-1);
Dave Barachc3799992016-08-15 11:12:27 -0400496 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497
Dave Barach508498f2018-07-19 12:11:16 -0400498 BV (clib_bihash_alloc_lock) (h);
Dave Barachc3799992016-08-15 11:12:27 -0400499 v = BV (value_alloc) (h, 0);
Dave Barach508498f2018-07-19 12:11:16 -0400500 BV (clib_bihash_alloc_unlock) (h);
Dave Barachba7ddfe2017-05-17 20:20:50 -0400501
Dave Barachc3799992016-08-15 11:12:27 -0400502 *v->kvp = *add_v;
Dave Barach508498f2018-07-19 12:11:16 -0400503 tmp_b.as_u64 = 0; /* clears bucket lock */
Dave Barachc3799992016-08-15 11:12:27 -0400504 tmp_b.offset = BV (clib_bihash_get_offset) (h, v);
Dave Barache7d212f2018-02-07 13:14:06 -0500505 tmp_b.refcnt = 1;
Dave Barach508498f2018-07-19 12:11:16 -0400506 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507
Tom Seidenberg97f8ae92019-03-15 10:15:26 -0400508 b->as_u64 = tmp_b.as_u64; /* unlocks the bucket */
Dave Barach2ce28d62019-05-03 12:58:01 -0400509 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_alloc_add, 1);
510
Dave Barach508498f2018-07-19 12:11:16 -0400511 return (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512 }
513
Dave Barach508498f2018-07-19 12:11:16 -0400514 /* WARNING: we're still looking at the live copy... */
Dave Barach5e6b9582016-12-12 15:37:29 -0500515 limit = BIHASH_KVP_PER_PAGE;
Dave Barach508498f2018-07-19 12:11:16 -0400516 v = BV (clib_bihash_get_value) (h, b->offset);
517
Dave Barach5e6b9582016-12-12 15:37:29 -0500518 v += (b->linear_search == 0) ? hash & ((1 << b->log2_pages) - 1) : 0;
519 if (b->linear_search)
520 limit <<= b->log2_pages;
Dave Barachc3799992016-08-15 11:12:27 -0400521
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522 if (is_add)
523 {
Dave Barachc3799992016-08-15 11:12:27 -0400524 /*
Dave Barach508498f2018-07-19 12:11:16 -0400525 * Because reader threads are looking at live data,
526 * we have to be extra careful. Readers do NOT hold the
527 * bucket lock. We need to be SLOWER than a search, past the
528 * point where readers CHECK the bucket lock.
529 */
530
531 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532 * For obvious (in hindsight) reasons, see if we're supposed to
533 * replace an existing key, then look for an empty slot.
534 */
Dave Barach5e6b9582016-12-12 15:37:29 -0500535 for (i = 0; i < limit; i++)
Dave Barachc3799992016-08-15 11:12:27 -0400536 {
Dave Baracha11bf452019-04-17 17:27:31 -0400537 if (BV (clib_bihash_key_compare) (v->kvp[i].key, add_v->key))
Dave Barachc3799992016-08-15 11:12:27 -0400538 {
Dave Barach9e4946b2019-07-08 14:47:44 -0400539 /* Add but do not overwrite? */
540 if (is_add == 2)
541 {
542 BV (clib_bihash_unlock_bucket) (b);
543 return (-2);
544 }
545
Dave Barach508498f2018-07-19 12:11:16 -0400546 CLIB_MEMORY_BARRIER (); /* Add a delay */
Dave Barach178cf492018-11-13 16:34:13 -0500547 clib_memcpy_fast (&(v->kvp[i]), add_v, sizeof (*add_v));
Dave Barach508498f2018-07-19 12:11:16 -0400548 BV (clib_bihash_unlock_bucket) (b);
Dave Barach2ce28d62019-05-03 12:58:01 -0400549 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_replace, 1);
Dave Barach508498f2018-07-19 12:11:16 -0400550 return (0);
Dave Barachc3799992016-08-15 11:12:27 -0400551 }
552 }
Dave Barach508498f2018-07-19 12:11:16 -0400553 /*
554 * Look for an empty slot. If found, use it
555 */
Dave Barach5e6b9582016-12-12 15:37:29 -0500556 for (i = 0; i < limit; i++)
Dave Barachc3799992016-08-15 11:12:27 -0400557 {
558 if (BV (clib_bihash_is_free) (&(v->kvp[i])))
559 {
Dave Barach508498f2018-07-19 12:11:16 -0400560 /*
561 * Copy the value first, so that if a reader manages
562 * to match the new key, the value will be right...
563 */
Dave Barach178cf492018-11-13 16:34:13 -0500564 clib_memcpy_fast (&(v->kvp[i].value),
565 &add_v->value, sizeof (add_v->value));
Dave Barach508498f2018-07-19 12:11:16 -0400566 CLIB_MEMORY_BARRIER (); /* Make sure the value has settled */
Dave Barach178cf492018-11-13 16:34:13 -0500567 clib_memcpy_fast (&(v->kvp[i]), &add_v->key,
568 sizeof (add_v->key));
Dave Barache7d212f2018-02-07 13:14:06 -0500569 b->refcnt++;
Dave Barach9466c452018-08-24 17:21:14 -0400570 ASSERT (b->refcnt > 0);
Dave Barach508498f2018-07-19 12:11:16 -0400571 BV (clib_bihash_unlock_bucket) (b);
Dave Barach2ce28d62019-05-03 12:58:01 -0400572 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_add, 1);
Dave Barach508498f2018-07-19 12:11:16 -0400573 return (0);
Dave Barachc3799992016-08-15 11:12:27 -0400574 }
575 }
Matus Fabian828d27e2018-08-21 03:15:50 -0700576 /* look for stale data to overwrite */
577 if (is_stale_cb)
578 {
579 for (i = 0; i < limit; i++)
580 {
581 if (is_stale_cb (&(v->kvp[i]), arg))
582 {
583 CLIB_MEMORY_BARRIER ();
Dave Barach178cf492018-11-13 16:34:13 -0500584 clib_memcpy_fast (&(v->kvp[i]), add_v, sizeof (*add_v));
Matus Fabian828d27e2018-08-21 03:15:50 -0700585 BV (clib_bihash_unlock_bucket) (b);
Dave Barach2ce28d62019-05-03 12:58:01 -0400586 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_replace, 1);
Matus Fabian828d27e2018-08-21 03:15:50 -0700587 return (0);
588 }
589 }
590 }
Dave Barach508498f2018-07-19 12:11:16 -0400591 /* Out of space in this bucket, split the bucket... */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592 }
Dave Barach508498f2018-07-19 12:11:16 -0400593 else /* delete case */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594 {
Dave Barach5e6b9582016-12-12 15:37:29 -0500595 for (i = 0; i < limit; i++)
Dave Barachc3799992016-08-15 11:12:27 -0400596 {
Dave Barach508498f2018-07-19 12:11:16 -0400597 /* Found the key? Kill it... */
Dave Baracha11bf452019-04-17 17:27:31 -0400598 if (BV (clib_bihash_key_compare) (v->kvp[i].key, add_v->key))
Dave Barachc3799992016-08-15 11:12:27 -0400599 {
Dave Barachb7b92992018-10-17 10:38:51 -0400600 clib_memset (&(v->kvp[i]), 0xff, sizeof (*(add_v)));
Dave Barach508498f2018-07-19 12:11:16 -0400601 /* Is the bucket empty? */
602 if (PREDICT_TRUE (b->refcnt > 1))
Dave Barache7d212f2018-02-07 13:14:06 -0500603 {
Dave Barach508498f2018-07-19 12:11:16 -0400604 b->refcnt--;
605 BV (clib_bihash_unlock_bucket) (b);
Dave Barach2ce28d62019-05-03 12:58:01 -0400606 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_del, 1);
Dave Barach508498f2018-07-19 12:11:16 -0400607 return (0);
Dave Barache7d212f2018-02-07 13:14:06 -0500608 }
Dave Barach508498f2018-07-19 12:11:16 -0400609 else /* yes, free it */
Dave Barache7d212f2018-02-07 13:14:06 -0500610 {
Dave Barach508498f2018-07-19 12:11:16 -0400611 /* Save old bucket value, need log2_pages to free it */
612 tmp_b.as_u64 = b->as_u64;
613 CLIB_MEMORY_BARRIER ();
614
615 /* Kill and unlock the bucket */
616 b->as_u64 = 0;
617
618 /* And free the backing storage */
619 BV (clib_bihash_alloc_lock) (h);
620 /* Note: v currently points into the middle of the bucket */
621 v = BV (clib_bihash_get_value) (h, tmp_b.offset);
622 BV (value_free) (h, v, tmp_b.log2_pages);
623 BV (clib_bihash_alloc_unlock) (h);
Dave Barach2ce28d62019-05-03 12:58:01 -0400624 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_del_free,
625 1);
Dave Barach508498f2018-07-19 12:11:16 -0400626 return (0);
Dave Barache7d212f2018-02-07 13:14:06 -0500627 }
Dave Barachc3799992016-08-15 11:12:27 -0400628 }
629 }
Dave Barach508498f2018-07-19 12:11:16 -0400630 /* Not found... */
631 BV (clib_bihash_unlock_bucket) (b);
632 return (-3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700633 }
634
Dave Barach508498f2018-07-19 12:11:16 -0400635 /* Move readers to a (locked) temp copy of the bucket */
636 BV (clib_bihash_alloc_lock) (h);
637 BV (make_working_copy) (h, b);
638
639 v = BV (clib_bihash_get_value) (h, h->saved_bucket.offset);
640
Dave Barachba7ddfe2017-05-17 20:20:50 -0400641 old_log2_pages = h->saved_bucket.log2_pages;
642 new_log2_pages = old_log2_pages + 1;
Dave Barach5e6b9582016-12-12 15:37:29 -0500643 mark_bucket_linear = 0;
Dave Barach2ce28d62019-05-03 12:58:01 -0400644 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_split_add, 1);
645 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_splits, old_log2_pages);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700646
Damjan Marionf55f9b82017-05-10 21:06:28 +0200647 working_copy = h->working_copies[thread_index];
Dave Barach5e6b9582016-12-12 15:37:29 -0500648 resplit_once = 0;
Dave Barach2ce28d62019-05-03 12:58:01 -0400649 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_splits, 1);
Dave Barach5e6b9582016-12-12 15:37:29 -0500650
Dave Barachba7ddfe2017-05-17 20:20:50 -0400651 new_v = BV (split_and_rehash) (h, working_copy, old_log2_pages,
652 new_log2_pages);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700653 if (new_v == 0)
654 {
Dave Barach5e6b9582016-12-12 15:37:29 -0500655 try_resplit:
656 resplit_once = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657 new_log2_pages++;
Dave Barach5e6b9582016-12-12 15:37:29 -0500658 /* Try re-splitting. If that fails, fall back to linear search */
Dave Barachba7ddfe2017-05-17 20:20:50 -0400659 new_v = BV (split_and_rehash) (h, working_copy, old_log2_pages,
660 new_log2_pages);
Dave Barach5e6b9582016-12-12 15:37:29 -0500661 if (new_v == 0)
662 {
663 mark_linear:
664 new_log2_pages--;
665 /* pinned collisions, use linear search */
666 new_v =
Dave Barachba7ddfe2017-05-17 20:20:50 -0400667 BV (split_and_rehash_linear) (h, working_copy, old_log2_pages,
668 new_log2_pages);
Dave Barach5e6b9582016-12-12 15:37:29 -0500669 mark_bucket_linear = 1;
Dave Barach2ce28d62019-05-03 12:58:01 -0400670 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_linear, 1);
Dave Barach5e6b9582016-12-12 15:37:29 -0500671 }
Dave Barach2ce28d62019-05-03 12:58:01 -0400672 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_resplit, 1);
673 BV (clib_bihash_increment_stat) (h, BIHASH_STAT_splits,
674 old_log2_pages + 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 }
676
677 /* Try to add the new entry */
678 save_new_v = new_v;
Dave Barachc3799992016-08-15 11:12:27 -0400679 new_hash = BV (clib_bihash_hash) (add_v);
Dave Barach5e6b9582016-12-12 15:37:29 -0500680 limit = BIHASH_KVP_PER_PAGE;
681 if (mark_bucket_linear)
682 limit <<= new_log2_pages;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683 new_hash >>= h->log2_nbuckets;
Dave Barach5e6b9582016-12-12 15:37:29 -0500684 new_hash &= (1 << new_log2_pages) - 1;
685 new_v += mark_bucket_linear ? 0 : new_hash;
Dave Barachc3799992016-08-15 11:12:27 -0400686
Dave Barach5e6b9582016-12-12 15:37:29 -0500687 for (i = 0; i < limit; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688 {
Dave Barachc3799992016-08-15 11:12:27 -0400689 if (BV (clib_bihash_is_free) (&(new_v->kvp[i])))
690 {
Dave Barach178cf492018-11-13 16:34:13 -0500691 clib_memcpy_fast (&(new_v->kvp[i]), add_v, sizeof (*add_v));
Dave Barachc3799992016-08-15 11:12:27 -0400692 goto expand_ok;
693 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694 }
Dave Barachba7ddfe2017-05-17 20:20:50 -0400695
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696 /* Crap. Try again */
Dave Barachba7ddfe2017-05-17 20:20:50 -0400697 BV (value_free) (h, save_new_v, new_log2_pages);
Dave Barach5e6b9582016-12-12 15:37:29 -0500698 /*
699 * If we've already doubled the size of the bucket once,
700 * fall back to linear search now.
701 */
702 if (resplit_once)
703 goto mark_linear;
704 else
705 goto try_resplit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706
Dave Barachc3799992016-08-15 11:12:27 -0400707expand_ok:
Dave Barach5e6b9582016-12-12 15:37:29 -0500708 tmp_b.log2_pages = new_log2_pages;
Dave Barachc3799992016-08-15 11:12:27 -0400709 tmp_b.offset = BV (clib_bihash_get_offset) (h, save_new_v);
Dave Barach5e6b9582016-12-12 15:37:29 -0500710 tmp_b.linear_search = mark_bucket_linear;
Dave Barache7d212f2018-02-07 13:14:06 -0500711 tmp_b.refcnt = h->saved_bucket.refcnt + 1;
Dave Barach9466c452018-08-24 17:21:14 -0400712 ASSERT (tmp_b.refcnt > 0);
Dave Barach508498f2018-07-19 12:11:16 -0400713 tmp_b.lock = 0;
Dave Barachc3799992016-08-15 11:12:27 -0400714 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715 b->as_u64 = tmp_b.as_u64;
Andrew Yourtchenkodf32bc42018-09-20 15:36:51 +0200716 /* free the old bucket */
717 v = BV (clib_bihash_get_value) (h, h->saved_bucket.offset);
718 BV (value_free) (h, v, h->saved_bucket.log2_pages);
Dave Barach508498f2018-07-19 12:11:16 -0400719 BV (clib_bihash_alloc_unlock) (h);
720 return (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700721}
722
Matus Fabian828d27e2018-08-21 03:15:50 -0700723int BV (clib_bihash_add_del)
724 (BVT (clib_bihash) * h, BVT (clib_bihash_kv) * add_v, int is_add)
725{
726 return BV (clib_bihash_add_del_inline) (h, add_v, is_add, 0, 0);
727}
728
729int BV (clib_bihash_add_or_overwrite_stale)
730 (BVT (clib_bihash) * h, BVT (clib_bihash_kv) * add_v,
731 int (*stale_callback) (BVT (clib_bihash_kv) *, void *), void *arg)
732{
733 return BV (clib_bihash_add_del_inline) (h, add_v, 1, stale_callback, arg);
734}
735
Dave Barachc3799992016-08-15 11:12:27 -0400736int BV (clib_bihash_search)
Dave Barach908a5ea2017-07-14 12:42:21 -0400737 (BVT (clib_bihash) * h,
Dave Barachc3799992016-08-15 11:12:27 -0400738 BVT (clib_bihash_kv) * search_key, BVT (clib_bihash_kv) * valuep)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700739{
740 u64 hash;
741 u32 bucket_index;
Dave Barachc3799992016-08-15 11:12:27 -0400742 BVT (clib_bihash_value) * v;
Dave Barach908a5ea2017-07-14 12:42:21 -0400743 BVT (clib_bihash_bucket) * b;
Dave Barach5e6b9582016-12-12 15:37:29 -0500744 int i, limit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745
Dave Barachc3799992016-08-15 11:12:27 -0400746 ASSERT (valuep);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700747
Dave Barach32dcd3b2019-07-08 12:25:38 -0400748 if (PREDICT_FALSE (alloc_arena (h) == 0))
749 return -1;
750
Dave Barachc3799992016-08-15 11:12:27 -0400751 hash = BV (clib_bihash_hash) (search_key);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700752
Dave Barachc3799992016-08-15 11:12:27 -0400753 bucket_index = hash & (h->nbuckets - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700754 b = &h->buckets[bucket_index];
755
Damjan Marion882fcfe2018-07-17 23:01:49 +0200756 if (BV (clib_bihash_bucket_is_empty) (b))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757 return -1;
758
Dave Barach508498f2018-07-19 12:11:16 -0400759 if (PREDICT_FALSE (b->lock))
Dave Barach908a5ea2017-07-14 12:42:21 -0400760 {
Dave Barach508498f2018-07-19 12:11:16 -0400761 volatile BVT (clib_bihash_bucket) * bv = b;
762 while (bv->lock)
Damjan Marion2a03efe2018-07-20 21:48:59 +0200763 CLIB_PAUSE ();
Dave Barach908a5ea2017-07-14 12:42:21 -0400764 }
765
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766 hash >>= h->log2_nbuckets;
767
Dave Barachc3799992016-08-15 11:12:27 -0400768 v = BV (clib_bihash_get_value) (h, b->offset);
Dave Barach5e6b9582016-12-12 15:37:29 -0500769 limit = BIHASH_KVP_PER_PAGE;
770 v += (b->linear_search == 0) ? hash & ((1 << b->log2_pages) - 1) : 0;
771 if (PREDICT_FALSE (b->linear_search))
772 limit <<= b->log2_pages;
Dave Barachc3799992016-08-15 11:12:27 -0400773
Dave Barach5e6b9582016-12-12 15:37:29 -0500774 for (i = 0; i < limit; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700775 {
Dave Barachc3799992016-08-15 11:12:27 -0400776 if (BV (clib_bihash_key_compare) (v->kvp[i].key, search_key->key))
777 {
778 *valuep = v->kvp[i];
779 return 0;
780 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700781 }
782 return -1;
783}
784
Dave Barachc3799992016-08-15 11:12:27 -0400785u8 *BV (format_bihash) (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786{
Dave Barachc3799992016-08-15 11:12:27 -0400787 BVT (clib_bihash) * h = va_arg (*args, BVT (clib_bihash) *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700788 int verbose = va_arg (*args, int);
Dave Barach908a5ea2017-07-14 12:42:21 -0400789 BVT (clib_bihash_bucket) * b;
Dave Barachc3799992016-08-15 11:12:27 -0400790 BVT (clib_bihash_value) * v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791 int i, j, k;
792 u64 active_elements = 0;
Dave Barache7d212f2018-02-07 13:14:06 -0500793 u64 active_buckets = 0;
794 u64 linear_buckets = 0;
Dave Barach97f5af02018-02-22 09:48:45 -0500795 u64 used_bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796
797 s = format (s, "Hash table %s\n", h->name ? h->name : (u8 *) "(unnamed)");
Dave Barachc3799992016-08-15 11:12:27 -0400798
Dave Barach32dcd3b2019-07-08 12:25:38 -0400799 if (PREDICT_FALSE (alloc_arena (h) == 0))
800 return format (s, "[empty, uninitialized]");
801
Ed Warnickecb9cada2015-12-08 15:45:58 -0700802 for (i = 0; i < h->nbuckets; i++)
803 {
Dave Barachc3799992016-08-15 11:12:27 -0400804 b = &h->buckets[i];
Damjan Marion882fcfe2018-07-17 23:01:49 +0200805 if (BV (clib_bihash_bucket_is_empty) (b))
Dave Barachc3799992016-08-15 11:12:27 -0400806 {
807 if (verbose > 1)
808 s = format (s, "[%d]: empty\n", i);
809 continue;
810 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700811
Dave Barache7d212f2018-02-07 13:14:06 -0500812 active_buckets++;
813
814 if (b->linear_search)
815 linear_buckets++;
816
Ed Warnickecb9cada2015-12-08 15:45:58 -0700817 if (verbose)
Dave Barachc3799992016-08-15 11:12:27 -0400818 {
Dave Barach9466c452018-08-24 17:21:14 -0400819 s = format (s, "[%d]: heap offset %lld, len %d, linear %d\n", i,
Dave Barach5e6b9582016-12-12 15:37:29 -0500820 b->offset, (1 << b->log2_pages), b->linear_search);
Dave Barachc3799992016-08-15 11:12:27 -0400821 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822
Dave Barachc3799992016-08-15 11:12:27 -0400823 v = BV (clib_bihash_get_value) (h, b->offset);
824 for (j = 0; j < (1 << b->log2_pages); j++)
825 {
826 for (k = 0; k < BIHASH_KVP_PER_PAGE; k++)
827 {
828 if (BV (clib_bihash_is_free) (&v->kvp[k]))
829 {
830 if (verbose > 1)
831 s = format (s, " %d: empty\n",
832 j * BIHASH_KVP_PER_PAGE + k);
833 continue;
834 }
835 if (verbose)
836 {
Vijayabhaskar Katamreddyfb8e61c2017-12-14 13:20:50 -0800837 if (h->fmt_fn)
838 {
839 s = format (s, " %d: %U\n",
840 j * BIHASH_KVP_PER_PAGE + k,
Vijayabhaskar Katamreddy72739a62019-05-07 13:27:32 -0700841 h->fmt_fn, &(v->kvp[k]), verbose);
Vijayabhaskar Katamreddyfb8e61c2017-12-14 13:20:50 -0800842 }
843 else
844 {
845 s = format (s, " %d: %U\n",
846 j * BIHASH_KVP_PER_PAGE + k,
847 BV (format_bihash_kvp), &(v->kvp[k]));
848 }
Dave Barachc3799992016-08-15 11:12:27 -0400849 }
850 active_elements++;
851 }
852 v++;
853 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854 }
855
Dave Barache7d212f2018-02-07 13:14:06 -0500856 s = format (s, " %lld active elements %lld active buckets\n",
857 active_elements, active_buckets);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858 s = format (s, " %d free lists\n", vec_len (h->freelists));
Dave Barache7d212f2018-02-07 13:14:06 -0500859
860 for (i = 0; i < vec_len (h->freelists); i++)
861 {
862 u32 nfree = 0;
863 BVT (clib_bihash_value) * free_elt;
Dave Barachffb14b92018-09-11 17:20:23 -0400864 u64 free_elt_as_u64 = h->freelists[i];
Dave Barache7d212f2018-02-07 13:14:06 -0500865
Dave Barachffb14b92018-09-11 17:20:23 -0400866 while (free_elt_as_u64)
Dave Barache7d212f2018-02-07 13:14:06 -0500867 {
Dave Barachffb14b92018-09-11 17:20:23 -0400868 free_elt = BV (clib_bihash_get_value) (h, free_elt_as_u64);
Dave Barache7d212f2018-02-07 13:14:06 -0500869 nfree++;
Dave Barachffb14b92018-09-11 17:20:23 -0400870 free_elt_as_u64 = free_elt->next_free_as_u64;
Dave Barache7d212f2018-02-07 13:14:06 -0500871 }
872
Dave Barach9466c452018-08-24 17:21:14 -0400873 if (nfree || verbose)
874 s = format (s, " [len %d] %u free elts\n", 1 << i, nfree);
Dave Barache7d212f2018-02-07 13:14:06 -0500875 }
876
877 s = format (s, " %lld linear search buckets\n", linear_buckets);
Dave Barachffb14b92018-09-11 17:20:23 -0400878 used_bytes = alloc_arena_next (h);
Dave Barach97f5af02018-02-22 09:48:45 -0500879 s = format (s,
880 " arena: base %llx, next %llx\n"
881 " used %lld b (%lld Mbytes) of %lld b (%lld Mbytes)\n",
Dave Barach9466c452018-08-24 17:21:14 -0400882 alloc_arena (h), alloc_arena_next (h),
Dave Barach97f5af02018-02-22 09:48:45 -0500883 used_bytes, used_bytes >> 20,
Dave Barach9466c452018-08-24 17:21:14 -0400884 alloc_arena_size (h), alloc_arena_size (h) >> 20);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700885 return s;
886}
887
Dave Barachc3799992016-08-15 11:12:27 -0400888void BV (clib_bihash_foreach_key_value_pair)
889 (BVT (clib_bihash) * h, void *callback, void *arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700890{
891 int i, j, k;
Dave Barach908a5ea2017-07-14 12:42:21 -0400892 BVT (clib_bihash_bucket) * b;
Dave Barachc3799992016-08-15 11:12:27 -0400893 BVT (clib_bihash_value) * v;
894 void (*fp) (BVT (clib_bihash_kv) *, void *) = callback;
895
Dave Barach32dcd3b2019-07-08 12:25:38 -0400896 if (PREDICT_FALSE (alloc_arena (h) == 0))
897 return;
898
Ed Warnickecb9cada2015-12-08 15:45:58 -0700899 for (i = 0; i < h->nbuckets; i++)
900 {
Dave Barachc3799992016-08-15 11:12:27 -0400901 b = &h->buckets[i];
Damjan Marion882fcfe2018-07-17 23:01:49 +0200902 if (BV (clib_bihash_bucket_is_empty) (b))
Dave Barachc3799992016-08-15 11:12:27 -0400903 continue;
904
905 v = BV (clib_bihash_get_value) (h, b->offset);
906 for (j = 0; j < (1 << b->log2_pages); j++)
907 {
908 for (k = 0; k < BIHASH_KVP_PER_PAGE; k++)
909 {
910 if (BV (clib_bihash_is_free) (&v->kvp[k]))
911 continue;
912
913 (*fp) (&v->kvp[k], arg);
Dave Barachca45ee72018-08-06 08:43:47 -0400914 /*
915 * In case the callback deletes the last entry in the bucket...
916 */
917 if (BV (clib_bihash_bucket_is_empty) (b))
918 goto doublebreak;
Dave Barachc3799992016-08-15 11:12:27 -0400919 }
920 v++;
921 }
Dave Barachca45ee72018-08-06 08:43:47 -0400922 doublebreak:
923 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924 }
925}
Dave Barachdd3a57f2016-07-27 16:58:51 -0400926
Chris Luke16bcf7d2016-09-01 14:31:46 -0400927/** @endcond */
Dave Barachc3799992016-08-15 11:12:27 -0400928
929/*
930 * fd.io coding-style-patch-verification: ON
931 *
932 * Local Variables:
933 * eval: (c-set-style "gnu")
934 * End:
935 */