-
Notifications
You must be signed in to change notification settings - Fork 77
/
hash.c
229 lines (197 loc) · 6.05 KB
/
hash.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/*
* s3backer - FUSE-based single file backing store via Amazon S3
*
* Copyright 2008-2023 Archie L. Cobbs <archie.cobbs@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations including
* the two.
*
* You must obey the GNU General Public License in all respects for all
* of the code used other than OpenSSL. If you modify file(s) with this
* exception, you may extend this exception to your version of the
* file(s), but you are not obligated to do so. If you do not wish to do
* so, delete this exception statement from your version. If you delete
* this exception statement from all source files in the program, then
* also delete it here.
*/
/*
* This is a simple closed hash table implementation with linear probing.
* We pre-allocate the hash array based on the expected maximum size.
*/
#include "s3backer.h"
#include "hash.h"
// Definitions
#define LOAD_FACTOR 0.666666
#define FIRST(hash, key) (s3b_hash_index((hash), (key)))
#define NEXT(hash, index) ((index) + 1 < (hash)->alen ? (index) + 1 : 0)
#define EMPTY(value) ((value) == NULL)
#define VALUE(hash, index) ((hash)->array[(index)])
#define KEY(value) (*(s3b_block_t *)(value))
// Hash table structure
struct s3b_hash {
u_int maxkeys; // max capacity
u_int numkeys; // number of keys in table
u_int alen; // hash array length
void *array[0]; // hash array
};
// Declarations
static u_int s3b_hash_index(struct s3b_hash *hash, s3b_block_t key);
// Public functions
int
s3b_hash_create(struct s3b_hash **hashp, u_int maxkeys)
{
struct s3b_hash *hash;
u_int alen;
if (maxkeys >= (u_int)(UINT_MAX * LOAD_FACTOR) - 1)
return EINVAL;
alen = (u_int)(maxkeys / LOAD_FACTOR) + 1;
if ((hash = calloc(1, sizeof(*hash) + alen * sizeof(*hash->array))) == NULL)
return ENOMEM;
hash->maxkeys = maxkeys;
hash->alen = alen;
*hashp = hash;
return 0;
}
void
s3b_hash_destroy(struct s3b_hash *hash)
{
free(hash);
}
u_int
s3b_hash_size(struct s3b_hash *hash)
{
return hash->numkeys;
}
void *
s3b_hash_get(struct s3b_hash *hash, s3b_block_t key)
{
u_int i;
for (i = FIRST(hash, key); 1; i = NEXT(hash, i)) {
void *const value = VALUE(hash, i);
if (EMPTY(value))
return NULL;
if (KEY(value) == key)
return value;
}
}
/*
* Add/replace entry.
*
* Note that the value being replaced (if any) is referenced by this function,
* so it should not be free'd until after this function returns.
*/
void *
s3b_hash_put(struct s3b_hash *hash, void *value)
{
const s3b_block_t key = KEY(value);
u_int i;
for (i = FIRST(hash, key); 1; i = NEXT(hash, i)) {
void *const value2 = VALUE(hash, i);
if (EMPTY(value))
break;
if (KEY(value2) == key) {
VALUE(hash, i) = value; // replace existing value having the same key with new value
return value2;
}
}
assert(hash->numkeys < hash->maxkeys);
VALUE(hash, i) = value;
hash->numkeys++;
return NULL;
}
/*
* Optimization of s3b_hash_put() for when it is known that no matching entry exists.
*/
void
s3b_hash_put_new(struct s3b_hash *hash, void *value)
{
const s3b_block_t key = KEY(value);
u_int i;
for (i = FIRST(hash, key); 1; i = NEXT(hash, i)) {
void *const value2 = VALUE(hash, i);
if (EMPTY(value2))
break;
assert(KEY(value2) != key);
}
assert(hash->numkeys < hash->maxkeys);
VALUE(hash, i) = value;
hash->numkeys++;
}
void
s3b_hash_remove(struct s3b_hash *hash, s3b_block_t key)
{
u_int i;
u_int j;
u_int k;
// Find entry
for (i = FIRST(hash, key); 1; i = NEXT(hash, i)) {
void *const value = VALUE(hash, i);
if (EMPTY(value)) // no such entry
return;
if (KEY(value) == key) // entry found
break;
}
// Repair subsequent entries as necessary
for (j = NEXT(hash, i); 1; j = NEXT(hash, j)) {
void *const value = VALUE(hash, j);
if (value == NULL)
break;
k = FIRST(hash, KEY(value));
if (j > i ? (k <= i || k > j) : (k <= i && k > j)) {
VALUE(hash, i) = value;
i = j;
}
}
// Remove entry
assert(VALUE(hash, i) != NULL);
VALUE(hash, i) = NULL;
hash->numkeys--;
}
int
s3b_hash_foreach(struct s3b_hash *hash, s3b_hash_visit_t *visitor, void *arg)
{
u_int i;
for (i = 0; i < hash->alen; i++) {
void *const value = VALUE(hash, i);
int r;
if (value != NULL && (r = (*visitor)(arg, value)) != 0)
return r;
}
return 0;
}
/*
* Jenkins one-at-a-time hash
*/
static u_int
s3b_hash_index(struct s3b_hash *hash, s3b_block_t key)
{
u_int value = 0;
int i;
for (i = 0; i < sizeof(key); i++) {
value += ((u_char *)&key)[i];
value += (value << 10);
value ^= (value >> 6);
}
value += (value << 3);
value ^= (value >> 11);
value += (value << 15);
return value % hash->alen;
}