New upstream version 18.08
[deb_dpdk.git] / lib / librte_hash / rte_cuckoo_hash.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2016 Intel Corporation
3  */
4
5 /* rte_cuckoo_hash.h
6  * This file hold Cuckoo Hash private data structures to allows include from
7  * platform specific files like rte_cuckoo_hash_x86.h
8  */
9
10 #ifndef _RTE_CUCKOO_HASH_H_
11 #define _RTE_CUCKOO_HASH_H_
12
13 #if defined(RTE_ARCH_X86)
14 #include "rte_cmp_x86.h"
15 #endif
16
17 #if defined(RTE_ARCH_ARM64)
18 #include "rte_cmp_arm64.h"
19 #endif
20
21 /* Macro to enable/disable run-time checking of function parameters */
22 #if defined(RTE_LIBRTE_HASH_DEBUG)
23 #define RETURN_IF_TRUE(cond, retval) do { \
24         if (cond) \
25                 return retval; \
26 } while (0)
27 #else
28 #define RETURN_IF_TRUE(cond, retval)
29 #endif
30
31 #include <rte_hash_crc.h>
32 #include <rte_jhash.h>
33
34 #if defined(RTE_ARCH_X86) || defined(RTE_ARCH_ARM64)
35 /*
36  * All different options to select a key compare function,
37  * based on the key size and custom function.
38  */
39 enum cmp_jump_table_case {
40         KEY_CUSTOM = 0,
41         KEY_16_BYTES,
42         KEY_32_BYTES,
43         KEY_48_BYTES,
44         KEY_64_BYTES,
45         KEY_80_BYTES,
46         KEY_96_BYTES,
47         KEY_112_BYTES,
48         KEY_128_BYTES,
49         KEY_OTHER_BYTES,
50         NUM_KEY_CMP_CASES,
51 };
52
53 /*
54  * Table storing all different key compare functions
55  * (multi-process supported)
56  */
57 const rte_hash_cmp_eq_t cmp_jump_table[NUM_KEY_CMP_CASES] = {
58         NULL,
59         rte_hash_k16_cmp_eq,
60         rte_hash_k32_cmp_eq,
61         rte_hash_k48_cmp_eq,
62         rte_hash_k64_cmp_eq,
63         rte_hash_k80_cmp_eq,
64         rte_hash_k96_cmp_eq,
65         rte_hash_k112_cmp_eq,
66         rte_hash_k128_cmp_eq,
67         memcmp
68 };
69 #else
70 /*
71  * All different options to select a key compare function,
72  * based on the key size and custom function.
73  */
74 enum cmp_jump_table_case {
75         KEY_CUSTOM = 0,
76         KEY_OTHER_BYTES,
77         NUM_KEY_CMP_CASES,
78 };
79
80 /*
81  * Table storing all different key compare functions
82  * (multi-process supported)
83  */
84 const rte_hash_cmp_eq_t cmp_jump_table[NUM_KEY_CMP_CASES] = {
85         NULL,
86         memcmp
87 };
88
89 #endif
90
91
92 /** Number of items per bucket. */
93 #define RTE_HASH_BUCKET_ENTRIES         8
94
95 #if !RTE_IS_POWER_OF_2(RTE_HASH_BUCKET_ENTRIES)
96 #error RTE_HASH_BUCKET_ENTRIES must be a power of 2
97 #endif
98
99 #define NULL_SIGNATURE                  0
100
101 #define EMPTY_SLOT                      0
102
103 #define KEY_ALIGNMENT                   16
104
105 #define LCORE_CACHE_SIZE                64
106
107 #define RTE_HASH_MAX_PUSHES             100
108
109 #define RTE_HASH_BFS_QUEUE_MAX_LEN       1000
110
111 #define RTE_XABORT_CUCKOO_PATH_INVALIDED 0x4
112
113 #define RTE_HASH_TSX_MAX_RETRY  10
114
115 struct lcore_cache {
116         unsigned len; /**< Cache len */
117         void *objs[LCORE_CACHE_SIZE]; /**< Cache objects */
118 } __rte_cache_aligned;
119
120 /* Structure that stores key-value pair */
121 struct rte_hash_key {
122         union {
123                 uintptr_t idata;
124                 void *pdata;
125         };
126         /* Variable key size */
127         char key[0];
128 } __attribute__((aligned(KEY_ALIGNMENT)));
129
130 /* All different signature compare functions */
131 enum rte_hash_sig_compare_function {
132         RTE_HASH_COMPARE_SCALAR = 0,
133         RTE_HASH_COMPARE_SSE,
134         RTE_HASH_COMPARE_AVX2,
135         RTE_HASH_COMPARE_NUM
136 };
137
138 /** Bucket structure */
139 struct rte_hash_bucket {
140         hash_sig_t sig_current[RTE_HASH_BUCKET_ENTRIES];
141
142         uint32_t key_idx[RTE_HASH_BUCKET_ENTRIES];
143
144         hash_sig_t sig_alt[RTE_HASH_BUCKET_ENTRIES];
145
146         uint8_t flag[RTE_HASH_BUCKET_ENTRIES];
147 } __rte_cache_aligned;
148
149 /** A hash table structure. */
150 struct rte_hash {
151         char name[RTE_HASH_NAMESIZE];   /**< Name of the hash. */
152         uint32_t entries;               /**< Total table entries. */
153         uint32_t num_buckets;           /**< Number of buckets in table. */
154
155         struct rte_ring *free_slots;
156         /**< Ring that stores all indexes of the free slots in the key table */
157
158         struct lcore_cache *local_free_slots;
159         /**< Local cache per lcore, storing some indexes of the free slots */
160
161         /* Fields used in lookup */
162
163         uint32_t key_len __rte_cache_aligned;
164         /**< Length of hash key. */
165         uint8_t hw_trans_mem_support;
166         /**< If hardware transactional memory is used. */
167         uint8_t multi_writer_support;
168         /**< If multi-writer support is enabled. */
169         uint8_t readwrite_concur_support;
170         /**< If read-write concurrency support is enabled */
171         rte_hash_function hash_func;    /**< Function used to calculate hash. */
172         uint32_t hash_func_init_val;    /**< Init value used by hash_func. */
173         rte_hash_cmp_eq_t rte_hash_custom_cmp_eq;
174         /**< Custom function used to compare keys. */
175         enum cmp_jump_table_case cmp_jump_table_idx;
176         /**< Indicates which compare function to use. */
177         enum rte_hash_sig_compare_function sig_cmp_fn;
178         /**< Indicates which signature compare function to use. */
179         uint32_t bucket_bitmask;
180         /**< Bitmask for getting bucket index from hash signature. */
181         uint32_t key_entry_size;         /**< Size of each key entry. */
182
183         void *key_store;                /**< Table storing all keys and data */
184         struct rte_hash_bucket *buckets;
185         /**< Table with buckets storing all the hash values and key indexes
186          * to the key table.
187          */
188         rte_rwlock_t *readwrite_lock; /**< Read-write lock thread-safety. */
189 } __rte_cache_aligned;
190
191 struct queue_node {
192         struct rte_hash_bucket *bkt; /* Current bucket on the bfs search */
193
194         struct queue_node *prev;     /* Parent(bucket) in search path */
195         int prev_slot;               /* Parent(slot) in search path */
196 };
197
198 #endif