blob: f11e6d506ab70f603644dcfa8125dccb9104869b [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 Copyright (c) 2014 Cisco and/or its affiliates.
3
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15*/
16
Chris Luke16bcf7d2016-09-01 14:31:46 -040017/** @cond DOCUMENTATION_IS_IN_BIHASH_DOC_H */
Dave Barachdd3a57f2016-07-27 16:58:51 -040018
Dave Barachc3799992016-08-15 11:12:27 -040019/*
Ed Warnickecb9cada2015-12-08 15:45:58 -070020 * Note: to instantiate the template multiple times in a single file,
21 * #undef __included_bihash_template_h__...
22 */
23#ifndef __included_bihash_template_h__
24#define __included_bihash_template_h__
25
26#include <vppinfra/heap.h>
27#include <vppinfra/format.h>
28#include <vppinfra/pool.h>
Dave Barach30765e72018-02-23 07:45:36 -050029#include <vppinfra/cache.h>
Damjan Marion2a03efe2018-07-20 21:48:59 +020030#include <vppinfra/lock.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070031
32#ifndef BIHASH_TYPE
33#error BIHASH_TYPE not defined
34#endif
35
Dave Barach9466c452018-08-24 17:21:14 -040036#ifdef BIHASH_32_64_SVM
37#undef HAVE_MEMFD_CREATE
38#include <vppinfra/linux/syscall.h>
39#include <fcntl.h>
40#define F_LINUX_SPECIFIC_BASE 1024
41#define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9)
42#define F_SEAL_SHRINK (2)
43/* Max page size 2**16 due to refcount width */
44#define BIHASH_FREELIST_LENGTH 17
45#endif
46
Ed Warnickecb9cada2015-12-08 15:45:58 -070047#define _bv(a,b) a##b
48#define __bv(a,b) _bv(a,b)
49#define BV(a) __bv(a,BIHASH_TYPE)
50
51#define _bvt(a,b) a##b##_t
52#define __bvt(a,b) _bvt(a,b)
53#define BVT(a) __bvt(a,BIHASH_TYPE)
54
Dave Barach2ce28d62019-05-03 12:58:01 -040055#define _bvs(a,b) struct a##b
56#define __bvs(a,b) _bvs(a,b)
57#define BVS(a) __bvs(a,BIHASH_TYPE)
58
Dave Barach9466c452018-08-24 17:21:14 -040059#if _LP64 == 0
60#define OVERFLOW_ASSERT(x) ASSERT(((x) & 0xFFFFFFFF00000000ULL) == 0)
61#define u64_to_pointer(x) (void *)(u32)((x))
62#define pointer_to_u64(x) (u64)(u32)((x))
63#else
64#define OVERFLOW_ASSERT(x)
65#define u64_to_pointer(x) (void *)((x))
66#define pointer_to_u64(x) (u64)((x))
67#endif
68
Dave Barachc3799992016-08-15 11:12:27 -040069typedef struct BV (clib_bihash_value)
70{
71 union
72 {
73 BVT (clib_bihash_kv) kvp[BIHASH_KVP_PER_PAGE];
Dave Barach9466c452018-08-24 17:21:14 -040074 u64 next_free_as_u64;
Ed Warnickecb9cada2015-12-08 15:45:58 -070075 };
Dave Barachc3799992016-08-15 11:12:27 -040076} BVT (clib_bihash_value);
Ed Warnickecb9cada2015-12-08 15:45:58 -070077
Dave Barach508498f2018-07-19 12:11:16 -040078#define BIHASH_BUCKET_OFFSET_BITS 36
Dave Barach908a5ea2017-07-14 12:42:21 -040079
Dave Barachc3799992016-08-15 11:12:27 -040080typedef struct
81{
82 union
83 {
84 struct
85 {
Dave Barach508498f2018-07-19 12:11:16 -040086 u64 offset:BIHASH_BUCKET_OFFSET_BITS;
87 u64 lock:1;
Damjan Marion882fcfe2018-07-17 23:01:49 +020088 u64 linear_search:1;
89 u64 log2_pages:8;
Dave Barach9466c452018-08-24 17:21:14 -040090 u64 refcnt:16;
Ed Warnickecb9cada2015-12-08 15:45:58 -070091 };
92 u64 as_u64;
93 };
Dave Barach908a5ea2017-07-14 12:42:21 -040094} BVT (clib_bihash_bucket);
Ed Warnickecb9cada2015-12-08 15:45:58 -070095
Damjan Marion882fcfe2018-07-17 23:01:49 +020096STATIC_ASSERT_SIZEOF (BVT (clib_bihash_bucket), sizeof (u64));
Damjan Marion882fcfe2018-07-17 23:01:49 +020097
Dave Barach9466c452018-08-24 17:21:14 -040098/* *INDENT-OFF* */
99typedef CLIB_PACKED (struct {
100 /*
101 * Backing store allocation. Since bihash manages its own
Andrew Yourtchenkoa7132542018-09-19 15:50:55 +0200102 * freelists, we simple dole out memory starting from alloc_arena[alloc_arena_next].
Dave Barach9466c452018-08-24 17:21:14 -0400103 */
Andrew Yourtchenkoa7132542018-09-19 15:50:55 +0200104 u64 alloc_arena_next; /* Next offset from alloc_arena to allocate, definitely NOT a constant */
Dave Barach9466c452018-08-24 17:21:14 -0400105 u64 alloc_arena_size; /* Size of the arena */
Dave Barach9466c452018-08-24 17:21:14 -0400106 /* Two SVM pointers stored as 8-byte integers */
107 u64 alloc_lock_as_u64;
108 u64 buckets_as_u64;
109 /* freelist list-head arrays/vectors */
110 u64 freelists_as_u64;
111 u32 nbuckets; /* Number of buckets */
112 /* Set when header valid */
113 volatile u32 ready;
Dave Barachffb14b92018-09-11 17:20:23 -0400114 u64 pad[2];
Dave Barach9466c452018-08-24 17:21:14 -0400115}) BVT (clib_bihash_shared_header);
116/* *INDENT-ON* */
117
118STATIC_ASSERT_SIZEOF (BVT (clib_bihash_shared_header), 8 * sizeof (u64));
119
Dave Barach2ce28d62019-05-03 12:58:01 -0400120typedef
121BVS (clib_bihash)
Dave Barachc3799992016-08-15 11:12:27 -0400122{
Dave Barach908a5ea2017-07-14 12:42:21 -0400123 BVT (clib_bihash_bucket) * buckets;
Dave Barach508498f2018-07-19 12:11:16 -0400124 volatile u32 *alloc_lock;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125
Dave Barach2ce28d62019-05-03 12:58:01 -0400126 BVT (clib_bihash_value) ** working_copies;
Dave Barachba7ddfe2017-05-17 20:20:50 -0400127 int *working_copy_lengths;
Dave Barach2ce28d62019-05-03 12:58:01 -0400128 BVT (clib_bihash_bucket) saved_bucket;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129
130 u32 nbuckets;
131 u32 log2_nbuckets;
Dave Barach32dcd3b2019-07-08 12:25:38 -0400132 u64 memory_size;
Dave Barachc3799992016-08-15 11:12:27 -0400133 u8 *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134
Dave Barach9466c452018-08-24 17:21:14 -0400135 u64 *freelists;
Dave Barach97f5af02018-02-22 09:48:45 -0500136
Dave Barach9466c452018-08-24 17:21:14 -0400137#if BIHASH_32_64_SVM
Dave Barach2ce28d62019-05-03 12:58:01 -0400138 BVT (clib_bihash_shared_header) * sh;
Dave Barach9466c452018-08-24 17:21:14 -0400139 int memfd;
140#else
Dave Barach2ce28d62019-05-03 12:58:01 -0400141 BVT (clib_bihash_shared_header) sh;
Dave Barach9466c452018-08-24 17:21:14 -0400142#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143
Dave Barachffb14b92018-09-11 17:20:23 -0400144 u64 alloc_arena; /* Base of the allocation arena */
Dave Barach67d09e02019-08-01 08:15:01 -0400145 volatile u8 instantiated;
Dave Barachffb14b92018-09-11 17:20:23 -0400146
Vijayabhaskar Katamreddyfb8e61c2017-12-14 13:20:50 -0800147 /**
148 * A custom format function to print the Key and Value of bihash_key instead of default hexdump
149 */
150 format_function_t *fmt_fn;
151
Dave Barach2ce28d62019-05-03 12:58:01 -0400152 /** Optional statistics-gathering callback */
153#if BIHASH_ENABLE_STATS
154 void (*inc_stats_callback) (BVS (clib_bihash) *, int stat_id, u64 count);
155
156 /** Statistics callback context (e.g. address of stats data structure) */
157 void *inc_stats_context;
158#endif
159
Dave Barachc3799992016-08-15 11:12:27 -0400160} BVT (clib_bihash);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
Dave Barachbdf9b972019-09-03 10:57:19 -0400162typedef struct
163{
164 BVT (clib_bihash) * h;
165 char *name;
166 u32 nbuckets;
167 uword memory_size;
168 format_function_t *fmt_fn;
169 u8 instantiate_immediately;
170 u8 dont_add_to_all_bihash_list;
171} BVT (clib_bihash_init2_args);
172
Dave Barach32dcd3b2019-07-08 12:25:38 -0400173extern void **clib_all_bihashes;
174
Dave Barach9466c452018-08-24 17:21:14 -0400175#if BIHASH_32_64_SVM
176#undef alloc_arena_next
177#undef alloc_arena_size
178#undef alloc_arena
179#undef CLIB_BIHASH_READY_MAGIC
180#define alloc_arena_next(h) (((h)->sh)->alloc_arena_next)
181#define alloc_arena_size(h) (((h)->sh)->alloc_arena_size)
Dave Barachffb14b92018-09-11 17:20:23 -0400182#define alloc_arena(h) ((h)->alloc_arena)
Dave Barach9466c452018-08-24 17:21:14 -0400183#define CLIB_BIHASH_READY_MAGIC 0xFEEDFACE
184#else
185#undef alloc_arena_next
186#undef alloc_arena_size
187#undef alloc_arena
188#undef CLIB_BIHASH_READY_MAGIC
189#define alloc_arena_next(h) ((h)->sh.alloc_arena_next)
190#define alloc_arena_size(h) ((h)->sh.alloc_arena_size)
Dave Barachffb14b92018-09-11 17:20:23 -0400191#define alloc_arena(h) ((h)->alloc_arena)
Dave Barach9466c452018-08-24 17:21:14 -0400192#define CLIB_BIHASH_READY_MAGIC 0
193#endif
194
Dave Barach2ce28d62019-05-03 12:58:01 -0400195#ifndef BIHASH_STAT_IDS
196#define BIHASH_STAT_IDS 1
197
198#define foreach_bihash_stat \
199_(alloc_add) \
200_(add) \
201_(split_add) \
202_(replace) \
203_(update) \
204_(del) \
205_(del_free) \
206_(linear) \
207_(resplit) \
208_(working_copy_lost) \
209_(splits) /* must be last */
210
211typedef enum
212{
213#define _(a) BIHASH_STAT_##a,
214 foreach_bihash_stat
215#undef _
216 BIHASH_STAT_N_STATS,
217} BVT (clib_bihash_stat_id);
218#endif /* BIHASH_STAT_IDS */
219
220static inline void BV (clib_bihash_increment_stat) (BVT (clib_bihash) * h,
221 int stat_id, u64 count)
222{
223#if BIHASH_ENABLE_STATS
224 if (PREDICT_FALSE (h->inc_stats_callback != 0))
225 h->inc_stats_callback (h, stat_id, count);
226#endif
227}
228
229#if BIHASH_ENABLE_STATS
230static inline void BV (clib_bihash_set_stats_callback)
231 (BVT (clib_bihash) * h, void (*cb) (BVT (clib_bihash) *, int, u64),
232 void *ctx)
233{
234 h->inc_stats_callback = cb;
235 h->inc_stats_context = ctx;
236}
237#endif
238
239
Dave Barach508498f2018-07-19 12:11:16 -0400240static inline void BV (clib_bihash_alloc_lock) (BVT (clib_bihash) * h)
Dave Barach908a5ea2017-07-14 12:42:21 -0400241{
Dave Barach508498f2018-07-19 12:11:16 -0400242 while (__atomic_test_and_set (h->alloc_lock, __ATOMIC_ACQUIRE))
Damjan Marion2a03efe2018-07-20 21:48:59 +0200243 CLIB_PAUSE ();
Dave Barach908a5ea2017-07-14 12:42:21 -0400244}
245
Dave Barach508498f2018-07-19 12:11:16 -0400246static inline void BV (clib_bihash_alloc_unlock) (BVT (clib_bihash) * h)
Dave Barach908a5ea2017-07-14 12:42:21 -0400247{
Dave Barach508498f2018-07-19 12:11:16 -0400248 __atomic_clear (h->alloc_lock, __ATOMIC_RELEASE);
Dave Barach908a5ea2017-07-14 12:42:21 -0400249}
250
Dave Barach508498f2018-07-19 12:11:16 -0400251static inline void BV (clib_bihash_lock_bucket) (BVT (clib_bihash_bucket) * b)
Dave Barach908a5ea2017-07-14 12:42:21 -0400252{
Dave Barach508498f2018-07-19 12:11:16 -0400253 BVT (clib_bihash_bucket) unlocked_bucket, locked_bucket;
Dave Barach908a5ea2017-07-14 12:42:21 -0400254
Dave Barach508498f2018-07-19 12:11:16 -0400255 do
256 {
257 locked_bucket.as_u64 = unlocked_bucket.as_u64 = b->as_u64;
258 unlocked_bucket.lock = 0;
259 locked_bucket.lock = 1;
Damjan Marion2a03efe2018-07-20 21:48:59 +0200260 CLIB_PAUSE ();
Dave Barach508498f2018-07-19 12:11:16 -0400261 }
262 while (__atomic_compare_exchange_n (&b->as_u64, &unlocked_bucket.as_u64,
263 locked_bucket.as_u64, 1 /* weak */ ,
264 __ATOMIC_ACQUIRE,
265 __ATOMIC_ACQUIRE) == 0);
Dave Barach858c06f2017-07-21 10:44:27 -0400266}
267
268static inline void BV (clib_bihash_unlock_bucket)
269 (BVT (clib_bihash_bucket) * b)
270{
Dave Barach508498f2018-07-19 12:11:16 -0400271 CLIB_MEMORY_BARRIER ();
272 b->lock = 0;
Dave Barach908a5ea2017-07-14 12:42:21 -0400273}
274
275static inline void *BV (clib_bihash_get_value) (BVT (clib_bihash) * h,
Dave Barachc3799992016-08-15 11:12:27 -0400276 uword offset)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277{
Dave Barach9466c452018-08-24 17:21:14 -0400278 u8 *hp = (u8 *) (uword) alloc_arena (h);
Dave Barachc3799992016-08-15 11:12:27 -0400279 u8 *vp = hp + offset;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280
281 return (void *) vp;
282}
283
Damjan Marion882fcfe2018-07-17 23:01:49 +0200284static inline int BV (clib_bihash_bucket_is_empty)
285 (BVT (clib_bihash_bucket) * b)
286{
Dave Barach508498f2018-07-19 12:11:16 -0400287 /* Note: applied to locked buckets, test offset */
288 return b->offset == 0;
Damjan Marion882fcfe2018-07-17 23:01:49 +0200289}
290
Dave Barach908a5ea2017-07-14 12:42:21 -0400291static inline uword BV (clib_bihash_get_offset) (BVT (clib_bihash) * h,
Dave Barachc3799992016-08-15 11:12:27 -0400292 void *v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293{
Dave Barachc3799992016-08-15 11:12:27 -0400294 u8 *hp, *vp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295
Dave Barach9466c452018-08-24 17:21:14 -0400296 hp = (u8 *) (uword) alloc_arena (h);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 vp = (u8 *) v;
298
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 return vp - hp;
300}
301
Dave Barachc3799992016-08-15 11:12:27 -0400302void BV (clib_bihash_init)
303 (BVT (clib_bihash) * h, char *name, u32 nbuckets, uword memory_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304
Dave Barachbdf9b972019-09-03 10:57:19 -0400305void BV (clib_bihash_init2) (BVT (clib_bihash_init2_args) * a);
306
Dave Barach9466c452018-08-24 17:21:14 -0400307#if BIHASH_32_64_SVM
308void BV (clib_bihash_master_init_svm)
Dave Barachffb14b92018-09-11 17:20:23 -0400309 (BVT (clib_bihash) * h, char *name, u32 nbuckets, u64 memory_size);
Dave Barach9466c452018-08-24 17:21:14 -0400310void BV (clib_bihash_slave_init_svm)
311 (BVT (clib_bihash) * h, char *name, int fd);
312#endif
313
Vijayabhaskar Katamreddyfb8e61c2017-12-14 13:20:50 -0800314void BV (clib_bihash_set_kvp_format_fn) (BVT (clib_bihash) * h,
315 format_function_t * fmt_fn);
316
Dave Barachc3799992016-08-15 11:12:27 -0400317void BV (clib_bihash_free) (BVT (clib_bihash) * h);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318
Dave Barachc3799992016-08-15 11:12:27 -0400319int BV (clib_bihash_add_del) (BVT (clib_bihash) * h,
320 BVT (clib_bihash_kv) * add_v, int is_add);
Matus Fabian828d27e2018-08-21 03:15:50 -0700321int BV (clib_bihash_add_or_overwrite_stale) (BVT (clib_bihash) * h,
322 BVT (clib_bihash_kv) * add_v,
323 int (*is_stale_cb) (BVT
324 (clib_bihash_kv)
325 *, void *),
326 void *arg);
Dave Barach908a5ea2017-07-14 12:42:21 -0400327int BV (clib_bihash_search) (BVT (clib_bihash) * h,
Dave Barachc3799992016-08-15 11:12:27 -0400328 BVT (clib_bihash_kv) * search_v,
329 BVT (clib_bihash_kv) * return_v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330
Neale Rannsf50bac12019-12-06 05:53:17 +0000331#define BIHASH_WALK_STOP 0
332#define BIHASH_WALK_CONTINUE 1
333
334typedef
335 int (*BV (clib_bihash_foreach_key_value_pair_cb)) (BVT (clib_bihash_kv) *,
336 void *);
Dave Barachc3799992016-08-15 11:12:27 -0400337void BV (clib_bihash_foreach_key_value_pair) (BVT (clib_bihash) * h,
Neale Rannsf50bac12019-12-06 05:53:17 +0000338 BV
339 (clib_bihash_foreach_key_value_pair_cb)
340 cb, void *arg);
Dave Barach32dcd3b2019-07-08 12:25:38 -0400341void *clib_all_bihash_set_heap (void);
342void clib_bihash_copied (void *dst, void *src);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343
Dave Barachc3799992016-08-15 11:12:27 -0400344format_function_t BV (format_bihash);
345format_function_t BV (format_bihash_kvp);
Dave Barach908a5ea2017-07-14 12:42:21 -0400346format_function_t BV (format_bihash_lru);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347
Dave Barach30765e72018-02-23 07:45:36 -0500348static inline int BV (clib_bihash_search_inline_with_hash)
349 (BVT (clib_bihash) * h, u64 hash, BVT (clib_bihash_kv) * key_result)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351 u32 bucket_index;
Dave Barachc3799992016-08-15 11:12:27 -0400352 BVT (clib_bihash_value) * v;
Dave Barach908a5ea2017-07-14 12:42:21 -0400353 BVT (clib_bihash_bucket) * b;
Dave Barach5e6b9582016-12-12 15:37:29 -0500354 int i, limit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700355
Dave Barach32dcd3b2019-07-08 12:25:38 -0400356 if (PREDICT_FALSE (alloc_arena (h) == 0))
357 return -1;
358
Dave Barachc3799992016-08-15 11:12:27 -0400359 bucket_index = hash & (h->nbuckets - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360 b = &h->buckets[bucket_index];
361
Damjan Marion882fcfe2018-07-17 23:01:49 +0200362 if (PREDICT_FALSE (BV (clib_bihash_bucket_is_empty) (b)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363 return -1;
364
Dave Barach508498f2018-07-19 12:11:16 -0400365 if (PREDICT_FALSE (b->lock))
Dave Barach908a5ea2017-07-14 12:42:21 -0400366 {
Dave Barach508498f2018-07-19 12:11:16 -0400367 volatile BVT (clib_bihash_bucket) * bv = b;
368 while (bv->lock)
Damjan Marion2a03efe2018-07-20 21:48:59 +0200369 CLIB_PAUSE ();
Dave Barach908a5ea2017-07-14 12:42:21 -0400370 }
371
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372 hash >>= h->log2_nbuckets;
373
Dave Barachc3799992016-08-15 11:12:27 -0400374 v = BV (clib_bihash_get_value) (h, b->offset);
Dave Barachc3799992016-08-15 11:12:27 -0400375
Dave Barach5e6b9582016-12-12 15:37:29 -0500376 /* If the bucket has unresolvable collisions, use linear search */
377 limit = BIHASH_KVP_PER_PAGE;
378 v += (b->linear_search == 0) ? hash & ((1 << b->log2_pages) - 1) : 0;
379 if (PREDICT_FALSE (b->linear_search))
380 limit <<= b->log2_pages;
381
382 for (i = 0; i < limit; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383 {
Dave Barach908a5ea2017-07-14 12:42:21 -0400384 if (BV (clib_bihash_key_compare) (v->kvp[i].key, key_result->key))
Dave Barachc3799992016-08-15 11:12:27 -0400385 {
Dave Barach908a5ea2017-07-14 12:42:21 -0400386 *key_result = v->kvp[i];
Dave Barachc3799992016-08-15 11:12:27 -0400387 return 0;
388 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389 }
390 return -1;
391}
392
Dave Barach30765e72018-02-23 07:45:36 -0500393static inline int BV (clib_bihash_search_inline)
394 (BVT (clib_bihash) * h, BVT (clib_bihash_kv) * key_result)
395{
396 u64 hash;
397
398 hash = BV (clib_bihash_hash) (key_result);
399
400 return BV (clib_bihash_search_inline_with_hash) (h, hash, key_result);
401}
402
403static inline void BV (clib_bihash_prefetch_bucket)
404 (BVT (clib_bihash) * h, u64 hash)
405{
406 u32 bucket_index;
407 BVT (clib_bihash_bucket) * b;
408
409 bucket_index = hash & (h->nbuckets - 1);
410 b = &h->buckets[bucket_index];
411
412 CLIB_PREFETCH (b, CLIB_CACHE_LINE_BYTES, READ);
413}
414
415static inline void BV (clib_bihash_prefetch_data)
416 (BVT (clib_bihash) * h, u64 hash)
417{
418 u32 bucket_index;
419 BVT (clib_bihash_value) * v;
420 BVT (clib_bihash_bucket) * b;
421
Dave Barach32dcd3b2019-07-08 12:25:38 -0400422 if (PREDICT_FALSE (alloc_arena (h) == 0))
423 return;
424
Dave Barach30765e72018-02-23 07:45:36 -0500425 bucket_index = hash & (h->nbuckets - 1);
426 b = &h->buckets[bucket_index];
427
Damjan Marion882fcfe2018-07-17 23:01:49 +0200428 if (PREDICT_FALSE (BV (clib_bihash_bucket_is_empty) (b)))
Dave Barach30765e72018-02-23 07:45:36 -0500429 return;
430
431 hash >>= h->log2_nbuckets;
432 v = BV (clib_bihash_get_value) (h, b->offset);
433
434 v += (b->linear_search == 0) ? hash & ((1 << b->log2_pages) - 1) : 0;
435
436 CLIB_PREFETCH (v, CLIB_CACHE_LINE_BYTES, READ);
437}
438
Andrew Yourtchenkoabcddcb2018-05-27 20:56:26 +0200439static inline int BV (clib_bihash_search_inline_2_with_hash)
Dave Barach908a5ea2017-07-14 12:42:21 -0400440 (BVT (clib_bihash) * h,
Andrew Yourtchenkoabcddcb2018-05-27 20:56:26 +0200441 u64 hash, BVT (clib_bihash_kv) * search_key, BVT (clib_bihash_kv) * valuep)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443 u32 bucket_index;
Dave Barachc3799992016-08-15 11:12:27 -0400444 BVT (clib_bihash_value) * v;
Dave Barach908a5ea2017-07-14 12:42:21 -0400445 BVT (clib_bihash_bucket) * b;
Dave Barach5e6b9582016-12-12 15:37:29 -0500446 int i, limit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447
Dave Barachc3799992016-08-15 11:12:27 -0400448 ASSERT (valuep);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449
Dave Barach32dcd3b2019-07-08 12:25:38 -0400450 if (PREDICT_FALSE (alloc_arena (h) == 0))
451 return -1;
452
Dave Barachc3799992016-08-15 11:12:27 -0400453 bucket_index = hash & (h->nbuckets - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700454 b = &h->buckets[bucket_index];
455
Damjan Marion882fcfe2018-07-17 23:01:49 +0200456 if (PREDICT_FALSE (BV (clib_bihash_bucket_is_empty) (b)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457 return -1;
458
Dave Barach508498f2018-07-19 12:11:16 -0400459 if (PREDICT_FALSE (b->lock))
Dave Barach908a5ea2017-07-14 12:42:21 -0400460 {
Dave Barach508498f2018-07-19 12:11:16 -0400461 volatile BVT (clib_bihash_bucket) * bv = b;
462 while (bv->lock)
Damjan Marion2a03efe2018-07-20 21:48:59 +0200463 CLIB_PAUSE ();
Dave Barach908a5ea2017-07-14 12:42:21 -0400464 }
465
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466 hash >>= h->log2_nbuckets;
Dave Barachc3799992016-08-15 11:12:27 -0400467 v = BV (clib_bihash_get_value) (h, b->offset);
Dave Barachc3799992016-08-15 11:12:27 -0400468
Dave Barach5e6b9582016-12-12 15:37:29 -0500469 /* If the bucket has unresolvable collisions, use linear search */
470 limit = BIHASH_KVP_PER_PAGE;
471 v += (b->linear_search == 0) ? hash & ((1 << b->log2_pages) - 1) : 0;
472 if (PREDICT_FALSE (b->linear_search))
473 limit <<= b->log2_pages;
474
475 for (i = 0; i < limit; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476 {
Dave Barachc3799992016-08-15 11:12:27 -0400477 if (BV (clib_bihash_key_compare) (v->kvp[i].key, search_key->key))
478 {
479 *valuep = v->kvp[i];
480 return 0;
481 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482 }
483 return -1;
484}
485
Andrew Yourtchenkoabcddcb2018-05-27 20:56:26 +0200486static inline int BV (clib_bihash_search_inline_2)
487 (BVT (clib_bihash) * h,
488 BVT (clib_bihash_kv) * search_key, BVT (clib_bihash_kv) * valuep)
489{
490 u64 hash;
491
492 hash = BV (clib_bihash_hash) (search_key);
493
494 return BV (clib_bihash_search_inline_2_with_hash) (h, hash, search_key,
495 valuep);
496}
497
498
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499#endif /* __included_bihash_template_h__ */
Dave Barachdd3a57f2016-07-27 16:58:51 -0400500
Chris Luke16bcf7d2016-09-01 14:31:46 -0400501/** @endcond */
Dave Barachc3799992016-08-15 11:12:27 -0400502
503/*
504 * fd.io coding-style-patch-verification: ON
505 *
506 * Local Variables:
507 * eval: (c-set-style "gnu")
508 * End:
509 */