2007-03-13 12:22:24 -04:00
|
|
|
/*
|
2007-03-23 11:17:11 -04:00
|
|
|
* util/storage/lruhash.h - hashtable, hash function, LRU keeping.
|
2007-03-13 12:22:24 -04:00
|
|
|
*
|
|
|
|
|
* Copyright (c) 2007, NLnet Labs. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* This software is open source.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
*
|
|
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
|
*
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* Neither the name of the NLNET LABS nor the names of its contributors may
|
|
|
|
|
* be used to endorse or promote products derived from this software without
|
|
|
|
|
* specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
2014-02-07 08:28:39 -05:00
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
|
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
|
|
|
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2007-03-13 12:22:24 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \file
|
|
|
|
|
*
|
|
|
|
|
* This file contains a hashtable with LRU keeping of entries.
|
|
|
|
|
*
|
|
|
|
|
* The hash table keeps a maximum memory size. Old entries are removed
|
|
|
|
|
* to make space for new entries.
|
|
|
|
|
*
|
|
|
|
|
* The locking strategy is as follows:
|
|
|
|
|
* o since (almost) every read also implies a LRU update, the
|
|
|
|
|
* hashtable lock is a spinlock, not rwlock.
|
|
|
|
|
* o the idea is to move every thread through the hash lock quickly,
|
|
|
|
|
* so that the next thread can access the lookup table.
|
|
|
|
|
* o User performs hash function.
|
|
|
|
|
*
|
|
|
|
|
* For read:
|
|
|
|
|
* o lock hashtable.
|
|
|
|
|
* o lookup hash bin.
|
|
|
|
|
* o lock hash bin.
|
|
|
|
|
* o find entry (if failed, unlock hash, unl bin, exit).
|
|
|
|
|
* o swizzle pointers for LRU update.
|
|
|
|
|
* o unlock hashtable.
|
|
|
|
|
* o lock entry (rwlock).
|
|
|
|
|
* o unlock hash bin.
|
|
|
|
|
* o work on entry.
|
|
|
|
|
* o unlock entry.
|
|
|
|
|
*
|
|
|
|
|
* To update an entry, gain writelock and change the entry.
|
|
|
|
|
* (the entry must keep the same hashvalue, so a data update.)
|
|
|
|
|
* (you cannot upgrade a readlock to a writelock, because the item may
|
|
|
|
|
* be deleted, it would cause race conditions. So instead, unlock and
|
|
|
|
|
* relookup it in the hashtable.)
|
|
|
|
|
*
|
|
|
|
|
* To delete an entry:
|
|
|
|
|
* o unlock the entry if you hold the lock already.
|
|
|
|
|
* o lock hashtable.
|
|
|
|
|
* o lookup hash bin.
|
|
|
|
|
* o lock hash bin.
|
|
|
|
|
* o find entry (if failed, unlock hash, unl bin, exit).
|
|
|
|
|
* o remove entry from hashtable bin overflow chain.
|
|
|
|
|
* o unlock hashtable.
|
|
|
|
|
* o lock entry (writelock).
|
|
|
|
|
* o unlock hash bin.
|
|
|
|
|
* o unlock entry (nobody else should be waiting for this lock,
|
|
|
|
|
* since you removed it from hashtable, and you got writelock while
|
|
|
|
|
* holding the hashbinlock so you are the only one.)
|
|
|
|
|
* Note you are only allowed to obtain a lock while holding hashbinlock.
|
|
|
|
|
* o delete entry.
|
|
|
|
|
*
|
|
|
|
|
* The above sequence is:
|
|
|
|
|
* o race free, works with read, write and delete.
|
|
|
|
|
* o but has a queue, imagine someone needing a writelock on an item.
|
|
|
|
|
* but there are still readlocks. The writelocker waits, but holds
|
|
|
|
|
* the hashbinlock. The next thread that comes in and needs the same
|
|
|
|
|
* hashbin will wait for the lock while holding the hashtable lock.
|
|
|
|
|
* thus halting the entire system on hashtable.
|
|
|
|
|
* This is because of the delete protection.
|
|
|
|
|
* Readlocks will be easier on the rwlock on entries.
|
|
|
|
|
* While the writer is holding writelock, similar problems happen with
|
|
|
|
|
* a reader or writer needing the same item.
|
|
|
|
|
* the scenario requires more than three threads.
|
|
|
|
|
* o so the queue length is 3 threads in a bad situation. The fourth is
|
|
|
|
|
* unable to use the hashtable.
|
2007-05-21 11:10:55 -04:00
|
|
|
*
|
|
|
|
|
* If you need to acquire locks on multiple items from the hashtable.
|
|
|
|
|
* o you MUST release all locks on items from the hashtable before
|
|
|
|
|
* doing the next lookup/insert/delete/whatever.
|
|
|
|
|
* o To acquire multiple items you should use a special routine that
|
|
|
|
|
* obtains the locks on those multiple items in one go.
|
2007-03-13 12:22:24 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef UTIL_STORAGE_LRUHASH_H
|
|
|
|
|
#define UTIL_STORAGE_LRUHASH_H
|
|
|
|
|
#include "util/locks.h"
|
|
|
|
|
struct lruhash_bin;
|
|
|
|
|
struct lruhash_entry;
|
|
|
|
|
|
|
|
|
|
/** default start size for hash arrays */
|
|
|
|
|
#define HASH_DEFAULT_STARTARRAY 1024 /* entries in array */
|
|
|
|
|
/** default max memory for hash arrays */
|
|
|
|
|
#define HASH_DEFAULT_MAXMEM 4*1024*1024 /* bytes */
|
|
|
|
|
|
|
|
|
|
/** the type of a hash value */
|
2017-01-19 05:25:41 -05:00
|
|
|
typedef uint32_t hashvalue_type;
|
2007-03-13 12:22:24 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Type of function that calculates the size of an entry.
|
|
|
|
|
* Result must include the size of struct lruhash_entry.
|
|
|
|
|
* Keys that are identical must also calculate to the same size.
|
|
|
|
|
* size = func(key, data).
|
|
|
|
|
*/
|
2017-01-19 05:25:41 -05:00
|
|
|
typedef size_t (*lruhash_sizefunc_type)(void*, void*);
|
2007-03-13 12:22:24 -04:00
|
|
|
|
|
|
|
|
/** type of function that compares two keys. return 0 if equal. */
|
2017-01-19 05:25:41 -05:00
|
|
|
typedef int (*lruhash_compfunc_type)(void*, void*);
|
2007-03-13 12:22:24 -04:00
|
|
|
|
2007-05-16 08:48:48 -04:00
|
|
|
/** old keys are deleted.
|
2007-12-04 16:34:53 -05:00
|
|
|
* The RRset type has to revoke its ID number, markdel() is used first.
|
|
|
|
|
* This function is called: func(key, userarg) */
|
2017-01-19 05:25:41 -05:00
|
|
|
typedef void (*lruhash_delkeyfunc_type)(void*, void*);
|
2007-03-13 12:22:24 -04:00
|
|
|
|
|
|
|
|
/** old data is deleted. This function is called: func(data, userarg). */
|
2017-01-19 05:25:41 -05:00
|
|
|
typedef void (*lruhash_deldatafunc_type)(void*, void*);
|
2007-03-13 12:22:24 -04:00
|
|
|
|
2007-12-04 16:18:25 -05:00
|
|
|
/** mark a key as pending to be deleted (and not to be used by anyone).
|
|
|
|
|
* called: func(key) */
|
2017-01-19 05:25:41 -05:00
|
|
|
typedef void (*lruhash_markdelfunc_type)(void*);
|
2007-12-04 16:18:25 -05:00
|
|
|
|
2007-03-13 12:22:24 -04:00
|
|
|
/**
|
|
|
|
|
* Hash table that keeps LRU list of entries.
|
|
|
|
|
*/
|
|
|
|
|
struct lruhash {
|
|
|
|
|
/** lock for exclusive access, to the lookup array */
|
2017-01-19 05:25:41 -05:00
|
|
|
lock_quick_type lock;
|
2007-03-13 12:22:24 -04:00
|
|
|
/** the size function for entries in this table */
|
2017-01-19 05:25:41 -05:00
|
|
|
lruhash_sizefunc_type sizefunc;
|
2007-03-13 12:22:24 -04:00
|
|
|
/** the compare function for entries in this table. */
|
2017-01-19 05:25:41 -05:00
|
|
|
lruhash_compfunc_type compfunc;
|
2007-03-13 12:22:24 -04:00
|
|
|
/** how to delete keys. */
|
2017-01-19 05:25:41 -05:00
|
|
|
lruhash_delkeyfunc_type delkeyfunc;
|
2007-03-13 12:22:24 -04:00
|
|
|
/** how to delete data. */
|
2017-01-19 05:25:41 -05:00
|
|
|
lruhash_deldatafunc_type deldatafunc;
|
2007-12-04 16:18:25 -05:00
|
|
|
/** how to mark a key pending deletion */
|
2017-01-19 05:25:41 -05:00
|
|
|
lruhash_markdelfunc_type markdelfunc;
|
2007-03-13 12:22:24 -04:00
|
|
|
/** user argument for user functions */
|
|
|
|
|
void* cb_arg;
|
|
|
|
|
|
|
|
|
|
/** the size of the lookup array */
|
|
|
|
|
size_t size;
|
|
|
|
|
/** size bitmask - since size is a power of 2 */
|
|
|
|
|
int size_mask;
|
|
|
|
|
/** lookup array of bins */
|
|
|
|
|
struct lruhash_bin* array;
|
|
|
|
|
|
|
|
|
|
/** the lru list, start and end, noncyclical double linked list. */
|
|
|
|
|
struct lruhash_entry* lru_start;
|
|
|
|
|
/** lru list end item (least recently used) */
|
|
|
|
|
struct lruhash_entry* lru_end;
|
|
|
|
|
|
|
|
|
|
/** the number of entries in the hash table. */
|
|
|
|
|
size_t num;
|
|
|
|
|
/** the amount of space used, roughly the number of bytes in use. */
|
|
|
|
|
size_t space_used;
|
|
|
|
|
/** the amount of space the hash table is maximally allowed to use. */
|
|
|
|
|
size_t space_max;
|
2023-01-13 01:33:38 -05:00
|
|
|
/** the maximum collisions were detected during the lruhash_insert operations. */
|
|
|
|
|
size_t max_collisions;
|
2007-03-13 12:22:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A single bin with a linked list of entries in it.
|
|
|
|
|
*/
|
|
|
|
|
struct lruhash_bin {
|
|
|
|
|
/**
|
|
|
|
|
* Lock for exclusive access to the linked list
|
|
|
|
|
* This lock makes deletion of items safe in this overflow list.
|
|
|
|
|
*/
|
2017-01-19 05:25:41 -05:00
|
|
|
lock_quick_type lock;
|
2007-03-13 12:22:24 -04:00
|
|
|
/** linked list of overflow entries */
|
|
|
|
|
struct lruhash_entry* overflow_list;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* An entry into the hash table.
|
|
|
|
|
* To change overflow_next you need to hold the bin lock.
|
|
|
|
|
* To change the lru items you need to hold the hashtable lock.
|
|
|
|
|
* This structure is designed as part of key struct. And key pointer helps
|
|
|
|
|
* to get the surrounding structure. Data should be allocated on its own.
|
|
|
|
|
*/
|
|
|
|
|
struct lruhash_entry {
|
|
|
|
|
/**
|
|
|
|
|
* rwlock for access to the contents of the entry
|
|
|
|
|
* Note that it does _not_ cover the lru_ and overflow_ ptrs.
|
|
|
|
|
* Even with a writelock, you cannot change hash and key.
|
|
|
|
|
* You need to delete it to change hash or key.
|
|
|
|
|
*/
|
2017-01-19 05:25:41 -05:00
|
|
|
lock_rw_type lock;
|
2007-03-14 06:42:50 -04:00
|
|
|
/** next entry in overflow chain. Covered by hashlock and binlock. */
|
2007-03-13 12:22:24 -04:00
|
|
|
struct lruhash_entry* overflow_next;
|
2007-03-14 06:42:50 -04:00
|
|
|
/** next entry in lru chain. covered by hashlock. */
|
2007-03-13 12:22:24 -04:00
|
|
|
struct lruhash_entry* lru_next;
|
2007-03-14 06:42:50 -04:00
|
|
|
/** prev entry in lru chain. covered by hashlock. */
|
2007-03-13 12:22:24 -04:00
|
|
|
struct lruhash_entry* lru_prev;
|
2007-03-14 06:42:50 -04:00
|
|
|
/** hash value of the key. It may not change, until entry deleted. */
|
2017-01-19 05:25:41 -05:00
|
|
|
hashvalue_type hash;
|
2007-03-13 12:22:24 -04:00
|
|
|
/** key */
|
|
|
|
|
void* key;
|
|
|
|
|
/** data */
|
|
|
|
|
void* data;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create new hash table.
|
|
|
|
|
* @param start_size: size of hashtable array at start, must be power of 2.
|
|
|
|
|
* @param maxmem: maximum amount of memory this table is allowed to use.
|
|
|
|
|
* @param sizefunc: calculates memory usage of entries.
|
|
|
|
|
* @param compfunc: compares entries, 0 on equality.
|
|
|
|
|
* @param delkeyfunc: deletes key.
|
|
|
|
|
* Calling both delkey and deldata will also free the struct lruhash_entry.
|
|
|
|
|
* Make it part of the key structure and delete it in delkeyfunc.
|
|
|
|
|
* @param deldatafunc: deletes data.
|
|
|
|
|
* @param arg: user argument that is passed to user function calls.
|
|
|
|
|
* @return: new hash table or NULL on malloc failure.
|
|
|
|
|
*/
|
|
|
|
|
struct lruhash* lruhash_create(size_t start_size, size_t maxmem,
|
2017-01-19 05:25:41 -05:00
|
|
|
lruhash_sizefunc_type sizefunc, lruhash_compfunc_type compfunc,
|
|
|
|
|
lruhash_delkeyfunc_type delkeyfunc,
|
|
|
|
|
lruhash_deldatafunc_type deldatafunc, void* arg);
|
2007-03-13 12:22:24 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Delete hash table. Entries are all deleted.
|
|
|
|
|
* @param table: to delete.
|
|
|
|
|
*/
|
|
|
|
|
void lruhash_delete(struct lruhash* table);
|
|
|
|
|
|
2007-10-31 12:15:44 -04:00
|
|
|
/**
|
|
|
|
|
* Clear hash table. Entries are all deleted, while locking them before
|
|
|
|
|
* doing so. At end the table is empty.
|
|
|
|
|
* @param table: to make empty.
|
|
|
|
|
*/
|
|
|
|
|
void lruhash_clear(struct lruhash* table);
|
|
|
|
|
|
2007-03-13 12:22:24 -04:00
|
|
|
/**
|
|
|
|
|
* Insert a new element into the hashtable.
|
|
|
|
|
* If key is already present data pointer in that entry is updated.
|
|
|
|
|
* The space calculation function is called with the key, data.
|
|
|
|
|
* If necessary the least recently used entries are deleted to make space.
|
|
|
|
|
* If necessary the hash array is grown up.
|
|
|
|
|
*
|
|
|
|
|
* @param table: hash table.
|
|
|
|
|
* @param hash: hash value. User calculates the hash.
|
|
|
|
|
* @param entry: identifies the entry.
|
|
|
|
|
* If key already present, this entry->key is deleted immediately.
|
|
|
|
|
* But entry->data is set to NULL before deletion, and put into
|
|
|
|
|
* the existing entry. The data is then freed.
|
|
|
|
|
* @param data: the data.
|
2007-05-04 04:05:56 -04:00
|
|
|
* @param cb_override: if not null overrides the cb_arg for the deletefunc.
|
2007-03-13 12:22:24 -04:00
|
|
|
*/
|
2017-01-19 05:25:41 -05:00
|
|
|
void lruhash_insert(struct lruhash* table, hashvalue_type hash,
|
2007-05-04 04:05:56 -04:00
|
|
|
struct lruhash_entry* entry, void* data, void* cb_override);
|
2007-03-13 12:22:24 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Lookup an entry in the hashtable.
|
|
|
|
|
* At the end of the function you hold a (read/write)lock on the entry.
|
|
|
|
|
* The LRU is updated for the entry (if found).
|
|
|
|
|
* @param table: hash table.
|
2007-03-14 06:42:50 -04:00
|
|
|
* @param hash: hash of key.
|
2007-03-13 12:22:24 -04:00
|
|
|
* @param key: what to look for, compared against entries in overflow chain.
|
|
|
|
|
* the hash value must be set, and must work with compare function.
|
|
|
|
|
* @param wr: set to true if you desire a writelock on the entry.
|
|
|
|
|
* with a writelock you can update the data part.
|
|
|
|
|
* @return: pointer to the entry or NULL. The entry is locked.
|
|
|
|
|
* The user must unlock the entry when done.
|
|
|
|
|
*/
|
2017-01-19 05:25:41 -05:00
|
|
|
struct lruhash_entry* lruhash_lookup(struct lruhash* table,
|
|
|
|
|
hashvalue_type hash, void* key, int wr);
|
2007-03-13 12:22:24 -04:00
|
|
|
|
2007-05-16 08:48:48 -04:00
|
|
|
/**
|
|
|
|
|
* Touch entry, so it becomes the most recently used in the LRU list.
|
|
|
|
|
* Caller must hold hash table lock. The entry must be inserted already.
|
|
|
|
|
* @param table: hash table.
|
|
|
|
|
* @param entry: entry to make first in LRU.
|
|
|
|
|
*/
|
|
|
|
|
void lru_touch(struct lruhash* table, struct lruhash_entry* entry);
|
2007-03-14 10:30:30 -04:00
|
|
|
|
2007-12-04 16:18:25 -05:00
|
|
|
/**
|
|
|
|
|
* Set the markdelfunction (or NULL)
|
|
|
|
|
*/
|
2017-01-19 05:25:41 -05:00
|
|
|
void lruhash_setmarkdel(struct lruhash* table, lruhash_markdelfunc_type md);
|
2007-12-04 16:18:25 -05:00
|
|
|
|
2024-03-27 06:45:34 -04:00
|
|
|
/**
|
|
|
|
|
* Update the size of an element in the hashtable.
|
|
|
|
|
*
|
|
|
|
|
* @param table: hash table.
|
|
|
|
|
* @param cb_override: if not NULL overrides the cb_arg for deletefunc.
|
|
|
|
|
* @param diff_size: difference in size to the hash table storage.
|
|
|
|
|
* This is newsize - oldsize, a positive number uses more space.
|
|
|
|
|
*/
|
|
|
|
|
void lruhash_update_space_used(struct lruhash* table, void* cb_override,
|
|
|
|
|
int diff_size);
|
|
|
|
|
|
Fast Reload Option (#1042)
* - fast-reload, add unbound-control fast_reload
* - fast-reload, make a thread to service the unbound-control command.
* - fast-reload, communication sockets for information transfer.
* - fast-reload, fix compile for unbound-dnstap-socket.
* - fast-reload, set nonblocking communication to keep the server thread
responding to DNS requests.
* - fast-reload, poll routine to test for readiness, timeout fails connection.
* - fast-reload, detect loop in sock_poll_timeout routine.
* - fast-reload, send done and exited notification.
* - fast-reload, defines for constants in ipc.
* - fast-reload, ipc socket recv and send resists partial reads and writes and
can continue byte by byte. Also it can continue after an interrupt.
* - fast-reload, send exit command to thread when done.
* - fast-reload, output strings for client on string list.
* - fast-reload, add newline to terminal output.
* - fast-reload, send client string to remote client.
* - fast-reload, better debug output.
* - fast-reload, print queue structure, for output to the remote client.
* - fast-reload, move print items to print queue from fast_reload_thread struct.
* - fast-reload, keep list of pending print queue items in daemon struct.
* - fast-reload, comment explains in_list for printq to print remainder.
* - fast-reload, unit test testdata/fast_reload_thread.tdir that tests the
thread output.
* - fast-reload, fix test link for fast_reload_printq_list_delete function.
* - fast-reload, reread config file from disk.
* - fast-reload, unshare forwards, making the structure locked, with an rwlock.
* - fast-reload, for nonthreaded, the unbound-control commands forward,
forward_add and forward_delete should be distributed to other processes,
but when threaded, they should not be distributed to other threads because
the structure is not thread specific any more.
* - fast-reload, unshared stub hints, making the structure locked, with an rwlock.
* - fast-reload, helpful comments for hints lookup function return value.
* - fast-reload, fix bug in fast reload printout, the strlist appendlist routine,
and printout time statistics after the reload is done.
* - fast-reload, keep track of reloadtime and deletestime and print them.
* - fast-reload, keep track of constructtime and print it.
* - fast-reload, construct new items.
* - fast-reload, better comment.
* - fast-reload, reload the config and swap trees for forwards and stub hints.
* - fast-reload, in forwards_swap_tree set protection of trees with locks.
* - fast-reload, in hints_swap_tree also swap the node count of the trees.
* - fast-reload, reload ipc to stop and start threads.
* - fast-reload, unused forward declarations removed.
* - fast-reload, unit test that fast reload works with forwards and stubs.
* - fast-reload, fix clang analyzer warnings.
* - fast-reload, small documentation entry in unbound-control -h output.
* - fast-reload, printout memory use by fast reload, in bytes.
* - fast-reload, compile without threads.
* - fast-reload, document fast_reload in man page.
* - fast-reload, print ok when done successfully.
* - fast-reload, option for fast-reload commandline, +v verbosity option,
with timing and memory use output.
* - fast-reload, option for fast-reload commandline, +p does not pause threads.
* - fast-reload, option for fast-reload commandline, +d drops mesh queries.
* - fast-reload, fix to poll every thread with nopause to make certain that
resources are not held by the threads and can be deleted.
* - fast-reload, fix to use atomic store for config variables with nopause.
* - fast-reload, reload views.
* - fast-reload, when tag defines are different, it drops the queries.
* - fast-reload, fix tag define check.
* - fast-reload, document that tag change causes drop of queries.
* - fast-reload, fix space in documentation man page.
* - fast-reload, copy respip client information to query state, put views tree
in module env for lookup.
* - fast-reload, nicer respip view comparison.
* - fast-reload, respip global set is in module env.
* - fast-reload, document that respip_client_info acl info is copied.
* - fast-reload, reload the respip_set.
* - fast-reload, document no pause and pick up of use_response_ip boolean.
* - fast-reload, fix test compile.
* - fast-reload, reload local zones.
* Update locking management for iter_fwd and iter_hints methods. (#1054)
fast reload, move most of the locking management to iter_fwd and
iter_hints methods. The caller still has the ability to handle its
own locking, if desired, for atomic operations on sets of different
structs.
Co-authored-by: Wouter Wijngaards <wcawijngaards@users.noreply.github.com>
* - fast-reload, reload access-control.
* - fast-reload, reload access control interface, such as interface-action.
* - fast-reload, reload tcp-connection-limit.
* - fast-reload, improve comments on acl_list and tcl_list swap tree.
* - fast-reload, fixup references to old tcp connection limits in open tcp
connections.
* - fast-reload, fixup to clean tcp connection also for different linked order.
* - fast-reload, if no tcp connection limits existed, no need to remove
references for that.
* - fast-reload, document more options that work and do not work.
* - fast-reload, reload auth_zone and rpz data.
* - fast-reload, fix auth_zones_get_mem.
* - fast-reload, fix compilation of testbound for the new comm_timer_get_mem
reference in remote control.
* - fast-reload, change use_rpz with reload.
* - fast-reload, list changes in auth zones and stop zonemd callbacks for
deleted auth zones.
* - fast-reload, note xtree is not swapped, and why it is not swapped.
* - fast-reload, for added auth zones, pick up zone transfer and zonemd tasks.
* - fast-reload, unlock xfr when done with transfer pick up.
* - fast-reload, unlock z when picking up the xfr for it during transfer task
pick up.
* - fast-reload, pick up task changes for added, deleted and modified auth zones.
* - fast-reload, remove xfr of auth zone deletion without tasks.
* - fast-reload, pick up zone transfer config.
* - fast-reload, the main worker thread picks up the transfer tasks and also
performs setup of the xfer struct.
* - fast-reload, keep writelock on newzone when auth zone changes.
* - fast-reload, change cachedb_enabled setting.
* - fast-reload, pick up edns-strings config.
* - fast-reload, note that settings are not updated.
* - fast-reload, pick up dnstap config.
* - fast-reload, dnstap options that need to be loaded without +p.
* - fast-reload, fix auth zone reload
* - fast-reload, remove debug for auth zone test.
* - fast-reload, fix auth zone reload with zone transfer.
* - fast-reload, fix auth zone reload lock order.
* - fast-reload, remove debug from fast reload test.
* - fast-reload, remove unused function.
* - fast-reload, fix the worker trust anchor probe timer lock acquisition in
the probe answer callback routine for trust anchor probes.
* - fast-reload, reload trust anchors.
* - fast-reload, fix trust anchor reload lock on autr global data and test
for trust anchor reload.
* - fast-reload, adjust cache sizes.
* - fast-reload, reload cache sizes when changed.
* - fast-reload, reload validator env changes.
* - fast-reload, reload mesh changes.
* - fast-reload, check for incompatible changes.
* - fast-reload, improve error text for incompatible change.
* - fast-reload, fix check config option compatibility.
* - fast-reload, improve error text for nopause change.
* - fast-reload, fix spelling of incompatible options.
* - fast-reload, reload target-fetch-policy, outbound-msg-retry, max-sent-count
and max-query-restarts.
* - fast-reload, check nopause config change for target-fetch-policy.
* - fast-reload, reload do-not-query-address, private-address and capt-exempt.
* - fast-reload, check nopause config change for do-not-query-address,
private-address and capt-exempt.
* - fast-reload, check fast reload not possible due to interface and
outgoing-interface changes.
* - fast-reload, reload nat64 settings.
* - fast-reload, reload settings stored in the infra structure.
* - fast-reload, fix modstack lookup and remove outgoing-range check.
* - fast-reload, more explanation for config parse failure.
* - fast-reload, reload worker outside network changes.
* - fast-reload, detect incompatible changes in network settings.
* fast-reload, commit test files.
* - fast-reload, fix warnings for call types in windows compile.
* - fast-reload, fix warnings and comm_point_internal for tcp wouldblock calls.
* - fast-reload, extend lock checks for repeat thread ids.
* - fast-reload, additional test cases, cache change and tag changes.
* - fast-reload, fix documentation for auth_zone_verify_zonemd_with_key.
* - fast-reload, fix copy_cfg type casts and memory leak on config parse failure.
* - fast-reload, fix use of WSAPoll.
* Review comments for the fast reload feature (#1259)
* - fast-reload review, respip set can be null from a view.
* - fast-reload review, typos.
* - fast-reload review, keep clang static analyzer happy.
* - fast-reload review, don't forget to copy tag_actions.
* - fast-reload review, less indentation.
* - fast-reload review, don't leak respip_actions when reloading.
* - fast-reload review, protect NULL pointer dereference in get_mem
functions.
* - fast-reload review, add fast_reload_most_options.tdir to test most
options with high verbosity when fast reloading.
* - fast-reload review, don't skip new line on long error printouts.
* - fast-reload review, typo.
* - fast-reload review, use new_z for consistency.
* - fast-reload review, nit for unlock ordering to make eye comparison
with the lock counterpart easier.
* - fast-reload review, in case of error the sockets are already closed.
* - fast-reload review, identation.
* - fast-reload review, add static keywords.
* - fast-reload review, update unbound-control usage text.
* - fast-reload review, updates to the man page.
* - fast-reload, the fast-reload command is experimental.
* - fast-reload, fix compile of doqclient for fast reload functions.
* Changelog comment for #1042
- Merge #1042: Fast Reload. The unbound-control fast_reload is added.
It reads changed config in a thread, then only briefly pauses the
service threads, that keep running. DNS service is only interrupted
briefly, less than a second.
---------
Co-authored-by: Yorgos Thessalonikefs <yorgos@nlnetlabs.nl>
2025-03-31 09:25:24 -04:00
|
|
|
/**
|
|
|
|
|
* Update the max space for the hashtable.
|
|
|
|
|
*
|
|
|
|
|
* @param table: hash table.
|
|
|
|
|
* @param cb_override: if not NULL overrides the cb_arg for deletefunc.
|
|
|
|
|
* @param max: the new max.
|
|
|
|
|
*/
|
|
|
|
|
void lruhash_update_space_max(struct lruhash* table, void* cb_override,
|
|
|
|
|
size_t max);
|
|
|
|
|
|
2017-03-20 11:25:06 -04:00
|
|
|
/************************* getdns functions ************************/
|
|
|
|
|
/*** these are used by getdns only and not by unbound. ***/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Demote entry, so it becomes the least recently used in the LRU list.
|
|
|
|
|
* Caller must hold hash table lock. The entry must be inserted already.
|
|
|
|
|
* @param table: hash table.
|
|
|
|
|
* @param entry: entry to make last in LRU.
|
|
|
|
|
*/
|
|
|
|
|
void lru_demote(struct lruhash* table, struct lruhash_entry* entry);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Insert a new element into the hashtable, or retrieve the corresponding
|
|
|
|
|
* element of it exits.
|
|
|
|
|
*
|
|
|
|
|
* If key is already present data pointer in that entry is kept.
|
|
|
|
|
* If it is not present, a new entry is created. In that case,
|
|
|
|
|
* the space calculation function is called with the key, data.
|
|
|
|
|
* If necessary the least recently used entries are deleted to make space.
|
|
|
|
|
* If necessary the hash array is grown up.
|
|
|
|
|
*
|
|
|
|
|
* @param table: hash table.
|
|
|
|
|
* @param hash: hash value. User calculates the hash.
|
|
|
|
|
* @param entry: identifies the entry.
|
|
|
|
|
* @param data: the data.
|
2017-03-20 11:51:34 -04:00
|
|
|
* @param cb_arg: if not null overrides the cb_arg for the deletefunc.
|
2017-03-20 11:25:06 -04:00
|
|
|
* @return: pointer to the existing entry if the key was already present,
|
|
|
|
|
* or to the entry argument if it was not.
|
|
|
|
|
*/
|
|
|
|
|
struct lruhash_entry* lruhash_insert_or_retrieve(struct lruhash* table, hashvalue_type hash,
|
|
|
|
|
struct lruhash_entry* entry, void* data, void* cb_arg);
|
|
|
|
|
|
2007-03-14 10:30:30 -04:00
|
|
|
/************************* Internal functions ************************/
|
|
|
|
|
/*** these are only exposed for unit tests. ***/
|
|
|
|
|
|
2007-03-13 12:22:24 -04:00
|
|
|
/**
|
|
|
|
|
* Remove entry from hashtable. Does nothing if not found in hashtable.
|
|
|
|
|
* Delfunc is called for the entry.
|
|
|
|
|
* @param table: hash table.
|
2007-03-14 08:21:03 -04:00
|
|
|
* @param hash: hash of key.
|
2007-03-13 12:22:24 -04:00
|
|
|
* @param key: what to look for.
|
|
|
|
|
*/
|
2017-01-19 05:25:41 -05:00
|
|
|
void lruhash_remove(struct lruhash* table, hashvalue_type hash, void* key);
|
2007-03-13 12:22:24 -04:00
|
|
|
|
2007-06-12 10:51:49 -04:00
|
|
|
/** init the hash bins for the table */
|
2007-03-14 10:30:30 -04:00
|
|
|
void bin_init(struct lruhash_bin* array, size_t size);
|
|
|
|
|
|
|
|
|
|
/** delete the hash bin and entries inside it */
|
|
|
|
|
void bin_delete(struct lruhash* table, struct lruhash_bin* bin);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Find entry in hash bin. You must have locked the bin.
|
|
|
|
|
* @param table: hash table with function pointers.
|
|
|
|
|
* @param bin: hash bin to look into.
|
|
|
|
|
* @param hash: hash value to look for.
|
|
|
|
|
* @param key: key to look for.
|
2023-01-13 01:33:38 -05:00
|
|
|
* @param collisions: how many collisions were found during the search.
|
2007-03-14 10:30:30 -04:00
|
|
|
* @return: the entry or NULL if not found.
|
|
|
|
|
*/
|
|
|
|
|
struct lruhash_entry* bin_find_entry(struct lruhash* table,
|
2023-01-13 01:33:38 -05:00
|
|
|
struct lruhash_bin* bin, hashvalue_type hash, void* key, size_t* collisions);
|
2007-03-14 10:30:30 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Remove entry from bin overflow chain.
|
|
|
|
|
* You must have locked the bin.
|
|
|
|
|
* @param bin: hash bin to look into.
|
|
|
|
|
* @param entry: entry ptr that needs removal.
|
|
|
|
|
*/
|
|
|
|
|
void bin_overflow_remove(struct lruhash_bin* bin,
|
|
|
|
|
struct lruhash_entry* entry);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Split hash bin into two new ones. Based on increased size_mask.
|
|
|
|
|
* Caller must hold hash table lock.
|
|
|
|
|
* At the end the routine acquires all hashbin locks (in the old array).
|
|
|
|
|
* This makes it wait for other threads to finish with the bins.
|
|
|
|
|
* So the bins are ready to be deleted after this function.
|
|
|
|
|
* @param table: hash table with function pointers.
|
|
|
|
|
* @param newa: new increased array.
|
|
|
|
|
* @param newmask: new lookup mask.
|
|
|
|
|
*/
|
|
|
|
|
void bin_split(struct lruhash* table, struct lruhash_bin* newa,
|
|
|
|
|
int newmask);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Try to make space available by deleting old entries.
|
|
|
|
|
* Assumes that the lock on the hashtable is being held by caller.
|
|
|
|
|
* Caller must not hold bin locks.
|
|
|
|
|
* @param table: hash table.
|
|
|
|
|
* @param list: list of entries that are to be deleted later.
|
|
|
|
|
* Entries have been removed from the hash table and writelock is held.
|
|
|
|
|
*/
|
|
|
|
|
void reclaim_space(struct lruhash* table, struct lruhash_entry** list);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Grow the table lookup array. Becomes twice as large.
|
|
|
|
|
* Caller must hold the hash table lock. Must not hold any bin locks.
|
|
|
|
|
* Tries to grow, on malloc failure, nothing happened.
|
|
|
|
|
* @param table: hash table.
|
|
|
|
|
*/
|
|
|
|
|
void table_grow(struct lruhash* table);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Put entry at front of lru. entry must be unlinked from lru.
|
|
|
|
|
* Caller must hold hash table lock.
|
|
|
|
|
* @param table: hash table with lru head and tail.
|
|
|
|
|
* @param entry: entry to make most recently used.
|
|
|
|
|
*/
|
|
|
|
|
void lru_front(struct lruhash* table, struct lruhash_entry* entry);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Remove entry from lru list.
|
|
|
|
|
* Caller must hold hash table lock.
|
|
|
|
|
* @param table: hash table with lru head and tail.
|
|
|
|
|
* @param entry: entry to remove from lru.
|
|
|
|
|
*/
|
|
|
|
|
void lru_remove(struct lruhash* table, struct lruhash_entry* entry);
|
|
|
|
|
|
2007-03-21 10:34:57 -04:00
|
|
|
/**
|
|
|
|
|
* Output debug info to the log as to state of the hash table.
|
|
|
|
|
* @param table: hash table.
|
|
|
|
|
* @param id: string printed with table to identify the hash table.
|
|
|
|
|
* @param extended: set to true to print statistics on overflow bin lengths.
|
|
|
|
|
*/
|
|
|
|
|
void lruhash_status(struct lruhash* table, const char* id, int extended);
|
|
|
|
|
|
2007-08-14 09:15:36 -04:00
|
|
|
/**
|
|
|
|
|
* Get memory in use now by the lruhash table.
|
|
|
|
|
* @param table: hash table. Will be locked before use. And unlocked after.
|
|
|
|
|
* @return size in bytes.
|
|
|
|
|
*/
|
|
|
|
|
size_t lruhash_get_mem(struct lruhash* table);
|
|
|
|
|
|
2009-04-02 07:56:01 -04:00
|
|
|
/**
|
|
|
|
|
* Traverse a lruhash. Call back for every element in the table.
|
|
|
|
|
* @param h: hash table. Locked before use.
|
|
|
|
|
* @param wr: if true writelock is obtained on element, otherwise readlock.
|
|
|
|
|
* @param func: function for every element. Do not lock or unlock elements.
|
|
|
|
|
* @param arg: user argument to func.
|
|
|
|
|
*/
|
|
|
|
|
void lruhash_traverse(struct lruhash* h, int wr,
|
|
|
|
|
void (*func)(struct lruhash_entry*, void*), void* arg);
|
|
|
|
|
|
2007-03-13 12:22:24 -04:00
|
|
|
#endif /* UTIL_STORAGE_LRUHASH_H */
|