1 /*
2  * util/storage/slabhash.c - hashtable consisting of several smaller tables.
3  *
4  * Copyright (c) 2007, NLnet Labs. All rights reserved.
5  *
6  * This software is open source.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * Redistributions of source code must retain the above copyright notice,
13  * this list of conditions and the following disclaimer.
14  *
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.
18  *
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.
22  *
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.
34  */
35 
36 /**
37  * \file
38  *
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.
43  */
44 
45 #include "config.h"
46 #include "util/storage/slabhash.h"
47 
slabhash_create(size_t numtables,size_t start_size,size_t maxmem,lruhash_sizefunc_type sizefunc,lruhash_compfunc_type compfunc,lruhash_delkeyfunc_type delkeyfunc,lruhash_deldatafunc_type deldatafunc,void * arg)48 struct slabhash* slabhash_create(size_t numtables, size_t start_size,
49 	size_t maxmem, lruhash_sizefunc_type sizefunc,
50 	lruhash_compfunc_type compfunc, lruhash_delkeyfunc_type delkeyfunc,
51 	lruhash_deldatafunc_type deldatafunc, void* arg)
52 {
53 	size_t i;
54 	struct slabhash* sl = (struct slabhash*)calloc(1,
55 		sizeof(struct slabhash));
56 	if(!sl) return NULL;
57 	sl->size = numtables;
58 	log_assert(sl->size > 0);
59 	sl->array = (struct lruhash**)calloc(sl->size, sizeof(struct lruhash*));
60 	if(!sl->array) {
61 		free(sl);
62 		return NULL;
63 	}
64 	sl->mask = (uint32_t)(sl->size - 1);
65 	if(sl->mask == 0) {
66 		sl->shift = 0;
67 	} else {
68 		log_assert( (sl->size & sl->mask) == 0
69 			/* size must be power of 2 */ );
70 		sl->shift = 0;
71 		while(!(sl->mask & 0x80000000)) {
72 			sl->mask <<= 1;
73 			sl->shift ++;
74 		}
75 	}
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);
79 		if(!sl->array[i]) {
80 			slabhash_delete(sl);
81 			return NULL;
82 		}
83 	}
84 	return sl;
85 }
86 
slabhash_delete(struct slabhash * sl)87 void slabhash_delete(struct slabhash* sl)
88 {
89 	if(!sl)
90 		return;
91 	if(sl->array) {
92 		size_t i;
93 		for(i=0; i<sl->size; i++)
94 			lruhash_delete(sl->array[i]);
95 		free(sl->array);
96 	}
97 	free(sl);
98 }
99 
slabhash_clear(struct slabhash * sl)100 void slabhash_clear(struct slabhash* sl)
101 {
102 	size_t i;
103 	if(!sl)
104 		return;
105 	for(i=0; i<sl->size; i++)
106 		lruhash_clear(sl->array[i]);
107 }
108 
109 /** helper routine to calculate the slabhash index */
110 static unsigned int
slab_idx(struct slabhash * sl,hashvalue_type hash)111 slab_idx(struct slabhash* sl, hashvalue_type hash)
112 {
113 	return ((hash & sl->mask) >> sl->shift);
114 }
115 
slabhash_insert(struct slabhash * sl,hashvalue_type hash,struct lruhash_entry * entry,void * data,void * arg)116 void slabhash_insert(struct slabhash* sl, hashvalue_type hash,
117 	struct lruhash_entry* entry, void* data, void* arg)
118 {
119 	lruhash_insert(sl->array[slab_idx(sl, hash)], hash, entry, data, arg);
120 }
121 
slabhash_lookup(struct slabhash * sl,hashvalue_type hash,void * key,int wr)122 struct lruhash_entry* slabhash_lookup(struct slabhash* sl,
123 	hashvalue_type hash, void* key, int wr)
124 {
125 	return lruhash_lookup(sl->array[slab_idx(sl, hash)], hash, key, wr);
126 }
127 
slabhash_remove(struct slabhash * sl,hashvalue_type hash,void * key)128 void slabhash_remove(struct slabhash* sl, hashvalue_type hash, void* key)
129 {
130 	lruhash_remove(sl->array[slab_idx(sl, hash)], hash, key);
131 }
132 
slabhash_status(struct slabhash * sl,const char * id,int extended)133 void slabhash_status(struct slabhash* sl, const char* id, int extended)
134 {
135 	size_t i;
136 	char num[17];
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);
142 	}
143 }
144 
slabhash_get_size(struct slabhash * sl)145 size_t slabhash_get_size(struct slabhash* sl)
146 {
147 	size_t i, total = 0;
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);
152 	}
153 	return total;
154 }
155 
slabhash_is_size(struct slabhash * sl,size_t size,size_t slabs)156 int slabhash_is_size(struct slabhash* sl, size_t size, size_t slabs)
157 {
158 	/* divide by slabs and then multiply by the number of slabs,
159 	 * because if the size is not an even multiple of slabs, the
160 	 * uneven amount needs to be removed for comparison */
161 	if(!sl) return 0;
162 	if(sl->size != slabs) return 0;
163 	if(slabs == 0) return 0;
164 	if( (size/slabs)*slabs == slabhash_get_size(sl))
165 		return 1;
166 	return 0;
167 }
168 
slabhash_update_space_used(struct slabhash * sl,hashvalue_type hash,void * cb_arg,int diff_size)169 void slabhash_update_space_used(struct slabhash* sl, hashvalue_type hash,
170 	void* cb_arg, int diff_size)
171 {
172 	lruhash_update_space_used(sl->array[slab_idx(sl, hash)], cb_arg,
173 		diff_size);
174 }
175 
slabhash_get_mem(struct slabhash * sl)176 size_t slabhash_get_mem(struct slabhash* sl)
177 {
178 	size_t i, total = sizeof(*sl);
179 	total += sizeof(struct lruhash*)*sl->size;
180 	for(i=0; i<sl->size; i++) {
181 		total += lruhash_get_mem(sl->array[i]);
182 	}
183 	return total;
184 }
185 
slabhash_gettable(struct slabhash * sl,hashvalue_type hash)186 struct lruhash* slabhash_gettable(struct slabhash* sl, hashvalue_type hash)
187 {
188 	return sl->array[slab_idx(sl, hash)];
189 }
190 
191 /* test code, here to avoid linking problems with fptr_wlist */
192 /** delete key */
delkey(struct slabhash_testkey * k)193 static void delkey(struct slabhash_testkey* k) {
194 	lock_rw_destroy(&k->entry.lock); free(k);}
195 /** delete data */
deldata(struct slabhash_testdata * d)196 static void deldata(struct slabhash_testdata* d) {free(d);}
197 
test_slabhash_sizefunc(void * ATTR_UNUSED (key),void * ATTR_UNUSED (data))198 size_t test_slabhash_sizefunc(void* ATTR_UNUSED(key), void* ATTR_UNUSED(data))
199 {
200 	return sizeof(struct slabhash_testkey) +
201 		sizeof(struct slabhash_testdata);
202 }
203 
test_slabhash_compfunc(void * key1,void * key2)204 int test_slabhash_compfunc(void* key1, void* key2)
205 {
206 	struct slabhash_testkey* k1 = (struct slabhash_testkey*)key1;
207 	struct slabhash_testkey* k2 = (struct slabhash_testkey*)key2;
208 	if(k1->id == k2->id)
209 		return 0;
210 	if(k1->id > k2->id)
211 		return 1;
212 	return -1;
213 }
214 
test_slabhash_delkey(void * key,void * ATTR_UNUSED (arg))215 void test_slabhash_delkey(void* key, void* ATTR_UNUSED(arg))
216 {
217 	delkey((struct slabhash_testkey*)key);
218 }
219 
test_slabhash_deldata(void * data,void * ATTR_UNUSED (arg))220 void test_slabhash_deldata(void* data, void* ATTR_UNUSED(arg))
221 {
222 	deldata((struct slabhash_testdata*)data);
223 }
224 
slabhash_setmarkdel(struct slabhash * sl,lruhash_markdelfunc_type md)225 void slabhash_setmarkdel(struct slabhash* sl, lruhash_markdelfunc_type md)
226 {
227 	size_t i;
228 	for(i=0; i<sl->size; i++) {
229 		lruhash_setmarkdel(sl->array[i], md);
230 	}
231 }
232 
slabhash_traverse(struct slabhash * sh,int wr,void (* func)(struct lruhash_entry *,void *),void * arg)233 void slabhash_traverse(struct slabhash* sh, int wr,
234 	void (*func)(struct lruhash_entry*, void*), void* arg)
235 {
236 	size_t i;
237 	for(i=0; i<sh->size; i++)
238 		lruhash_traverse(sh->array[i], wr, func, arg);
239 }
240 
count_slabhash_entries(struct slabhash * sh)241 size_t count_slabhash_entries(struct slabhash* sh)
242 {
243 	size_t slab, cnt = 0;
244 
245 	for(slab=0; slab<sh->size; slab++) {
246 		lock_quick_lock(&sh->array[slab]->lock);
247 		cnt += sh->array[slab]->num;
248 		lock_quick_unlock(&sh->array[slab]->lock);
249 	}
250 	return cnt;
251 }
252 
get_slabhash_stats(struct slabhash * sh,long long * num,long long * collisions)253 void get_slabhash_stats(struct slabhash* sh, long long* num, long long* collisions)
254 {
255 	size_t slab, cnt = 0, max_collisions = 0;
256 
257 	for(slab=0; slab<sh->size; slab++) {
258 		lock_quick_lock(&sh->array[slab]->lock);
259 		cnt += sh->array[slab]->num;
260 		if (max_collisions < sh->array[slab]->max_collisions) {
261 			max_collisions = sh->array[slab]->max_collisions;
262 		}
263 		lock_quick_unlock(&sh->array[slab]->lock);
264 	}
265 	if (num != NULL)
266 		*num = cnt;
267 	if (collisions != NULL)
268 		*collisions = max_collisions;
269 }
270