net/cnxk: add device start and stop
[dpdk.git] / doc / guides / prog_guide / hash_lib.rst
1 ..  SPDX-License-Identifier: BSD-3-Clause
2     Copyright(c) 2010-2015 Intel Corporation.
3     Copyright(c) 2018 Arm Limited.
4
5 .. _Hash_Library:
6
7 Hash Library
8 ============
9
10 The DPDK provides a Hash Library for creating hash table for fast lookup.
11 The hash table is a data structure optimized for searching through a set of entries that are each identified by a unique key.
12 For increased performance the DPDK Hash requires that all the keys have the same number of bytes which is set at the hash creation time.
13
14 Hash API Overview
15 -----------------
16
17 The main configuration parameters for the hash table are:
18
19 *   Total number of hash entries in the table
20
21 *   Size of the key in bytes
22
23 *   An extra flag to describe additional settings, for example the multithreading mode of operation and extendable bucket functionality (as will be described later)
24
25 The hash table also allows the configuration of some low-level implementation related parameters such as:
26
27 *   Hash function to translate the key into a hash value
28
29 The main methods exported by the Hash Library are:
30
31 *   Add entry with key: The key is provided as input. If the new entry is successfully added to the hash table for the specified key,
32     or there is already an entry in the hash table for the specified key, then the position of the entry is returned.
33     If the operation was not successful, for example due to lack of free entries in the hash table, then a negative value is returned.
34
35 *   Delete entry with key: The key is provided as input. If an entry with the specified key is found in the hash,
36     then the entry is removed from the hash table and the position where the entry was found in the hash table is returned.
37     If no entry with the specified key exists in the hash table, then a negative value is returned
38
39 *   Lookup for entry with key: The key is provided as input. If an entry with the specified key is found in the hash table (i.e., lookup hit),
40     then the position of the entry is returned, otherwise (i.e., lookup miss) a negative value is returned.
41
42 Apart from the basic methods explained above, the Hash Library API provides a few more advanced methods to query and update the hash table:
43
44 *   Add / lookup / delete entry with key and precomputed hash: Both the key and its precomputed hash are provided as input. This allows
45     the user to perform these operations faster, as the hash value is already computed.
46
47 *   Add / lookup entry with key and data: A data is provided as input for add. Add allows the user to store
48     not only the key, but also the data which may be either a 8-byte integer or a pointer to external data (if data size is more than 8 bytes).
49
50 *   Combination of the two options above: User can provide key, precomputed hash, and data.
51
52 *   Ability to not free the position of the entry in the hash table upon calling delete. This is useful for multi-threaded scenarios where
53     readers continue to use the position even after the entry is deleted.
54
55 Also, the API contains a method to allow the user to look up entries in batches, achieving higher performance
56 than looking up individual entries, as the function prefetches next entries at the time it is operating
57 with the current ones, which reduces significantly the performance overhead of the necessary memory accesses.
58
59
60 The actual data associated with each key can be either managed by the user using a separate table that
61 mirrors the hash in terms of number of entries and position of each entry,
62 as shown in the Flow Classification use case described in the following sections,
63 or stored in the hash table itself.
64
65 The example hash tables in the L2/L3 Forwarding sample applications define which port to forward a packet to based on a packet flow identified by the five-tuple lookup.
66 However, this table could also be used for more sophisticated features and provide many other functions and actions that could be performed on the packets and flows.
67
68 Multi-process support
69 ---------------------
70
71 The hash library can be used in a multi-process environment.
72 The only function that can only be used in single-process mode is rte_hash_set_cmp_func(), which sets up
73 a custom compare function, which is assigned to a function pointer (therefore, it is not supported in
74 multi-process mode).
75
76
77 Multi-thread support
78 ---------------------
79
80 The hash library supports multithreading, and the user specifies the needed mode of operation at the creation time of the hash table
81 by appropriately setting the flag. In all modes of operation lookups are thread-safe meaning lookups can be called from multiple
82 threads concurrently.
83
84 For concurrent writes, and concurrent reads and writes the following flag values define the corresponding modes of operation:
85
86 *  If the multi-writer flag (RTE_HASH_EXTRA_FLAGS_MULTI_WRITER_ADD) is set, multiple threads writing to the table is allowed.
87    Key add, delete, and table reset are protected from other writer threads. With only this flag set, readers are not protected from ongoing writes.
88
89 *  If the read/write concurrency (RTE_HASH_EXTRA_FLAGS_RW_CONCURRENCY) is set, multithread read/write operation is safe
90    (i.e., application does not need to stop the readers from accessing the hash table until writers finish their updates. Readers and writers can operate on the table concurrently).
91    The library uses a reader-writer lock to provide the concurrency.
92
93 *  In addition to these two flag values, if the transactional memory flag (RTE_HASH_EXTRA_FLAGS_TRANS_MEM_SUPPORT) is also set,
94    the reader-writer lock will use hardware transactional memory (e.g., IntelĀ® TSX) if supported to guarantee thread safety.
95    If the platform supports IntelĀ® TSX, it is advised to set the transactional memory flag, as this will speed up concurrent table operations.
96    Otherwise concurrent operations will be slower because of the overhead associated with the software locking mechanisms.
97
98 *  If lock free read/write concurrency (RTE_HASH_EXTRA_FLAGS_RW_CONCURRENCY_LF) is set, read/write concurrency is provided without using reader-writer lock.
99    For platforms (e.g., current ARM based platforms) that do not support transactional memory, it is advised to set this flag to achieve greater scalability in performance.
100    If this flag is set, the (RTE_HASH_EXTRA_FLAGS_NO_FREE_ON_DEL) flag is set by default.
101
102 *  If the 'do not free on delete' (RTE_HASH_EXTRA_FLAGS_NO_FREE_ON_DEL) flag is set, the position of the entry in the hash table is not freed upon calling delete(). This flag is enabled
103    by default when the lock free read/write concurrency flag is set. The application should free the position after all the readers have stopped referencing the position.
104    Where required, the application can make use of RCU mechanisms to determine when the readers have stopped referencing the position.
105    RCU QSBR process is integrated within the Hash library for safe freeing of the position. Application has certain responsibilities while using this feature.
106    For example, rte_hash_rcu_qsbr_add() need to be called to use the integrated RCU mechanism.
107    Please refer to resource reclamation framework of :ref:`RCU library <RCU_Library>` for more details.
108
109
110 Extendable Bucket Functionality support
111 ----------------------------------------
112 An extra flag is used to enable this functionality (flag is not set by default). When the (RTE_HASH_EXTRA_FLAGS_EXT_TABLE) is set and
113 in the very unlikely case due to excessive hash collisions that a key has failed to be inserted, the hash table bucket is extended with a linked
114 list to insert these failed keys. This feature is important for the workloads (e.g. telco workloads) that need to insert up to 100% of the
115 hash table size and can't tolerate any key insertion failure (even if very few).
116 Please note that with the 'lock free read/write concurrency' flag enabled, users need to call 'rte_hash_free_key_with_position' API or configure integrated RCU QSBR
117 (or use external RCU mechanisms) in order to free the empty buckets and deleted keys, to maintain the 100% capacity guarantee.
118
119 Implementation Details (non Extendable Bucket Case)
120 ---------------------------------------------------
121
122 The hash table has two main tables:
123
124 * First table is an array of buckets each of which consists of multiple entries,
125   Each entry contains the signature
126   of a given key (explained below), and an index to the second table.
127
128 * The second table is an array of all the keys stored in the hash table and its data associated to each key.
129
130 The hash library uses the Cuckoo Hash algorithm to resolve collisions.
131 For any input key, there are two possible buckets (primary and secondary/alternative location)
132 to store that key in the hash table, therefore only the entries within those two buckets need to be examined
133 when the key is looked up.
134 The Hash Library uses a hash function (configurable) to translate the input key into a 4-byte hash value.
135 The bucket index and a 2-byte signature is derived from the hash value using partial-key hashing [partial-key].
136
137 Once the buckets are identified, the scope of the key add,
138 delete, and lookup operations is reduced to the entries in those buckets (it is very likely that entries are in the primary bucket).
139
140 To speed up the search logic within the bucket, each hash entry stores the 2-byte key signature together with the full key for each hash table entry.
141 For large key sizes, comparing the input key against a key from the bucket can take significantly more time than
142 comparing the 2-byte signature of the input key against the signature of a key from the bucket.
143 Therefore, the signature comparison is done first and the full key comparison is done only when the signatures matches.
144 The full key comparison is still necessary, as two input keys from the same bucket can still potentially have the same 2-byte signature,
145 although this event is relatively rare for hash functions providing good uniform distributions for the set of input keys.
146
147 Example of lookup:
148
149 First of all, the primary bucket is identified and entry is likely to be stored there.
150 If signature was stored there, we compare its key against the one provided and return the position
151 where it was stored and/or the data associated to that key if there is a match.
152 If signature is not in the primary bucket, the secondary bucket is looked up, where same procedure
153 is carried out. If there is no match there either, key is not in the table and a negative value will be returned.
154
155 Example of addition:
156
157 Like lookup, the primary and secondary buckets are identified. If there is an empty entry in
158 the primary bucket, a signature is stored in that entry, key and data (if any) are added to
159 the second table and the index in the second table is stored in the entry of the first table.
160 If there is no space in the primary bucket, one of the entries on that bucket is pushed to its alternative location,
161 and the key to be added is inserted in its position.
162 To know where the alternative bucket of the evicted entry is, a mechanism called partial-key hashing [partial-key] is used.
163 If there is room in the alternative bucket, the evicted entry
164 is stored in it. If not, same process is repeated (one of the entries gets pushed) until an empty entry is found.
165 Notice that despite all the entry movement in the first table, the second table is not touched, which would impact
166 greatly in performance.
167
168 In the very unlikely event that an empty entry cannot be found after certain number of displacements,
169 key is considered not able to be added (unless extendable bucket flag is set, and in that case the bucket is extended to insert the key, as will be explained later).
170 With random keys, this method allows the user to get more than 90% table utilization, without
171 having to drop any stored entry (e.g. using a LRU replacement policy) or allocate more memory (extendable buckets or rehashing).
172
173
174 Example of deletion:
175
176 Similar to lookup, the key is searched in its primary and secondary buckets. If the key is found, the
177 entry is marked as empty. If the hash table was configured with 'no free on delete' or 'lock free read/write concurrency',
178 the position of the key is not freed. It is the responsibility of the user to free the position after
179 readers are not referencing the position anymore. User can configure integrated RCU QSBR or use external RCU mechanisms to safely free the position on delete.
180
181
182 Implementation Details (with Extendable Bucket)
183 -------------------------------------------------
184 When the RTE_HASH_EXTRA_FLAGS_EXT_TABLE flag is set, the hash table implementation still uses the same Cuckoo Hash algorithm to store the keys into
185 the first and second tables. However, in the very unlikely event that a key can't be inserted after certain number of the Cuckoo displacements is
186 reached, the secondary bucket of this key is extended
187 with a linked list of extra buckets and the key is stored in this linked list.
188
189 In case of lookup for a certain key, as before, the primary bucket is searched for a match and then the secondary bucket is looked up.
190 If there is no match there either, the extendable buckets (linked list of extra buckets) are searched one by one for a possible match and if there is no match
191 the key is considered not to be in the table.
192
193 The deletion is the same as the case when the RTE_HASH_EXTRA_FLAGS_EXT_TABLE flag is not set. With one exception, if a key is deleted from any bucket
194 and an empty location is created, the last entry from the extendable buckets associated with this bucket is displaced into
195 this empty location to possibly shorten the linked list.
196
197
198 Entry distribution in hash table
199 --------------------------------
200
201 As mentioned above, Cuckoo hash implementation pushes elements out of their bucket,
202 if there is a new entry to be added which primary location coincides with their current bucket,
203 being pushed to their alternative location.
204 Therefore, as user adds more entries to the hash table, distribution of the hash values
205 in the buckets will change, being most of them in their primary location and a few in
206 their secondary location, which the later will increase, as table gets busier.
207 This information is quite useful, as performance may be lower as more entries
208 are evicted to their secondary location.
209
210 See the tables below showing example entry distribution as table utilization increases.
211
212 .. _table_hash_lib_1:
213
214 .. table:: Entry distribution measured with an example table with 1024 random entries using jhash algorithm
215
216    +--------------+-----------------------+-------------------------+
217    | % Table used | % In Primary location | % In Secondary location |
218    +==============+=======================+=========================+
219    |      25      |         100           |           0             |
220    +--------------+-----------------------+-------------------------+
221    |      50      |         96.1          |           3.9           |
222    +--------------+-----------------------+-------------------------+
223    |      75      |         88.2          |           11.8          |
224    +--------------+-----------------------+-------------------------+
225    |      80      |         86.3          |           13.7          |
226    +--------------+-----------------------+-------------------------+
227    |      85      |         83.1          |           16.9          |
228    +--------------+-----------------------+-------------------------+
229    |      90      |         77.3          |           22.7          |
230    +--------------+-----------------------+-------------------------+
231    |      95.8    |         64.5          |           35.5          |
232    +--------------+-----------------------+-------------------------+
233
234 |
235
236 .. _table_hash_lib_2:
237
238 .. table:: Entry distribution measured with an example table with 1 million random entries using jhash algorithm
239
240    +--------------+-----------------------+-------------------------+
241    | % Table used | % In Primary location | % In Secondary location |
242    +==============+=======================+=========================+
243    |      50      |         96            |           4             |
244    +--------------+-----------------------+-------------------------+
245    |      75      |         86.9          |           13.1          |
246    +--------------+-----------------------+-------------------------+
247    |      80      |         83.9          |           16.1          |
248    +--------------+-----------------------+-------------------------+
249    |      85      |         80.1          |           19.9          |
250    +--------------+-----------------------+-------------------------+
251    |      90      |         74.8          |           25.2          |
252    +--------------+-----------------------+-------------------------+
253    |      94.5    |         67.4          |           32.6          |
254    +--------------+-----------------------+-------------------------+
255
256 .. note::
257
258    Last values on the tables above are the average maximum table
259    utilization with random keys and using Jenkins hash function.
260
261 Use Case: Flow Classification
262 -----------------------------
263
264 Flow classification is used to map each input packet to the connection/flow it belongs to.
265 This operation is necessary as the processing of each input packet is usually done in the context of their connection,
266 so the same set of operations is applied to all the packets from the same flow.
267
268 Applications using flow classification typically have a flow table to manage, with each separate flow having an entry associated with it in this table.
269 The size of the flow table entry is application specific, with typical values of 4, 16, 32 or 64 bytes.
270
271 Each application using flow classification typically has a mechanism defined to uniquely identify a flow based on
272 a number of fields read from the input packet that make up the flow key.
273 One example is to use the DiffServ 5-tuple made up of the following fields of the IP and transport layer packet headers:
274 Source IP Address, Destination IP Address, Protocol, Source Port, Destination Port.
275
276 The DPDK hash provides a generic method to implement an application specific flow classification mechanism.
277 Given a flow table implemented as an array, the application should create a hash object with the same number of entries as the flow table and
278 with the hash key size set to the number of bytes in the selected flow key.
279
280 The flow table operations on the application side are described below:
281
282 *   Add flow: Add the flow key to hash.
283     If the returned position is valid, use it to access the flow entry in the flow table for adding a new flow or
284     updating the information associated with an existing flow.
285     Otherwise, the flow addition failed, for example due to lack of free entries for storing new flows.
286
287 *   Delete flow: Delete the flow key from the hash. If the returned position is valid,
288     use it to access the flow entry in the flow table to invalidate the information associated with the flow.
289
290 *   Free flow: Free flow key position. If 'no free on delete' or 'lock-free read/write concurrency' flags are set,
291     wait till the readers are not referencing the position returned during add/delete flow and then free the position.
292     RCU mechanisms can be used to find out when the readers are not referencing the position anymore.
293     RCU QSBR process is integrated within the Hash library for safe freeing of the position. Application has certain responsibilities while using this feature.
294     Please refer to resource reclamation framework of :ref:`RCU library <RCU_Library>` for more details.
295
296 *   Lookup flow: Lookup for the flow key in the hash.
297     If the returned position is valid (flow lookup hit), use the returned position to access the flow entry in the flow table.
298     Otherwise (flow lookup miss) there is no flow registered for the current packet.
299
300 References
301 ----------
302
303 *   Donald E. Knuth, The Art of Computer Programming, Volume 3: Sorting and Searching (2nd Edition), 1998, Addison-Wesley Professional
304 * [partial-key] Bin Fan, David G. Andersen, and Michael Kaminsky, MemC3: compact and concurrent MemCache with dumber caching and smarter hashing, 2013, NSDI