![]() |
Wireshark 4.7.0
The Wireshark network protocol analyzer
|
Typedefs | |
typedef struct _wmem_map_t | wmem_map_t |
Functions | |
WS_DLL_PUBLIC wmem_map_t * | wmem_map_new (wmem_allocator_t *allocator, GHashFunc hash_func, GEqualFunc eql_func) G_GNUC_MALLOC |
Creates a map with the given allocator scope. | |
WS_DLL_PUBLIC wmem_map_t * | wmem_map_new_autoreset (wmem_allocator_t *metadata_scope, wmem_allocator_t *data_scope, GHashFunc hash_func, GEqualFunc eql_func) G_GNUC_MALLOC |
Creates a map with two allocator scopes. | |
WS_DLL_PUBLIC void * | wmem_map_insert (wmem_map_t *map, const void *key, void *value) |
Inserts a value into the map. | |
WS_DLL_PUBLIC bool | wmem_map_contains (const wmem_map_t *map, const void *key) |
Check if a value is in the map. | |
WS_DLL_PUBLIC void * | wmem_map_lookup (const wmem_map_t *map, const void *key) |
Lookup a value in the map. | |
WS_DLL_PUBLIC bool | wmem_map_lookup_extended (const wmem_map_t *map, const void *key, const void **orig_key, void **value) |
Lookup a value in the map, returning the key, value, and a boolean which is true if the key is found. | |
WS_DLL_PUBLIC void * | wmem_map_remove (wmem_map_t *map, const void *key) |
Remove a value from the map. If no value is stored at that key, nothing happens. | |
WS_DLL_PUBLIC bool | wmem_map_steal (wmem_map_t *map, const void *key) |
Remove a key and value from the map but does not destroy (free) them. If no value is stored at that key, nothing happens. | |
WS_DLL_PUBLIC wmem_list_t * | wmem_map_get_keys (wmem_allocator_t *list_allocator, const wmem_map_t *map) |
Retrieves a list of keys inside the map. | |
WS_DLL_PUBLIC void | wmem_map_foreach (const wmem_map_t *map, GHFunc foreach_func, void *user_data) |
Run a function against all key/value pairs in the map. | |
WS_DLL_PUBLIC unsigned | wmem_map_foreach_remove (wmem_map_t *map, GHRFunc foreach_func, void *user_data) |
Run a function against all key/value pairs in the map. If the function returns true, then the key/value pair is removed from the map. | |
WS_DLL_PUBLIC void * | wmem_map_find (const wmem_map_t *map, GHRFunc foreach_func, void *user_data) |
Run a function against all key/value pairs in the map until the function returns true, at which point the value of matching pair is returned. If no pair that matches the function is found, NULL is returned. The order of the calls is unpredictable, since it is based on the internal storage of data. | |
WS_DLL_PUBLIC unsigned | wmem_map_size (const wmem_map_t *map) |
Return the number of elements in the map. | |
WS_DLL_PUBLIC size_t | wmem_map_reserve (wmem_map_t *map, uint64_t capacity) |
Ensure that a certain number of elements can be stored in the wmem_map without having to grow the internal table. | |
WS_DLL_PUBLIC void | wmem_map_destroy (wmem_map_t *map, bool free_keys, bool free_values) |
Cleanup memory used by the map instead of waiting for the allocator pool to be freed or destroyed. | |
WS_DLL_PUBLIC uint32_t | wmem_strong_hash (const uint8_t *buf, const size_t len) |
Compute a strong hash value for an arbitrary sequence of bytes. | |
WS_DLL_PUBLIC unsigned | wmem_str_hash (const void *key) |
Secure hash function for string keys using wmem_strong_hash. | |
WS_DLL_PUBLIC unsigned | wmem_int64_hash (const void *key) |
Secure hash function for 64-bit integer keys using wmem_strong_hash. | |
WS_DLL_PUBLIC unsigned | wmem_double_hash (const void *key) |
Secure hash function for double-precision floating-point keys using wmem_strong_hash. | |
A hash map implementation on top of wmem. Provides insertion, deletion and lookup in expected amortized constant time. Uses universal hashing to map keys into buckets, and provides a generic strong hash function that makes it secure against algorithmic complexity attacks, and suitable for use even with untrusted data.
WS_DLL_PUBLIC unsigned wmem_double_hash | ( | const void * | key | ) |
Secure hash function for double-precision floating-point keys using wmem_strong_hash.
This function computes a strong, randomized hash of the input double key using wmem_strong_hash
, which incorporates internal seeding for better resistance against hash collision attacks.
Prefer this over g_double_hash
when the input data may come from untrusted sources, such as network traffic, external files, or user input.
key | Pointer to a double value to hash. |
WS_DLL_PUBLIC unsigned wmem_int64_hash | ( | const void * | key | ) |
Secure hash function for 64-bit integer keys using wmem_strong_hash.
This function computes a strong, randomized hash of the input integer key using wmem_strong_hash
, which incorporates internal seeding for better resistance against hash collision attacks.
Prefer this over g_int64_hash
when the input data may come from untrusted sources, such as external files, network traffic, or user input.
key | Pointer to a 64-bit integer (gint64 ) to hash. |
WS_DLL_PUBLIC bool wmem_map_contains | ( | const wmem_map_t * | map, |
const void * | key | ||
) |
Check if a value is in the map.
map | The map to search in. May be NULL. |
key | The key to lookup. |
WS_DLL_PUBLIC void wmem_map_destroy | ( | wmem_map_t * | map, |
bool | free_keys, | ||
bool | free_values | ||
) |
Cleanup memory used by the map instead of waiting for the allocator pool to be freed or destroyed.
Do NOT simply call wmem_free on a wmem_map_t.
map | The map to use |
free_keys | Whether to free the keys as well |
free_values | Whether to free the keys as well |
WS_DLL_PUBLIC void * wmem_map_find | ( | const wmem_map_t * | map, |
GHRFunc | foreach_func, | ||
void * | user_data | ||
) |
Run a function against all key/value pairs in the map until the function returns true, at which point the value of matching pair is returned. If no pair that matches the function is found, NULL is returned. The order of the calls is unpredictable, since it is based on the internal storage of data.
map | The map to use. May be NULL. |
foreach_func | the function to call for each key/value pair |
user_data | user data to pass to the function |
WS_DLL_PUBLIC void wmem_map_foreach | ( | const wmem_map_t * | map, |
GHFunc | foreach_func, | ||
void * | user_data | ||
) |
Run a function against all key/value pairs in the map.
The order of the calls is unpredictable, since it is based on the internal storage of data.
map | The map to use. May be NULL. |
foreach_func | the function to call for each key/value pair |
user_data | user data to pass to the function |
WS_DLL_PUBLIC unsigned wmem_map_foreach_remove | ( | wmem_map_t * | map, |
GHRFunc | foreach_func, | ||
void * | user_data | ||
) |
Run a function against all key/value pairs in the map. If the function returns true, then the key/value pair is removed from the map.
The order of the calls is unpredictable, since it is based on the internal storage of data.
map | The map to use. May be NULL. |
foreach_func | the function to call for each key/value pair |
user_data | user data to pass to the function |
WS_DLL_PUBLIC wmem_list_t * wmem_map_get_keys | ( | wmem_allocator_t * | list_allocator, |
const wmem_map_t * | map | ||
) |
Retrieves a list of keys inside the map.
list_allocator | The allocator scope for the returned list. |
map | The map to extract keys from |
WS_DLL_PUBLIC void * wmem_map_insert | ( | wmem_map_t * | map, |
const void * | key, | ||
void * | value | ||
) |
Inserts a value into the map.
map | The map to insert into. Must not be NULL. |
key | The key to insert by. |
value | The value to insert. |
WS_DLL_PUBLIC void * wmem_map_lookup | ( | const wmem_map_t * | map, |
const void * | key | ||
) |
Lookup a value in the map.
map | The map to search in. May be NULL. |
key | The key to lookup. |
WS_DLL_PUBLIC bool wmem_map_lookup_extended | ( | const wmem_map_t * | map, |
const void * | key, | ||
const void ** | orig_key, | ||
void ** | value | ||
) |
Lookup a value in the map, returning the key, value, and a boolean which is true if the key is found.
map | The map to search in. May be NULL. |
key | The key to lookup. |
orig_key | (optional) The key that was determined to be a match, if any. |
value | (optional) The value stored at the key, if any. |
WS_DLL_PUBLIC wmem_map_t * wmem_map_new | ( | wmem_allocator_t * | allocator, |
GHashFunc | hash_func, | ||
GEqualFunc | eql_func | ||
) |
Creates a map with the given allocator scope.
Creates a map with the given allocator scope. When the scope is emptied, the map is fully destroyed. Items stored in it will not be freed unless they were allocated from the same scope. For details on the GHashFunc and GEqualFunc parameters, see the glib documentation at: https://docs.gtk.org/glib/struct.HashTable.html
If the keys are coming from untrusted data, do not use glib's default hash functions for strings, int64s or doubles. Wmem provides stronger equivalents below. Feel free to use the g_direct_hash, g_int_hash, and any of the g_*_equal functions though, as they should be safe.
allocator | The allocator scope with which to create the map. |
hash_func | The hash function used to place inserted keys. |
eql_func | The equality function used to compare inserted keys. |
WS_DLL_PUBLIC wmem_map_t * wmem_map_new_autoreset | ( | wmem_allocator_t * | metadata_scope, |
wmem_allocator_t * | data_scope, | ||
GHashFunc | hash_func, | ||
GEqualFunc | eql_func | ||
) |
Creates a map with two allocator scopes.
The base structure lives in the metadata scope, and the map data lives in the data scope. Every time free_all occurs in the data scope the map is transparently emptied without affecting the location of the base / metadata structure.
WARNING: None of the map (even the part in the metadata scope) can be used after the data scope has been destroyed.
The primary use for this function is to create maps that reset for each new capture file that is loaded. This can be done by specifying wmem_epan_scope() as the metadata scope and wmem_file_scope() as the data scope.
WS_DLL_PUBLIC void * wmem_map_remove | ( | wmem_map_t * | map, |
const void * | key | ||
) |
Remove a value from the map. If no value is stored at that key, nothing happens.
map | The map to remove from. May be NULL. |
key | The key of the value to remove. |
WS_DLL_PUBLIC size_t wmem_map_reserve | ( | wmem_map_t * | map, |
uint64_t | capacity | ||
) |
Ensure that a certain number of elements can be stored in the wmem_map without having to grow the internal table.
This can be useful if a very large number of elements need to be inserted. It preallocates a certain number of buckets and avoids automatic reallocation and copies as the map grows.
map | The map to use |
WS_DLL_PUBLIC unsigned wmem_map_size | ( | const wmem_map_t * | map | ) |
Return the number of elements in the map.
map | The map to use |
WS_DLL_PUBLIC bool wmem_map_steal | ( | wmem_map_t * | map, |
const void * | key | ||
) |
Remove a key and value from the map but does not destroy (free) them. If no value is stored at that key, nothing happens.
map | The map to remove from. May be NULL. |
key | The key of the value to remove. |
WS_DLL_PUBLIC unsigned wmem_str_hash | ( | const void * | key | ) |
Secure hash function for string keys using wmem_strong_hash.
This function computes a strong, randomized hash of the input string key using wmem_strong_hash
, which incorporates internal seeding for better resistance against hash collision attacks.
Prefer this over g_str_hash
when the input data may come from untrusted sources, such as network packets or user input.
key | Pointer to a null-terminated string to hash. |
WS_DLL_PUBLIC uint32_t wmem_strong_hash | ( | const uint8_t * | buf, |
const size_t | len | ||
) |
Compute a strong hash value for an arbitrary sequence of bytes.
Use of this hash value should be secure against algorithmic complexity attacks, even for short keys. The computation uses a random seed which is generated on wmem initialization, so the same key will hash to different values on different runs of the application.
buf | The buffer of bytes (does not have to be aligned). |
len | The length of buf to use for the hash computation. |