]> git.proxmox.com Git - mirror_frr.git/blame - lib/hash.h
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / lib / hash.h
CommitLineData
718e3744 1/* Hash routine.
896014f4
DL
2 * Copyright (C) 1998 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published
8 * by the Free Software Foundation; either version 2, or (at your
9 * option) any later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
718e3744 20
21#ifndef _ZEBRA_HASH_H
22#define _ZEBRA_HASH_H
23
4a1ab8e4 24#include "memory.h"
6f6f0010 25#include "frratomic.h"
4a1ab8e4
DL
26
27DECLARE_MTYPE(HASH)
28DECLARE_MTYPE(HASH_BACKET)
29
d62a17ae 30/* Default hash table size. */
bed7ad83
QY
31#define HASH_INITIAL_SIZE 256
32/* Expansion threshold */
33#define HASH_THRESHOLD(used, size) ((used) > (size))
718e3744 34
3f9c7369
DS
35#define HASHWALK_CONTINUE 0
36#define HASHWALK_ABORT -1
37
d62a17ae 38struct hash_backet {
6fd8c487
QY
39 /*
40 * if this backet is the head of the linked listed, len denotes the
41 * number of elements in the list
42 */
d62a17ae 43 int len;
6f6f0010 44
d62a17ae 45 /* Linked list. */
46 struct hash_backet *next;
718e3744 47
d62a17ae 48 /* Hash key. */
49 unsigned int key;
718e3744 50
d62a17ae 51 /* Data. */
52 void *data;
718e3744 53};
54
d62a17ae 55struct hashstats {
56 /* number of empty hash buckets */
57 _Atomic uint_fast32_t empty;
58 /* sum of squares of bucket length */
59 _Atomic uint_fast32_t ssq;
6f6f0010
QY
60};
61
d62a17ae 62struct hash {
63 /* Hash backet. */
64 struct hash_backet **index;
718e3744 65
d62a17ae 66 /* Hash table size. Must be power of 2 */
67 unsigned int size;
718e3744 68
40520c36
DW
69 /* If max_size is 0 there is no limit */
70 unsigned int max_size;
71
d62a17ae 72 /* Key make function. */
73 unsigned int (*hash_key)(void *);
718e3744 74
d62a17ae 75 /* Data compare function. */
74df8d6d 76 bool (*hash_cmp)(const void *, const void *);
718e3744 77
d62a17ae 78 /* Backet alloc. */
79 unsigned long count;
4db0cff1 80
d62a17ae 81 struct hashstats stats;
6f6f0010 82
d62a17ae 83 /* hash name */
84 char *name;
718e3744 85};
86
8234a987 87#define hashcount(X) ((X)->count)
88
6fd8c487
QY
89/*
90 * Create a hash table.
91 *
92 * The created hash table uses chaining and a user-provided comparator function
93 * to resolve collisions. For best performance use a perfect hash function.
94 * Worst case lookup time is O(N) when using a constant hash function. Best
95 * case lookup time is O(1) when using a perfect hash function.
96 *
97 * The initial size of the created hash table is HASH_INITIAL_SIZE.
98 *
99 * hash_key
100 * hash function to use; should return a unique unsigned integer when called
101 * with a data item. Collisions are acceptable.
102 *
103 * hash_cmp
104 * comparison function used for resolving collisions; when called with two
105 * data items, should return nonzero if the two items are equal and 0
106 * otherwise
107 *
108 * name
109 * optional name for the hashtable; this is used when displaying global
110 * hashtable statistics. If this parameter is NULL the hash's name will be
111 * set to NULL and the default name will be displayed when showing
112 * statistics.
113 *
114 * Returns:
115 * a new hash table
116 */
117extern struct hash *hash_create(unsigned int (*hash_key)(void *),
74df8d6d 118 bool (*hash_cmp)(const void *, const void *),
6fd8c487
QY
119 const char *name);
120
121/*
122 * Create a hash table.
123 *
124 * The created hash table uses chaining and a user-provided comparator function
125 * to resolve collisions. For best performance use a perfect hash function.
126 * Worst case lookup time is O(N) when using a constant hash function. Best
127 * case lookup time is O(1) when using a perfect hash function.
128 *
129 * size
130 * initial number of hash buckets to allocate; must be a power of 2 or the
131 * program will assert
132 *
133 * hash_key
134 * hash function to use; should return a unique unsigned integer when called
135 * with a data item. Collisions are acceptable.
136 *
137 * hash_cmp
138 * comparison function used for resolving collisions; when called with two
139 * data items, should return nonzero if the two items are equal and 0
140 * otherwise
141 *
142 * name
143 * optional name for the hashtable; this is used when displaying global
144 * hashtable statistics. If this parameter is NULL the hash's name will be
145 * set to NULL and the default name will be displayed when showing
146 * statistics.
147 *
148 * Returns:
149 * a new hash table
150 */
151extern struct hash *
152hash_create_size(unsigned int size, unsigned int (*hash_key)(void *),
74df8d6d
DS
153 bool (*hash_cmp)(const void *, const void *),
154 const char *name);
6fd8c487
QY
155
156/*
157 * Retrieve or insert data from / into a hash table.
158 *
159 * This function is somewhat counterintuitive in its usage. In order to look up
160 * an element from its key, you must provide the data item itself, with the
161 * portions used in the hash function set to the same values as the data item
162 * to retrieve. To insert a data element, either provide the key as just
163 * described and provide alloc_func as descrbied below to allocate the full
164 * data element, or provide the full data element and pass 'hash_alloc_intern'
165 * to alloc_func.
166 *
167 * hash
168 * hash table to operate on
169 *
170 * data
d3ce24ef
DS
171 * data to insert or retrieve - A hash backet will not be created if
172 * the alloc_func returns a NULL pointer and nothing will be added to
173 * the hash. As such backet->data will always be non-NULL.
6fd8c487
QY
174 *
175 * alloc_func
176 * function to call if the item is not found in the hash table. This
177 * function is called with the value of 'data' and should create the data
178 * item to insert and return a pointer to it. If the data has already been
179 * completely created and provided in the 'data' parameter, passing
180 * 'hash_alloc_intern' to this parameter will cause 'data' to be inserted.
181 * If this parameter is NULL, then this call to hash_get is equivalent to
182 * hash_lookup.
183 *
184 * Returns:
185 * the data item found or inserted, or NULL if alloc_func is NULL and the
186 * data is not found
187 */
188extern void *hash_get(struct hash *hash, void *data,
189 void *(*alloc_func)(void *));
190
191/*
192 * Dummy element allocation function.
193 *
194 * See hash_get for details.
195 *
196 * data
197 * data to insert into the hash table
198 *
199 * Returns:
200 * data
201 */
202extern void *hash_alloc_intern(void *data);
203
204/*
205 * Retrieve an item from a hash table.
206 *
207 * This function is equivalent to calling hash_get with alloc_func set to NULL.
208 *
209 * hash
210 * hash table to operate on
211 *
212 * data
213 * data element with values used for key computation set
214 *
215 * Returns:
216 * the data element if found, or NULL if not found
217 */
218extern void *hash_lookup(struct hash *hash, void *data);
718e3744 219
6fd8c487
QY
220/*
221 * Remove an element from a hash table.
222 *
223 * hash
224 * hash table to operate on
225 *
226 * data
227 * data element to remove with values used for key computation set
228 *
229 * Returns:
230 * the removed element if found, or NULL if not found
231 */
232extern void *hash_release(struct hash *hash, void *data);
718e3744 233
6fd8c487
QY
234/*
235 * Iterate over the elements in a hash table.
236 *
237 * It is safe to delete items passed to the iteration function from the hash
8b52179d
DS
238 * table during iteration. Please note that adding entries to the hash
239 * during the walk will cause undefined behavior in that some new entries
240 * will be walked and some will not. So do not do this.
6fd8c487 241 *
d3ce24ef
DS
242 * The backet passed to func will have a non-NULL data pointer.
243 *
6fd8c487
QY
244 * hash
245 * hash table to operate on
246 *
247 * func
248 * function to call with each data item
249 *
250 * arg
251 * arbitrary argument passed as the second parameter in each call to 'func'
252 */
253extern void hash_iterate(struct hash *hash,
254 void (*func)(struct hash_backet *, void *), void *arg);
718e3744 255
6fd8c487
QY
256/*
257 * Iterate over the elements in a hash table, stopping on condition.
258 *
259 * It is safe to delete items passed to the iteration function from the hash
8b52179d
DS
260 * table during iteration. Please note that adding entries to the hash
261 * during the walk will cause undefined behavior in that some new entries
262 * will be walked and some will not. So do not do this.
6fd8c487 263 *
d3ce24ef
DS
264 * The backet passed to func will have a non-NULL data pointer.
265 *
6fd8c487
QY
266 * hash
267 * hash table to operate on
268 *
269 * func
270 * function to call with each data item. If this function returns
271 * HASHWALK_ABORT then the iteration stops.
272 *
273 * arg
274 * arbitrary argument passed as the second parameter in each call to 'func'
275 */
276extern void hash_walk(struct hash *hash,
277 int (*func)(struct hash_backet *, void *), void *arg);
3f9c7369 278
6fd8c487
QY
279/*
280 * Remove all elements from a hash table.
281 *
282 * hash
283 * hash table to operate on
284 *
285 * free_func
286 * function to call with each removed item; intended to free the data
287 */
288extern void hash_clean(struct hash *hash, void (*free_func)(void *));
289
290/*
291 * Delete a hash table.
292 *
293 * This function assumes the table is empty. Call hash_clean to delete the
294 * hashtable contents if necessary.
295 *
296 * hash
297 * hash table to delete
298 */
299extern void hash_free(struct hash *hash);
718e3744 300
91f10370
QY
301/*
302 * Converts a hash table to an unsorted linked list.
303 * Does not modify the hash table in any way.
304 *
305 * hash
6fd8c487 306 * hash table to convert
91f10370
QY
307 */
308extern struct list *hash_to_list(struct hash *hash);
309
6fd8c487
QY
310/*
311 * Hash a string using the modified Bernstein hash.
312 *
313 * This is not a perfect hash function.
314 *
315 * str
316 * string to hash
317 *
318 * Returns:
319 * modified Bernstein hash of the string
320 */
d62a17ae 321extern unsigned int string_hash_make(const char *);
6392aa83 322
6fd8c487
QY
323/*
324 * Install CLI commands for viewing global hash table statistics.
325 */
d62a17ae 326extern void hash_cmd_init(void);
4db0cff1 327
718e3744 328#endif /* _ZEBRA_HASH_H */