DPDK  19.08.2
rte_hash.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2015 Intel Corporation
3  */
4 
5 #ifndef _RTE_HASH_H_
6 #define _RTE_HASH_H_
7 
14 #include <stdint.h>
15 #include <stddef.h>
16 
17 #include <rte_compat.h>
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
24 #define RTE_HASH_ENTRIES_MAX (1 << 30)
25 
27 #define RTE_HASH_NAMESIZE 32
28 
30 #define RTE_HASH_LOOKUP_BULK_MAX 64
31 #define RTE_HASH_LOOKUP_MULTI_MAX RTE_HASH_LOOKUP_BULK_MAX
32 
34 #define RTE_HASH_EXTRA_FLAGS_TRANS_MEM_SUPPORT 0x01
35 
37 #define RTE_HASH_EXTRA_FLAGS_MULTI_WRITER_ADD 0x02
38 
40 #define RTE_HASH_EXTRA_FLAGS_RW_CONCURRENCY 0x04
41 
43 #define RTE_HASH_EXTRA_FLAGS_EXT_TABLE 0x08
44 
50 #define RTE_HASH_EXTRA_FLAGS_NO_FREE_ON_DEL 0x10
51 
57 #define RTE_HASH_EXTRA_FLAGS_RW_CONCURRENCY_LF 0x20
58 
63 typedef uint32_t hash_sig_t;
64 
66 typedef uint32_t (*rte_hash_function)(const void *key, uint32_t key_len,
67  uint32_t init_val);
68 
70 typedef int (*rte_hash_cmp_eq_t)(const void *key1, const void *key2, size_t key_len);
71 
76  const char *name;
77  uint32_t entries;
78  uint32_t reserved;
79  uint32_t key_len;
81  uint32_t hash_func_init_val;
82  int socket_id;
83  uint8_t extra_flag;
84 };
85 
87 struct rte_hash;
88 
106 struct rte_hash *
107 rte_hash_create(const struct rte_hash_parameters *params);
108 
120 void rte_hash_set_cmp_func(struct rte_hash *h, rte_hash_cmp_eq_t func);
121 
132 struct rte_hash *
133 rte_hash_find_existing(const char *name);
134 
140 void
141 rte_hash_free(struct rte_hash *h);
142 
153 void
154 rte_hash_reset(struct rte_hash *h);
155 
164 int32_t
165 rte_hash_count(const struct rte_hash *h);
166 
190 int
191 rte_hash_add_key_data(const struct rte_hash *h, const void *key, void *data);
192 
219 int32_t
220 rte_hash_add_key_with_hash_data(const struct rte_hash *h, const void *key,
221  hash_sig_t sig, void *data);
222 
239 int32_t
240 rte_hash_add_key(const struct rte_hash *h, const void *key);
241 
261 int32_t
262 rte_hash_add_key_with_hash(const struct rte_hash *h, const void *key, hash_sig_t sig);
263 
290 int32_t
291 rte_hash_del_key(const struct rte_hash *h, const void *key);
292 
321 int32_t
322 rte_hash_del_key_with_hash(const struct rte_hash *h, const void *key, hash_sig_t sig);
323 
341 int
342 rte_hash_get_key_with_position(const struct rte_hash *h, const int32_t position,
343  void **key);
344 
369 __rte_experimental
370 int
372  const int32_t position);
373 
393 int
394 rte_hash_lookup_data(const struct rte_hash *h, const void *key, void **data);
395 
418 int
419 rte_hash_lookup_with_hash_data(const struct rte_hash *h, const void *key,
420  hash_sig_t sig, void **data);
421 
439 int32_t
440 rte_hash_lookup(const struct rte_hash *h, const void *key);
441 
461 int32_t
462 rte_hash_lookup_with_hash(const struct rte_hash *h,
463  const void *key, hash_sig_t sig);
464 
476 hash_sig_t
477 rte_hash_hash(const struct rte_hash *h, const void *key);
478 
498 int
499 rte_hash_lookup_bulk_data(const struct rte_hash *h, const void **keys,
500  uint32_t num_keys, uint64_t *hit_mask, void *data[]);
501 
523 int
524 rte_hash_lookup_bulk(const struct rte_hash *h, const void **keys,
525  uint32_t num_keys, int32_t *positions);
526 
546 int32_t
547 rte_hash_iterate(const struct rte_hash *h, const void **key, void **data, uint32_t *next);
548 #ifdef __cplusplus
549 }
550 #endif
551 
552 #endif /* _RTE_HASH_H_ */
uint32_t(* rte_hash_function)(const void *key, uint32_t key_len, uint32_t init_val)
Definition: rte_hash.h:66
int rte_hash_lookup_bulk(const struct rte_hash *h, const void **keys, uint32_t num_keys, int32_t *positions)
uint32_t key_len
Definition: rte_hash.h:79
int rte_hash_get_key_with_position(const struct rte_hash *h, const int32_t position, void **key)
int32_t rte_hash_lookup_with_hash(const struct rte_hash *h, const void *key, hash_sig_t sig)
int rte_hash_lookup_data(const struct rte_hash *h, const void *key, void **data)
struct rte_hash * rte_hash_create(const struct rte_hash_parameters *params)
int rte_hash_lookup_bulk_data(const struct rte_hash *h, const void **keys, uint32_t num_keys, uint64_t *hit_mask, void *data[])
hash_sig_t rte_hash_hash(const struct rte_hash *h, const void *key)
int32_t rte_hash_add_key_with_hash(const struct rte_hash *h, const void *key, hash_sig_t sig)
char name[RTE_HASH_NAMESIZE]
const char * name
Definition: rte_hash.h:76
uint32_t reserved
Definition: rte_hash.h:78
void rte_hash_reset(struct rte_hash *h)
int rte_hash_add_key_data(const struct rte_hash *h, const void *key, void *data)
void rte_hash_free(struct rte_hash *h)
int rte_hash_lookup_with_hash_data(const struct rte_hash *h, const void *key, hash_sig_t sig, void **data)
int32_t rte_hash_lookup(const struct rte_hash *h, const void *key)
int32_t rte_hash_add_key_with_hash_data(const struct rte_hash *h, const void *key, hash_sig_t sig, void *data)
int(* rte_hash_cmp_eq_t)(const void *key1, const void *key2, size_t key_len)
Definition: rte_hash.h:70
int32_t rte_hash_count(const struct rte_hash *h)
rte_hash_function hash_func
Definition: rte_hash.h:80
int32_t rte_hash_del_key_with_hash(const struct rte_hash *h, const void *key, hash_sig_t sig)
uint32_t entries
Definition: rte_hash.h:77
uint32_t hash_func_init_val
Definition: rte_hash.h:81
struct rte_hash * rte_hash_find_existing(const char *name)
int32_t rte_hash_add_key(const struct rte_hash *h, const void *key)
uint32_t hash_sig_t
Definition: rte_hash.h:63
int32_t rte_hash_del_key(const struct rte_hash *h, const void *key)
uint8_t extra_flag
Definition: rte_hash.h:83
void rte_hash_set_cmp_func(struct rte_hash *h, rte_hash_cmp_eq_t func)
int32_t rte_hash_iterate(const struct rte_hash *h, const void **key, void **data, uint32_t *next)
__rte_experimental int rte_hash_free_key_with_position(const struct rte_hash *h, const int32_t position)