2 * util/storage/slabhash.c - hashtable consisting of several smaller tables.
4 * Copyright (c) 2007, NLnet Labs. All rights reserved.
6 * This software is open source.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
15 * Redistributions in binary form must reproduce the above copyright notice,
16 * this list of conditions and the following disclaimer in the documentation
17 * and/or other materials provided with the distribution.
19 * Neither the name of the NLNET LABS nor the names of its contributors may
20 * be used to endorse or promote products derived from this software without
21 * specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
29 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
30 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 * Implementation of hash table that consists of smaller hash tables.
40 * This results in a partitioned lruhash table.
41 * It cannot grow, but that gives it the ability to have multiple
42 * locks. Also this means there are multiple LRU lists.
46 #include "util/storage/slabhash.h"
48 struct slabhash
* slabhash_create(size_t numtables
, size_t start_size
,
49 size_t maxmem
, lruhash_sizefunc_t sizefunc
,
50 lruhash_compfunc_t compfunc
, lruhash_delkeyfunc_t delkeyfunc
,
51 lruhash_deldatafunc_t deldatafunc
, void* arg
)
54 struct slabhash
* sl
= (struct slabhash
*)calloc(1,
55 sizeof(struct slabhash
));
58 log_assert(sl
->size
> 0);
59 sl
->array
= (struct lruhash
**)calloc(sl
->size
, sizeof(struct lruhash
*));
64 sl
->mask
= (uint32_t)(sl
->size
- 1);
68 log_assert( (sl
->size
& sl
->mask
) == 0
69 /* size must be power of 2 */ );
71 while(!(sl
->mask
& 0x80000000)) {
76 for(i
=0; i
<sl
->size
; i
++) {
77 sl
->array
[i
] = lruhash_create(start_size
, maxmem
/ sl
->size
,
78 sizefunc
, compfunc
, delkeyfunc
, deldatafunc
, arg
);
87 void slabhash_delete(struct slabhash
* sl
)
93 for(i
=0; i
<sl
->size
; i
++)
94 lruhash_delete(sl
->array
[i
]);
100 void slabhash_clear(struct slabhash
* sl
)
105 for(i
=0; i
<sl
->size
; i
++)
106 lruhash_clear(sl
->array
[i
]);
109 /** helper routine to calculate the slabhash index */
111 slab_idx(struct slabhash
* sl
, hashvalue_t hash
)
113 return ((hash
& sl
->mask
) >> sl
->shift
);
116 void slabhash_insert(struct slabhash
* sl
, hashvalue_t hash
,
117 struct lruhash_entry
* entry
, void* data
, void* arg
)
119 lruhash_insert(sl
->array
[slab_idx(sl
, hash
)], hash
, entry
, data
, arg
);
122 struct lruhash_entry
* slabhash_lookup(struct slabhash
* sl
,
123 hashvalue_t hash
, void* key
, int wr
)
125 return lruhash_lookup(sl
->array
[slab_idx(sl
, hash
)], hash
, key
, wr
);
128 void slabhash_remove(struct slabhash
* sl
, hashvalue_t hash
, void* key
)
130 lruhash_remove(sl
->array
[slab_idx(sl
, hash
)], hash
, key
);
133 void slabhash_status(struct slabhash
* sl
, const char* id
, int extended
)
137 log_info("Slabhash %s: %u tables mask=%x shift=%d",
138 id
, (unsigned)sl
->size
, (unsigned)sl
->mask
, sl
->shift
);
139 for(i
=0; i
<sl
->size
; i
++) {
140 snprintf(num
, sizeof(num
), "table %u", (unsigned)i
);
141 lruhash_status(sl
->array
[i
], num
, extended
);
145 size_t slabhash_get_size(struct slabhash
* sl
)
148 for(i
=0; i
<sl
->size
; i
++) {
149 lock_quick_lock(&sl
->array
[i
]->lock
);
150 total
+= sl
->array
[i
]->space_max
;
151 lock_quick_unlock(&sl
->array
[i
]->lock
);
156 size_t slabhash_get_mem(struct slabhash
* sl
)
158 size_t i
, total
= sizeof(*sl
);
159 total
+= sizeof(struct lruhash
*)*sl
->size
;
160 for(i
=0; i
<sl
->size
; i
++) {
161 total
+= lruhash_get_mem(sl
->array
[i
]);
166 struct lruhash
* slabhash_gettable(struct slabhash
* sl
, hashvalue_t hash
)
168 return sl
->array
[slab_idx(sl
, hash
)];
171 /* test code, here to avoid linking problems with fptr_wlist */
173 static void delkey(struct slabhash_testkey
* k
) {
174 lock_rw_destroy(&k
->entry
.lock
); free(k
);}
176 static void deldata(struct slabhash_testdata
* d
) {free(d
);}
178 size_t test_slabhash_sizefunc(void* ATTR_UNUSED(key
), void* ATTR_UNUSED(data
))
180 return sizeof(struct slabhash_testkey
) +
181 sizeof(struct slabhash_testdata
);
184 int test_slabhash_compfunc(void* key1
, void* key2
)
186 struct slabhash_testkey
* k1
= (struct slabhash_testkey
*)key1
;
187 struct slabhash_testkey
* k2
= (struct slabhash_testkey
*)key2
;
195 void test_slabhash_delkey(void* key
, void* ATTR_UNUSED(arg
))
197 delkey((struct slabhash_testkey
*)key
);
200 void test_slabhash_deldata(void* data
, void* ATTR_UNUSED(arg
))
202 deldata((struct slabhash_testdata
*)data
);
205 void slabhash_setmarkdel(struct slabhash
* sl
, lruhash_markdelfunc_t md
)
208 for(i
=0; i
<sl
->size
; i
++) {
209 lruhash_setmarkdel(sl
->array
[i
], md
);
213 void slabhash_traverse(struct slabhash
* sh
, int wr
,
214 void (*func
)(struct lruhash_entry
*, void*), void* arg
)
217 for(i
=0; i
<sh
->size
; i
++)
218 lruhash_traverse(sh
->array
[i
], wr
, func
, arg
);
221 size_t count_slabhash_entries(struct slabhash
* sh
)
223 size_t slab
, cnt
= 0;
225 for(slab
=0; slab
<sh
->size
; slab
++) {
226 lock_quick_lock(&sh
->array
[slab
]->lock
);
227 cnt
+= sh
->array
[slab
]->num
;
228 lock_quick_unlock(&sh
->array
[slab
]->lock
);