]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/hash-funcs.h
util: introduce memcmp_safe()
[thirdparty/systemd.git] / src / basic / hash-funcs.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
758dd67e
LP
2#pragma once
3
758dd67e
LP
4#include "macro.h"
5#include "siphash24.h"
6
7typedef void (*hash_func_t)(const void *p, struct siphash *state);
8typedef int (*compare_func_t)(const void *a, const void *b);
9
10struct hash_ops {
11 hash_func_t hash;
12 compare_func_t compare;
13};
14
15void string_hash_func(const void *p, struct siphash *state);
16int string_compare_func(const void *a, const void *b) _pure_;
17extern const struct hash_ops string_hash_ops;
18
46e16b34
LP
19void path_hash_func(const void *p, struct siphash *state);
20int path_compare_func(const void *a, const void *b) _pure_;
21extern const struct hash_ops path_hash_ops;
22
23/* This will compare the passed pointers directly, and will not dereference them. This is hence not useful for strings
24 * or suchlike. */
758dd67e
LP
25void trivial_hash_func(const void *p, struct siphash *state);
26int trivial_compare_func(const void *a, const void *b) _const_;
27extern const struct hash_ops trivial_hash_ops;
28
9bac7d42
LP
29/* 32bit values we can always just embed in the pointer itself, but in order to support 32bit archs we need store 64bit
30 * values indirectly, since they don't fit in a pointer. */
758dd67e
LP
31void uint64_hash_func(const void *p, struct siphash *state);
32int uint64_compare_func(const void *a, const void *b) _pure_;
33extern const struct hash_ops uint64_hash_ops;
34
9bac7d42
LP
35/* On some archs dev_t is 32bit, and on others 64bit. And sometimes it's 64bit on 32bit archs, and sometimes 32bit on
36 * 64bit archs. Yuck! */
758dd67e
LP
37#if SIZEOF_DEV_T != 8
38void devt_hash_func(const void *p, struct siphash *state) _pure_;
39int devt_compare_func(const void *a, const void *b) _pure_;
9bac7d42 40extern const struct hash_ops devt_hash_ops;
758dd67e
LP
41#else
42#define devt_hash_func uint64_hash_func
43#define devt_compare_func uint64_compare_func
44#define devt_hash_ops uint64_hash_ops
45#endif