1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2016 Intel Corporation
3 * Copyright(c) 2018 Arm Limited
7 * This file hold Cuckoo Hash private data structures to allows include from
8 * platform specific files like rte_cuckoo_hash_x86.h
11 #ifndef _RTE_CUCKOO_HASH_H_
12 #define _RTE_CUCKOO_HASH_H_
14 #if defined(RTE_ARCH_X86)
15 #include "rte_cmp_x86.h"
18 #if defined(RTE_ARCH_ARM64)
19 #include "rte_cmp_arm64.h"
22 /* Macro to enable/disable run-time checking of function parameters */
23 #if defined(RTE_LIBRTE_HASH_DEBUG)
24 #define RETURN_IF_TRUE(cond, retval) do { \
29 #define RETURN_IF_TRUE(cond, retval)
32 #if defined(RTE_LIBRTE_HASH_DEBUG)
33 #define ERR_IF_TRUE(cond, fmt, args...) do { \
35 RTE_LOG(ERR, HASH, fmt, ##args); \
40 #define ERR_IF_TRUE(cond, fmt, args...)
43 #include <rte_hash_crc.h>
44 #include <rte_jhash.h>
46 #if defined(RTE_ARCH_X86) || defined(RTE_ARCH_ARM64)
48 * All different options to select a key compare function,
49 * based on the key size and custom function.
51 enum cmp_jump_table_case {
66 * Table storing all different key compare functions
67 * (multi-process supported)
69 const rte_hash_cmp_eq_t cmp_jump_table[NUM_KEY_CMP_CASES] = {
83 * All different options to select a key compare function,
84 * based on the key size and custom function.
86 enum cmp_jump_table_case {
93 * Table storing all different key compare functions
94 * (multi-process supported)
96 const rte_hash_cmp_eq_t cmp_jump_table[NUM_KEY_CMP_CASES] = {
104 /** Number of items per bucket. */
105 #define RTE_HASH_BUCKET_ENTRIES 8
107 #if !RTE_IS_POWER_OF_2(RTE_HASH_BUCKET_ENTRIES)
108 #error RTE_HASH_BUCKET_ENTRIES must be a power of 2
111 #define NULL_SIGNATURE 0
115 #define KEY_ALIGNMENT 16
117 #define LCORE_CACHE_SIZE 64
119 #define RTE_HASH_BFS_QUEUE_MAX_LEN 1000
121 #define RTE_XABORT_CUCKOO_PATH_INVALIDED 0x4
123 #define RTE_HASH_TSX_MAX_RETRY 10
126 unsigned len; /**< Cache len */
127 void *objs[LCORE_CACHE_SIZE]; /**< Cache objects */
128 } __rte_cache_aligned;
130 /* Structure that stores key-value pair */
131 struct rte_hash_key {
136 /* Variable key size */
140 /* All different signature compare functions */
141 enum rte_hash_sig_compare_function {
142 RTE_HASH_COMPARE_SCALAR = 0,
143 RTE_HASH_COMPARE_SSE,
147 /** Bucket structure */
148 struct rte_hash_bucket {
149 uint16_t sig_current[RTE_HASH_BUCKET_ENTRIES];
151 uint32_t key_idx[RTE_HASH_BUCKET_ENTRIES];
153 uint8_t flag[RTE_HASH_BUCKET_ENTRIES];
156 } __rte_cache_aligned;
158 /** A hash table structure. */
160 char name[RTE_HASH_NAMESIZE]; /**< Name of the hash. */
161 uint32_t entries; /**< Total table entries. */
162 uint32_t num_buckets; /**< Number of buckets in table. */
164 struct rte_ring *free_slots;
165 /**< Ring that stores all indexes of the free slots in the key table */
167 struct lcore_cache *local_free_slots;
168 /**< Local cache per lcore, storing some indexes of the free slots */
170 /* Fields used in lookup */
172 uint32_t key_len __rte_cache_aligned;
173 /**< Length of hash key. */
174 uint8_t hw_trans_mem_support;
175 /**< If hardware transactional memory is used. */
176 uint8_t use_local_cache;
177 /**< If multi-writer support is enabled, use local cache
178 * to allocate key-store slots.
180 uint8_t readwrite_concur_support;
181 /**< If read-write concurrency support is enabled */
182 uint8_t ext_table_support; /**< Enable extendable bucket table */
183 uint8_t no_free_on_del;
184 /**< If key index should be freed on calling rte_hash_del_xxx APIs.
185 * If this is set, rte_hash_free_key_with_position must be called to
186 * free the key index associated with the deleted entry.
187 * This flag is enabled by default.
189 uint8_t readwrite_concur_lf_support;
190 /**< If read-write concurrency lock free support is enabled */
191 uint8_t writer_takes_lock;
192 /**< Indicates if the writer threads need to take lock */
193 rte_hash_function hash_func; /**< Function used to calculate hash. */
194 uint32_t hash_func_init_val; /**< Init value used by hash_func. */
195 rte_hash_cmp_eq_t rte_hash_custom_cmp_eq;
196 /**< Custom function used to compare keys. */
197 enum cmp_jump_table_case cmp_jump_table_idx;
198 /**< Indicates which compare function to use. */
199 enum rte_hash_sig_compare_function sig_cmp_fn;
200 /**< Indicates which signature compare function to use. */
201 uint32_t bucket_bitmask;
202 /**< Bitmask for getting bucket index from hash signature. */
203 uint32_t key_entry_size; /**< Size of each key entry. */
205 void *key_store; /**< Table storing all keys and data */
206 struct rte_hash_bucket *buckets;
207 /**< Table with buckets storing all the hash values and key indexes
210 rte_rwlock_t *readwrite_lock; /**< Read-write lock thread-safety. */
211 struct rte_hash_bucket *buckets_ext; /**< Extra buckets array */
212 struct rte_ring *free_ext_bkts; /**< Ring of indexes of free buckets */
213 uint32_t *tbl_chng_cnt;
214 /**< Indicates if the hash table changed from last read. */
215 } __rte_cache_aligned;
218 struct rte_hash_bucket *bkt; /* Current bucket on the bfs search */
219 uint32_t cur_bkt_idx;
221 struct queue_node *prev; /* Parent(bucket) in search path */
222 int prev_slot; /* Parent(slot) in search path */