1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
5 #include <sys/sysmacros.h>
7 #include "hash-funcs.h"
12 void string_hash_func(const char *p
, struct siphash
*state
) {
13 siphash24_compress(p
, strlen(p
) + 1, state
);
16 DEFINE_HASH_OPS(string_hash_ops
,
17 char, string_hash_func
, string_compare_func
);
18 DEFINE_HASH_OPS_WITH_KEY_DESTRUCTOR(
20 char, string_hash_func
, string_compare_func
, free
);
21 DEFINE_HASH_OPS_WITH_VALUE_DESTRUCTOR(
22 string_hash_ops_value_free
,
23 char, string_hash_func
, string_compare_func
,
26 string_hash_ops_free_free
,
27 char, string_hash_func
, string_compare_func
, free
,
30 string_hash_ops_free_strv_free
,
31 char, string_hash_func
, string_compare_func
, free
,
34 void path_hash_func(const char *q
, struct siphash
*state
) {
35 bool add_slash
= false;
40 /* Calculates a hash for a path in a way this duplicate inner slashes don't make a differences, and also
41 * whether there's a trailing slash or not. This fits well with the semantics of path_compare(), which does
42 * similar checks and also doesn't care for trailing slashes. Note that relative and absolute paths (i.e. those
43 * which begin in a slash or not) will hash differently though. */
45 /* if path is absolute, add one "/" to the hash. */
46 if (path_is_absolute(q
))
47 siphash24_compress_byte('/', state
);
53 r
= path_find_first_component(&q
, true, &e
);
58 siphash24_compress_byte('/', state
);
61 /* if a component is invalid, then add remaining part as a string. */
62 string_hash_func(q
, state
);
66 /* Add this component to the hash. */
67 siphash24_compress(e
, r
, state
);
73 DEFINE_HASH_OPS(path_hash_ops
,
74 char, path_hash_func
, path_compare
);
75 DEFINE_HASH_OPS_WITH_KEY_DESTRUCTOR(
77 char, path_hash_func
, path_compare
, free
);
79 path_hash_ops_free_free
,
80 char, path_hash_func
, path_compare
, free
,
83 void trivial_hash_func(const void *p
, struct siphash
*state
) {
84 siphash24_compress_typesafe(p
, state
);
87 int trivial_compare_func(const void *a
, const void *b
) {
91 DEFINE_HASH_OPS(trivial_hash_ops
,
92 void, trivial_hash_func
, trivial_compare_func
);
93 DEFINE_HASH_OPS_WITH_KEY_DESTRUCTOR(
94 trivial_hash_ops_free
,
95 void, trivial_hash_func
, trivial_compare_func
, free
);
96 DEFINE_HASH_OPS_WITH_VALUE_DESTRUCTOR(
97 trivial_hash_ops_value_free
,
98 void, trivial_hash_func
, trivial_compare_func
,
100 DEFINE_HASH_OPS_FULL(
101 trivial_hash_ops_free_free
,
102 void, trivial_hash_func
, trivial_compare_func
, free
,
105 void uint64_hash_func(const uint64_t *p
, struct siphash
*state
) {
106 siphash24_compress_typesafe(*p
, state
);
109 int uint64_compare_func(const uint64_t *a
, const uint64_t *b
) {
113 DEFINE_HASH_OPS(uint64_hash_ops
,
114 uint64_t, uint64_hash_func
, uint64_compare_func
);
115 DEFINE_HASH_OPS_WITH_VALUE_DESTRUCTOR(
116 uint64_hash_ops_value_free
,
117 uint64_t, uint64_hash_func
, uint64_compare_func
,
120 #if SIZEOF_DEV_T != 8
121 void devt_hash_func(const dev_t
*p
, struct siphash
*state
) {
122 siphash24_compress_typesafe(*p
, state
);
126 int devt_compare_func(const dev_t
*a
, const dev_t
*b
) {
129 r
= CMP(major(*a
), major(*b
));
133 return CMP(minor(*a
), minor(*b
));
136 DEFINE_HASH_OPS(devt_hash_ops
, dev_t
, devt_hash_func
, devt_compare_func
);