2 * rcuja/rcuja-hashtable.c
4 * Userspace RCU library - RCU Judy Array Shadow Node Hash Table
6 * Copyright 2012-2013 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 #include <urcu/rcuja.h>
28 #include <urcu/compiler.h>
29 #include <urcu/arch.h>
31 #include <urcu-pointer.h>
35 #include "rcuja-internal.h"
37 static unsigned long hash_seed
;
41 * Source: http://burtleburtle.net/bob/c/lookup3.c
42 * Originally Public Domain
45 #define rot(x, k) (((x) << (k)) | ((x) >> (32 - (k))))
47 #define mix(a, b, c) \
49 a -= c; a ^= rot(c, 4); c += b; \
50 b -= a; b ^= rot(a, 6); a += c; \
51 c -= b; c ^= rot(b, 8); b += a; \
52 a -= c; a ^= rot(c, 16); c += b; \
53 b -= a; b ^= rot(a, 19); a += c; \
54 c -= b; c ^= rot(b, 4); b += a; \
57 #define final(a, b, c) \
59 c ^= b; c -= rot(b, 14); \
60 a ^= c; a -= rot(c, 11); \
61 b ^= a; b -= rot(a, 25); \
62 c ^= b; c -= rot(b, 16); \
63 a ^= c; a -= rot(c, 4);\
64 b ^= a; b -= rot(a, 14); \
65 c ^= b; c -= rot(b, 24); \
68 static inline __attribute__((unused
))
70 const uint32_t *k
, /* the key, an array of uint32_t values */
71 size_t length
, /* the length of the key, in uint32_ts */
72 uint32_t initval
) /* the previous hash, or an arbitrary value */
76 /* Set up the internal state */
77 a
= b
= c
= 0xdeadbeef + (((uint32_t) length
) << 2) + initval
;
79 /*----------------------------------------- handle most of the key */
89 /*----------------------------------- handle the last 3 uint32_t's */
90 switch (length
) { /* all the case statements fall through */
95 case 0: /* case 0: nothing left to add */
98 /*---------------------------------------------- report the result */
104 const uint32_t *k
, /* the key, an array of uint32_t values */
105 size_t length
, /* the length of the key, in uint32_ts */
106 uint32_t *pc
, /* IN: seed OUT: primary hash value */
107 uint32_t *pb
) /* IN: more seed OUT: secondary hash value */
111 /* Set up the internal state */
112 a
= b
= c
= 0xdeadbeef + ((uint32_t) (length
<< 2)) + *pc
;
115 /*----------------------------------------- handle most of the key */
125 /*----------------------------------- handle the last 3 uint32_t's */
126 switch (length
) { /* all the case statements fall through */
131 case 0: /* case 0: nothing left to add */
134 /*---------------------------------------------- report the result */
139 #if (CAA_BITS_PER_LONG == 32)
141 unsigned long hash_pointer(const void *_key
, unsigned long seed
)
143 unsigned int key
= (unsigned int) _key
;
145 return hash_u32(&key
, 1, seed
);
149 unsigned long hash_pointer(const void *_key
, unsigned long seed
)
160 v
.v64
= (uint64_t) seed
;
161 key
.v64
= (uint64_t) _key
;
162 hashword2(key
.v32
, 2, &v
.v32
[0], &v
.v32
[1]);
168 int match_pointer(struct cds_lfht_node
*node
, const void *key
)
170 struct cds_ja_shadow_node
*shadow
=
171 caa_container_of(node
, struct cds_ja_shadow_node
, ht_node
);
173 return (key
== shadow
->node_flag
);
176 __attribute__((visibility("protected")))
177 struct cds_ja_shadow_node
*rcuja_shadow_lookup_lock(struct cds_lfht
*ht
,
178 struct cds_ja_inode_flag
*node_flag
)
180 struct cds_lfht_iter iter
;
181 struct cds_lfht_node
*lookup_node
;
182 struct cds_ja_shadow_node
*shadow_node
;
183 const struct rcu_flavor_struct
*flavor
;
186 flavor
= cds_lfht_rcu_flavor(ht
);
188 cds_lfht_lookup(ht
, hash_pointer(node_flag
, hash_seed
),
189 match_pointer
, node_flag
, &iter
);
191 lookup_node
= cds_lfht_iter_get_node(&iter
);
196 shadow_node
= caa_container_of(lookup_node
,
197 struct cds_ja_shadow_node
, ht_node
);
198 dbg_printf("Lock %p\n", shadow_node
->lock
);
199 ret
= pthread_mutex_lock(shadow_node
->lock
);
201 if (cds_lfht_is_node_deleted(lookup_node
)) {
202 ret
= pthread_mutex_unlock(shadow_node
->lock
);
207 flavor
->read_unlock();
211 __attribute__((visibility("protected")))
212 void rcuja_shadow_unlock(struct cds_ja_shadow_node
*shadow_node
)
216 dbg_printf("Unlock %p\n", shadow_node
->lock
);
217 ret
= pthread_mutex_unlock(shadow_node
->lock
);
221 __attribute__((visibility("protected")))
222 struct cds_ja_shadow_node
*rcuja_shadow_set(struct cds_lfht
*ht
,
223 struct cds_ja_inode_flag
*new_node_flag
,
224 struct cds_ja_shadow_node
*inherit_from
,
225 struct cds_ja
*ja
, int level
)
227 struct cds_ja_shadow_node
*shadow_node
;
228 struct cds_lfht_node
*ret_node
;
229 const struct rcu_flavor_struct
*flavor
;
231 shadow_node
= calloc(sizeof(*shadow_node
), 1);
235 shadow_node
->node_flag
= new_node_flag
;
236 shadow_node
->ja
= ja
;
238 * Lock can be inherited from previous node at this position.
241 shadow_node
->lock
= inherit_from
->lock
;
242 shadow_node
->level
= inherit_from
->level
;
244 shadow_node
->lock
= calloc(sizeof(*shadow_node
->lock
), 1);
245 if (!shadow_node
->lock
) {
249 pthread_mutex_init(shadow_node
->lock
, NULL
);
250 shadow_node
->level
= level
;
253 flavor
= cds_lfht_rcu_flavor(ht
);
255 ret_node
= cds_lfht_add_unique(ht
,
256 hash_pointer(new_node_flag
, hash_seed
),
259 &shadow_node
->ht_node
);
260 flavor
->read_unlock();
262 if (ret_node
!= &shadow_node
->ht_node
) {
270 void free_shadow_node(struct rcu_head
*head
)
272 struct cds_ja_shadow_node
*shadow_node
=
273 caa_container_of(head
, struct cds_ja_shadow_node
, head
);
278 void free_shadow_node_and_node(struct rcu_head
*head
)
280 struct cds_ja_shadow_node
*shadow_node
=
281 caa_container_of(head
, struct cds_ja_shadow_node
, head
);
282 free_cds_ja_node(shadow_node
->ja
, ja_node_ptr(shadow_node
->node_flag
));
287 void free_shadow_node_and_lock(struct rcu_head
*head
)
289 struct cds_ja_shadow_node
*shadow_node
=
290 caa_container_of(head
, struct cds_ja_shadow_node
, head
);
291 free(shadow_node
->lock
);
296 void free_shadow_node_and_node_and_lock(struct rcu_head
*head
)
298 struct cds_ja_shadow_node
*shadow_node
=
299 caa_container_of(head
, struct cds_ja_shadow_node
, head
);
300 assert(shadow_node
->level
);
301 free_cds_ja_node(shadow_node
->ja
, ja_node_ptr(shadow_node
->node_flag
));
302 free(shadow_node
->lock
);
306 __attribute__((visibility("protected")))
307 int rcuja_shadow_clear(struct cds_lfht
*ht
,
308 struct cds_ja_inode_flag
*node_flag
,
309 struct cds_ja_shadow_node
*shadow_node
,
312 struct cds_lfht_iter iter
;
313 struct cds_lfht_node
*lookup_node
;
314 const struct rcu_flavor_struct
*flavor
;
316 int lookup_shadow
= 0;
318 flavor
= cds_lfht_rcu_flavor(ht
);
321 cds_lfht_lookup(ht
, hash_pointer(node_flag
, hash_seed
),
322 match_pointer
, node_flag
, &iter
);
323 lookup_node
= cds_lfht_iter_get_node(&iter
);
330 shadow_node
= caa_container_of(lookup_node
,
331 struct cds_ja_shadow_node
, ht_node
);
332 lockret
= pthread_mutex_lock(shadow_node
->lock
);
338 * Holding the mutex across deletion, and by also re-checking if
339 * the node is deleted with mutex held at lookup ensure that we
340 * don't let RCU JA use a node being removed.
342 ret
= cds_lfht_del(ht
, lookup_node
);
345 if ((flags
& RCUJA_SHADOW_CLEAR_FREE_NODE
)
346 && shadow_node
->level
) {
347 if (flags
& RCUJA_SHADOW_CLEAR_FREE_LOCK
) {
348 flavor
->update_call_rcu(&shadow_node
->head
,
349 free_shadow_node_and_node_and_lock
);
351 flavor
->update_call_rcu(&shadow_node
->head
,
352 free_shadow_node_and_node
);
355 if (flags
& RCUJA_SHADOW_CLEAR_FREE_LOCK
) {
356 flavor
->update_call_rcu(&shadow_node
->head
,
357 free_shadow_node_and_lock
);
359 flavor
->update_call_rcu(&shadow_node
->head
,
365 lockret
= pthread_mutex_unlock(shadow_node
->lock
);
369 flavor
->read_unlock();
375 * Delete all shadow nodes and nodes from hash table, along with their
378 __attribute__((visibility("protected")))
379 void rcuja_shadow_prune(struct cds_lfht
*ht
,
382 const struct rcu_flavor_struct
*flavor
;
383 struct cds_ja_shadow_node
*shadow_node
;
384 struct cds_lfht_iter iter
;
387 flavor
= cds_lfht_rcu_flavor(ht
);
389 * Read-side lock is needed to ensure hash table node existence
390 * vs concurrent resize.
393 cds_lfht_for_each_entry(ht
, &iter
, shadow_node
, ht_node
) {
394 lockret
= pthread_mutex_lock(shadow_node
->lock
);
397 ret
= cds_lfht_del(ht
, &shadow_node
->ht_node
);
400 if ((flags
& RCUJA_SHADOW_CLEAR_FREE_NODE
)
401 && shadow_node
->level
) {
402 if (flags
& RCUJA_SHADOW_CLEAR_FREE_LOCK
) {
403 flavor
->update_call_rcu(&shadow_node
->head
,
404 free_shadow_node_and_node_and_lock
);
406 flavor
->update_call_rcu(&shadow_node
->head
,
407 free_shadow_node_and_node
);
410 if (flags
& RCUJA_SHADOW_CLEAR_FREE_LOCK
) {
411 flavor
->update_call_rcu(&shadow_node
->head
,
412 free_shadow_node_and_lock
);
414 flavor
->update_call_rcu(&shadow_node
->head
,
419 lockret
= pthread_mutex_unlock(shadow_node
->lock
);
422 flavor
->read_unlock();
425 __attribute__((visibility("protected")))
426 struct cds_lfht
*rcuja_create_ht(const struct rcu_flavor_struct
*flavor
)
428 return _cds_lfht_new(1, 1, 0,
429 CDS_LFHT_AUTO_RESIZE
| CDS_LFHT_ACCOUNTING
,
433 __attribute__((visibility("protected")))
434 int rcuja_delete_ht(struct cds_lfht
*ht
)
436 return cds_lfht_destroy(ht
, NULL
);
439 __attribute__((constructor
))
440 void rcuja_ht_init(void)
442 hash_seed
= (unsigned long) time(NULL
);