Imported Upstream version 16.07-rc1
[deb_dpdk.git] / lib / librte_hash / rte_hash.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef _RTE_HASH_H_
35 #define _RTE_HASH_H_
36
37 /**
38  * @file
39  *
40  * RTE Hash Table
41  */
42
43 #include <stdint.h>
44 #include <stddef.h>
45
46 #ifdef __cplusplus
47 extern "C" {
48 #endif
49
50 /** Maximum size of hash table that can be created. */
51 #define RTE_HASH_ENTRIES_MAX                    (1 << 30)
52
53 /** Maximum number of characters in hash name.*/
54 #define RTE_HASH_NAMESIZE                       32
55
56 /** Maximum number of keys that can be searched for using rte_hash_lookup_bulk. */
57 #define RTE_HASH_LOOKUP_BULK_MAX                64
58 #define RTE_HASH_LOOKUP_MULTI_MAX               RTE_HASH_LOOKUP_BULK_MAX
59
60 /** Enable Hardware transactional memory support. */
61 #define RTE_HASH_EXTRA_FLAGS_TRANS_MEM_SUPPORT  0x01
62
63 /** Default behavior of insertion, single writer/multi writer */
64 #define RTE_HASH_EXTRA_FLAGS_MULTI_WRITER_ADD 0x02
65
66 /** Signature of key that is stored internally. */
67 typedef uint32_t hash_sig_t;
68
69 /** Type of function that can be used for calculating the hash value. */
70 typedef uint32_t (*rte_hash_function)(const void *key, uint32_t key_len,
71                                       uint32_t init_val);
72
73 /** Type of function used to compare the hash key. */
74 typedef int (*rte_hash_cmp_eq_t)(const void *key1, const void *key2, size_t key_len);
75
76 /**
77  * Parameters used when creating the hash table.
78  */
79 struct rte_hash_parameters {
80         const char *name;               /**< Name of the hash. */
81         uint32_t entries;               /**< Total hash table entries. */
82         uint32_t reserved;              /**< Unused field. Should be set to 0 */
83         uint32_t key_len;               /**< Length of hash key. */
84         rte_hash_function hash_func;    /**< Primary Hash function used to calculate hash. */
85         uint32_t hash_func_init_val;    /**< Init value used by hash_func. */
86         int socket_id;                  /**< NUMA Socket ID for memory. */
87         uint8_t extra_flag;             /**< Indicate if additional parameters are present. */
88 };
89
90 /** @internal A hash table structure. */
91 struct rte_hash;
92
93 /**
94  * Create a new hash table.
95  *
96  * @param params
97  *   Parameters used to create and initialise the hash table.
98  * @return
99  *   Pointer to hash table structure that is used in future hash table
100  *   operations, or NULL on error, with error code set in rte_errno.
101  *   Possible rte_errno errors include:
102  *    - E_RTE_NO_CONFIG - function could not get pointer to rte_config structure
103  *    - E_RTE_SECONDARY - function was called from a secondary process instance
104  *    - ENOENT - missing entry
105  *    - EINVAL - invalid parameter passed to function
106  *    - ENOSPC - the maximum number of memzones has already been allocated
107  *    - EEXIST - a memzone with the same name already exists
108  *    - ENOMEM - no appropriate memory area found in which to create memzone
109  */
110 struct rte_hash *
111 rte_hash_create(const struct rte_hash_parameters *params);
112
113 /**
114  * Set a new hash compare function other than the default one.
115  *
116  * @note Function pointer does not work with multi-process, so do not use it
117  * in multi-process mode.
118  *
119  * @param h
120  *   Hash table for which the function is to be changed
121  * @param func
122  *   New compare function
123  */
124 void rte_hash_set_cmp_func(struct rte_hash *h, rte_hash_cmp_eq_t func);
125
126 /**
127  * Find an existing hash table object and return a pointer to it.
128  *
129  * @param name
130  *   Name of the hash table as passed to rte_hash_create()
131  * @return
132  *   Pointer to hash table or NULL if object not found
133  *   with rte_errno set appropriately. Possible rte_errno values include:
134  *    - ENOENT - value not available for return
135  */
136 struct rte_hash *
137 rte_hash_find_existing(const char *name);
138
139 /**
140  * De-allocate all memory used by hash table.
141  * @param h
142  *   Hash table to free
143  */
144 void
145 rte_hash_free(struct rte_hash *h);
146
147 /**
148  * Reset all hash structure, by zeroing all entries
149  * @param h
150  *   Hash table to reset
151  */
152 void
153 rte_hash_reset(struct rte_hash *h);
154
155 /**
156  * Add a key-value pair to an existing hash table.
157  * This operation is not multi-thread safe
158  * and should only be called from one thread.
159  *
160  * @param h
161  *   Hash table to add the key to.
162  * @param key
163  *   Key to add to the hash table.
164  * @param data
165  *   Data to add to the hash table.
166  * @return
167  *   - 0 if added successfully
168  *   - -EINVAL if the parameters are invalid.
169  *   - -ENOSPC if there is no space in the hash for this key.
170  */
171 int
172 rte_hash_add_key_data(const struct rte_hash *h, const void *key, void *data);
173
174 /**
175  * Add a key-value pair with a pre-computed hash value
176  * to an existing hash table.
177  * This operation is not multi-thread safe
178  * and should only be called from one thread.
179  *
180  * @param h
181  *   Hash table to add the key to.
182  * @param key
183  *   Key to add to the hash table.
184  * @param sig
185  *   Precomputed hash value for 'key'
186  * @param data
187  *   Data to add to the hash table.
188  * @return
189  *   - 0 if added successfully
190  *   - -EINVAL if the parameters are invalid.
191  *   - -ENOSPC if there is no space in the hash for this key.
192  */
193 int32_t
194 rte_hash_add_key_with_hash_data(const struct rte_hash *h, const void *key,
195                                                 hash_sig_t sig, void *data);
196
197 /**
198  * Add a key to an existing hash table. This operation is not multi-thread safe
199  * and should only be called from one thread.
200  *
201  * @param h
202  *   Hash table to add the key to.
203  * @param key
204  *   Key to add to the hash table.
205  * @return
206  *   - -EINVAL if the parameters are invalid.
207  *   - -ENOSPC if there is no space in the hash for this key.
208  *   - A positive value that can be used by the caller as an offset into an
209  *     array of user data. This value is unique for this key.
210  */
211 int32_t
212 rte_hash_add_key(const struct rte_hash *h, const void *key);
213
214 /**
215  * Add a key to an existing hash table.
216  * This operation is not multi-thread safe
217  * and should only be called from one thread.
218  *
219  * @param h
220  *   Hash table to add the key to.
221  * @param key
222  *   Key to add to the hash table.
223  * @param sig
224  *   Precomputed hash value for 'key'.
225  * @return
226  *   - -EINVAL if the parameters are invalid.
227  *   - -ENOSPC if there is no space in the hash for this key.
228  *   - A positive value that can be used by the caller as an offset into an
229  *     array of user data. This value is unique for this key.
230  */
231 int32_t
232 rte_hash_add_key_with_hash(const struct rte_hash *h, const void *key, hash_sig_t sig);
233
234 /**
235  * Remove a key from an existing hash table.
236  * This operation is not multi-thread safe
237  * and should only be called from one thread.
238  *
239  * @param h
240  *   Hash table to remove the key from.
241  * @param key
242  *   Key to remove from the hash table.
243  * @return
244  *   - -EINVAL if the parameters are invalid.
245  *   - -ENOENT if the key is not found.
246  *   - A positive value that can be used by the caller as an offset into an
247  *     array of user data. This value is unique for this key, and is the same
248  *     value that was returned when the key was added.
249  */
250 int32_t
251 rte_hash_del_key(const struct rte_hash *h, const void *key);
252
253 /**
254  * Remove a key from an existing hash table.
255  * This operation is not multi-thread safe
256  * and should only be called from one thread.
257  *
258  * @param h
259  *   Hash table to remove the key from.
260  * @param key
261  *   Key to remove from the hash table.
262  * @param sig
263  *   Precomputed hash value for 'key'.
264  * @return
265  *   - -EINVAL if the parameters are invalid.
266  *   - -ENOENT if the key is not found.
267  *   - A positive value that can be used by the caller as an offset into an
268  *     array of user data. This value is unique for this key, and is the same
269  *     value that was returned when the key was added.
270  */
271 int32_t
272 rte_hash_del_key_with_hash(const struct rte_hash *h, const void *key, hash_sig_t sig);
273
274
275 /**
276  * Find a key-value pair in the hash table.
277  * This operation is multi-thread safe.
278  *
279  * @param h
280  *   Hash table to look in.
281  * @param key
282  *   Key to find.
283  * @param data
284  *   Output with pointer to data returned from the hash table.
285  * @return
286  *   0 if successful lookup
287  *   - EINVAL if the parameters are invalid.
288  *   - ENOENT if the key is not found.
289  */
290 int
291 rte_hash_lookup_data(const struct rte_hash *h, const void *key, void **data);
292
293 /**
294  * Find a key-value pair with a pre-computed hash value
295  * to an existing hash table.
296  * This operation is multi-thread safe.
297  *
298  * @param h
299  *   Hash table to look in.
300  * @param key
301  *   Key to find.
302  * @param sig
303  *   Precomputed hash value for 'key'
304  * @param data
305  *   Output with pointer to data returned from the hash table.
306  * @return
307  *   0 if successful lookup
308  *   - EINVAL if the parameters are invalid.
309  *   - ENOENT if the key is not found.
310  */
311 int
312 rte_hash_lookup_with_hash_data(const struct rte_hash *h, const void *key,
313                                         hash_sig_t sig, void **data);
314
315 /**
316  * Find a key in the hash table.
317  * This operation is multi-thread safe.
318  *
319  * @param h
320  *   Hash table to look in.
321  * @param key
322  *   Key to find.
323  * @return
324  *   - -EINVAL if the parameters are invalid.
325  *   - -ENOENT if the key is not found.
326  *   - A positive value that can be used by the caller as an offset into an
327  *     array of user data. This value is unique for this key, and is the same
328  *     value that was returned when the key was added.
329  */
330 int32_t
331 rte_hash_lookup(const struct rte_hash *h, const void *key);
332
333 /**
334  * Find a key in the hash table.
335  * This operation is multi-thread safe.
336  *
337  * @param h
338  *   Hash table to look in.
339  * @param key
340  *   Key to find.
341  * @param sig
342  *   Hash value to remove from the hash table.
343  * @return
344  *   - -EINVAL if the parameters are invalid.
345  *   - -ENOENT if the key is not found.
346  *   - A positive value that can be used by the caller as an offset into an
347  *     array of user data. This value is unique for this key, and is the same
348  *     value that was returned when the key was added.
349  */
350 int32_t
351 rte_hash_lookup_with_hash(const struct rte_hash *h,
352                                 const void *key, hash_sig_t sig);
353
354 /**
355  * Calc a hash value by key.
356  * This operation is not multi-thread safe.
357  *
358  * @param h
359  *   Hash table to look in.
360  * @param key
361  *   Key to find.
362  * @return
363  *   - hash value
364  */
365 hash_sig_t
366 rte_hash_hash(const struct rte_hash *h, const void *key);
367
368 /**
369  * Find multiple keys in the hash table.
370  * This operation is multi-thread safe.
371  *
372  * @param h
373  *   Hash table to look in.
374  * @param keys
375  *   A pointer to a list of keys to look for.
376  * @param num_keys
377  *   How many keys are in the keys list (less than RTE_HASH_LOOKUP_BULK_MAX).
378  * @param hit_mask
379  *   Output containing a bitmask with all successful lookups.
380  * @param data
381  *   Output containing array of data returned from all the successful lookups.
382  * @return
383  *   -EINVAL if there's an error, otherwise number of successful lookups.
384  */
385 int
386 rte_hash_lookup_bulk_data(const struct rte_hash *h, const void **keys,
387                       uint32_t num_keys, uint64_t *hit_mask, void *data[]);
388
389 /**
390  * Find multiple keys in the hash table.
391  * This operation is multi-thread safe.
392  *
393  * @param h
394  *   Hash table to look in.
395  * @param keys
396  *   A pointer to a list of keys to look for.
397  * @param num_keys
398  *   How many keys are in the keys list (less than RTE_HASH_LOOKUP_BULK_MAX).
399  * @param positions
400  *   Output containing a list of values, corresponding to the list of keys that
401  *   can be used by the caller as an offset into an array of user data. These
402  *   values are unique for each key, and are the same values that were returned
403  *   when each key was added. If a key in the list was not found, then -ENOENT
404  *   will be the value.
405  * @return
406  *   -EINVAL if there's an error, otherwise 0.
407  */
408 int
409 rte_hash_lookup_bulk(const struct rte_hash *h, const void **keys,
410                       uint32_t num_keys, int32_t *positions);
411
412 /**
413  * Iterate through the hash table, returning key-value pairs.
414  *
415  * @param h
416  *   Hash table to iterate
417  * @param key
418  *   Output containing the key where current iterator
419  *   was pointing at
420  * @param data
421  *   Output containing the data associated with key.
422  *   Returns NULL if data was not stored.
423  * @param next
424  *   Pointer to iterator. Should be 0 to start iterating the hash table.
425  *   Iterator is incremented after each call of this function.
426  * @return
427  *   Position where key was stored, if successful.
428  *   - -EINVAL if the parameters are invalid.
429  *   - -ENOENT if end of the hash table.
430  */
431 int32_t
432 rte_hash_iterate(const struct rte_hash *h, const void **key, void **data, uint32_t *next);
433 #ifdef __cplusplus
434 }
435 #endif
436
437 #endif /* _RTE_HASH_H_ */