1 /* 2 * util/storage/slabhash.h - 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 LIMITED 25 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 26 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE 27 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 30 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 31 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 32 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 33 * POSSIBILITY OF SUCH DAMAGE. 34 */ 35 36 /** 37 * \file 38 * 39 * Hash table that consists of smaller hash tables. 40 * It cannot grow, but that gives it the ability to have multiple 41 * locks. Also this means there are multiple LRU lists. 42 */ 43 44 #ifndef UTIL_STORAGE_SLABHASH_H 45 #define UTIL_STORAGE_SLABHASH_H 46 #include "util/storage/lruhash.h" 47 48 /** default number of slabs */ 49 #define HASH_DEFAULT_SLABS 4 50 51 /** 52 * Hash table formed from several smaller ones. 53 * This results in a partitioned lruhash table, a 'slashtable'. 54 * None of the data inside the slabhash may be altered. 55 * Therefore, no locks are needed to access the structure. 56 */ 57 struct slabhash { 58 /** the size of the array - must be power of 2 */ 59 size_t size; 60 /** size bitmask - uses high bits. */ 61 uint32_t mask; 62 /** shift right this many bits to get index into array. */ 63 unsigned int shift; 64 /** lookup array of hash tables */ 65 struct lruhash** array; 66 }; 67 68 /** 69 * Create new slabbed hash table. 70 * @param numtables: number of hash tables to use, other parameters used to 71 * initialize these smaller hashtables. 72 * @param start_size: size of hashtable array at start, must be power of 2. 73 * @param maxmem: maximum amount of memory this table is allowed to use. 74 * so every table gets maxmem/numtables to use for itself. 75 * @param sizefunc: calculates memory usage of entries. 76 * @param compfunc: compares entries, 0 on equality. 77 * @param delkeyfunc: deletes key. 78 * @param deldatafunc: deletes data. 79 * @param arg: user argument that is passed to user function calls. 80 * @return: new hash table or NULL on malloc failure. 81 */ 82 struct slabhash* slabhash_create(size_t numtables, size_t start_size, 83 size_t maxmem, lruhash_sizefunc_t sizefunc, 84 lruhash_compfunc_t compfunc, lruhash_delkeyfunc_t delkeyfunc, 85 lruhash_deldatafunc_t deldatafunc, void* arg); 86 87 /** 88 * Delete hash table. Entries are all deleted. 89 * @param table: to delete. 90 */ 91 void slabhash_delete(struct slabhash* table); 92 93 /** 94 * Clear hash table. Entries are all deleted. 95 * @param table: to make empty. 96 */ 97 void slabhash_clear(struct slabhash* table); 98 99 /** 100 * Insert a new element into the hashtable, uses lruhash_insert. 101 * If key is already present data pointer in that entry is updated. 102 * 103 * @param table: hash table. 104 * @param hash: hash value. User calculates the hash. 105 * @param entry: identifies the entry. 106 * If key already present, this entry->key is deleted immediately. 107 * But entry->data is set to NULL before deletion, and put into 108 * the existing entry. The data is then freed. 109 * @param data: the data. 110 * @param cb_override: if not NULL overrides the cb_arg for deletfunc. 111 */ 112 void slabhash_insert(struct slabhash* table, hashvalue_t hash, 113 struct lruhash_entry* entry, void* data, void* cb_override); 114 115 /** 116 * Lookup an entry in the hashtable. Uses lruhash_lookup. 117 * At the end of the function you hold a (read/write)lock on the entry. 118 * The LRU is updated for the entry (if found). 119 * @param table: hash table. 120 * @param hash: hash of key. 121 * @param key: what to look for, compared against entries in overflow chain. 122 * the hash value must be set, and must work with compare function. 123 * @param wr: set to true if you desire a writelock on the entry. 124 * with a writelock you can update the data part. 125 * @return: pointer to the entry or NULL. The entry is locked. 126 * The user must unlock the entry when done. 127 */ 128 struct lruhash_entry* slabhash_lookup(struct slabhash* table, 129 hashvalue_t hash, void* key, int wr); 130 131 /** 132 * Remove entry from hashtable. Does nothing if not found in hashtable. 133 * Delfunc is called for the entry. Uses lruhash_remove. 134 * @param table: hash table. 135 * @param hash: hash of key. 136 * @param key: what to look for. 137 */ 138 void slabhash_remove(struct slabhash* table, hashvalue_t hash, void* key); 139 140 /** 141 * Output debug info to the log as to state of the hash table. 142 * @param table: hash table. 143 * @param id: string printed with table to identify the hash table. 144 * @param extended: set to true to print statistics on overflow bin lengths. 145 */ 146 void slabhash_status(struct slabhash* table, const char* id, int extended); 147 148 /** 149 * Retrieve slab hash total size. 150 * @param table: hash table. 151 * @return size configured as max. 152 */ 153 size_t slabhash_get_size(struct slabhash* table); 154 155 /** 156 * Retrieve slab hash current memory use. 157 * @param table: hash table. 158 * @return memory in use. 159 */ 160 size_t slabhash_get_mem(struct slabhash* table); 161 162 /** 163 * Get lruhash table for a given hash value 164 * @param table: slabbed hash table. 165 * @param hash: hash value. 166 * @return the lru hash table. 167 */ 168 struct lruhash* slabhash_gettable(struct slabhash* table, hashvalue_t hash); 169 170 /** 171 * Set markdel function 172 * @param table: slabbed hash table. 173 * @param md: markdel function ptr. 174 */ 175 void slabhash_setmarkdel(struct slabhash* table, lruhash_markdelfunc_t md); 176 177 /** 178 * Traverse a slabhash. 179 * @param table: slabbed hash table. 180 * @param wr: if true, writelock is obtained, otherwise readlock. 181 * @param func: function to call for every element. 182 * @param arg: user argument to function. 183 */ 184 void slabhash_traverse(struct slabhash* table, int wr, 185 void (*func)(struct lruhash_entry*, void*), void* arg); 186 187 /* --- test representation --- */ 188 /** test structure contains test key */ 189 struct slabhash_testkey { 190 /** the key id */ 191 int id; 192 /** the entry */ 193 struct lruhash_entry entry; 194 }; 195 /** test structure contains test data */ 196 struct slabhash_testdata { 197 /** data value */ 198 int data; 199 }; 200 201 /** test sizefunc for lruhash */ 202 size_t test_slabhash_sizefunc(void*, void*); 203 /** test comparefunc for lruhash */ 204 int test_slabhash_compfunc(void*, void*); 205 /** test delkey for lruhash */ 206 void test_slabhash_delkey(void*, void*); 207 /** test deldata for lruhash */ 208 void test_slabhash_deldata(void*, void*); 209 /* --- end test representation --- */ 210 211 #endif /* UTIL_STORAGE_SLABHASH_H */ 212