hash.h revision 1.9 1 /* $NetBSD: hash.h,v 1.9 2001/06/11 01:50:50 wiz Exp $ */
2
3 /*-
4 * Copyright (c) 1990, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Margo Seltzer.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)hash.h 8.3 (Berkeley) 5/31/94
39 */
40
41 /* Operations */
42 typedef enum {
43 HASH_GET, HASH_PUT, HASH_PUTNEW, HASH_DELETE, HASH_FIRST, HASH_NEXT
44 } ACTION;
45
46 /* Buffer Management structures */
47 typedef struct _bufhead BUFHEAD;
48
49 struct _bufhead {
50 BUFHEAD *prev; /* LRU links */
51 BUFHEAD *next; /* LRU links */
52 BUFHEAD *ovfl; /* Overflow page buffer header */
53 u_int32_t addr; /* Address of this page */
54 char *page; /* Actual page data */
55 char flags;
56 #define BUF_MOD 0x0001
57 #define BUF_DISK 0x0002
58 #define BUF_BUCKET 0x0004
59 #define BUF_PIN 0x0008
60 };
61
62 #define IS_BUCKET(X) ((X) & BUF_BUCKET)
63
64 typedef BUFHEAD **SEGMENT;
65
66 /* Hash Table Information */
67 typedef struct hashhdr { /* Disk resident portion */
68 int magic; /* Magic NO for hash tables */
69 int version; /* Version ID */
70 u_int32_t lorder; /* Byte Order */
71 int bsize; /* Bucket/Page Size */
72 int bshift; /* Bucket shift */
73 int dsize; /* Directory Size */
74 int ssize; /* Segment Size */
75 int sshift; /* Segment shift */
76 int ovfl_point; /* Where overflow pages are being
77 * allocated */
78 int last_freed; /* Last overflow page freed */
79 int max_bucket; /* ID of Maximum bucket in use */
80 int high_mask; /* Mask to modulo into entire table */
81 int low_mask; /* Mask to modulo into lower half of
82 * table */
83 int ffactor; /* Fill factor */
84 int nkeys; /* Number of keys in hash table */
85 int hdrpages; /* Size of table header */
86 int h_charkey; /* value of hash(CHARKEY) */
87 #define NCACHED 32 /* number of bit maps and spare
88 * points */
89 int spares[NCACHED];/* spare pages for overflow */
90 u_int16_t bitmaps[NCACHED]; /* address of overflow page
91 * bitmaps */
92 } HASHHDR;
93
94 typedef struct htab { /* Memory resident data structure */
95 HASHHDR hdr; /* Header */
96 int nsegs; /* Number of allocated segments */
97 int exsegs; /* Number of extra allocated
98 * segments */
99 u_int32_t /* Hash function */
100 (*hash)__P((const void *, size_t));
101 int flags; /* Flag values */
102 int fp; /* File pointer */
103 char *tmp_buf; /* Temporary Buffer for BIG data */
104 char *tmp_key; /* Temporary Buffer for BIG keys */
105 BUFHEAD *cpage; /* Current page */
106 int cbucket; /* Current bucket */
107 int cndx; /* Index of next item on cpage */
108 int err; /* Error Number -- for DBM
109 * compatibility */
110 int new_file; /* Indicates if fd is backing store
111 * or no */
112 int save_file; /* Indicates whether we need to flush
113 * file at
114 * exit */
115 u_int32_t *mapp[NCACHED]; /* Pointers to page maps */
116 int nmaps; /* Initial number of bitmaps */
117 int nbufs; /* Number of buffers left to
118 * allocate */
119 BUFHEAD bufhead; /* Header of buffer lru list */
120 SEGMENT *dir; /* Hash Bucket directory */
121 } HTAB;
122
123 /*
124 * Constants
125 */
126 #define MAX_BSIZE 65536 /* 2^16 */
127 #define MIN_BUFFERS 6
128 #define MINHDRSIZE 512
129 #define DEF_BUFSIZE 65536 /* 64 K */
130 #define DEF_BUCKET_SIZE 4096
131 #define DEF_BUCKET_SHIFT 12 /* log2(BUCKET) */
132 #define DEF_SEGSIZE 256
133 #define DEF_SEGSIZE_SHIFT 8 /* log2(SEGSIZE) */
134 #define DEF_DIRSIZE 256
135 #define DEF_FFACTOR 65536
136 #define MIN_FFACTOR 4
137 #define SPLTMAX 8
138 #define CHARKEY "%$sniglet^&"
139 #define NUMKEY 1038583
140 #define BYTE_SHIFT 3
141 #define INT_TO_BYTE 2
142 #define INT_BYTE_SHIFT 5
143 #define ALL_SET ((u_int32_t)0xFFFFFFFF)
144 #define ALL_CLEAR 0
145
146 #define PTROF(X) ((BUFHEAD *)(void *)((u_long)(X)&~0x3))
147 #define ISMOD(X) ((u_int32_t)(u_long)(X)&0x1)
148 #define DOMOD(X) ((X) = (char *)(void *)((u_long)(X)|0x1))
149 #define ISDISK(X) ((u_int32_t)(u_long)(X)&0x2)
150 #define DODISK(X) ((X) = (char *)(void *)((u_long)(X)|0x2))
151
152 #define BITS_PER_MAP 32
153
154 /* Given the address of the beginning of a big map, clear/set the nth bit */
155 #define CLRBIT(A, N) ((A)[(N)/BITS_PER_MAP] &= ~(1<<((N)%BITS_PER_MAP)))
156 #define SETBIT(A, N) ((A)[(N)/BITS_PER_MAP] |= (1<<((N)%BITS_PER_MAP)))
157 #define ISSET(A, N) ((A)[(N)/BITS_PER_MAP] & (1<<((N)%BITS_PER_MAP)))
158
159 /* Overflow management */
160 /*
161 * Overflow page numbers are allocated per split point. At each doubling of
162 * the table, we can allocate extra pages. So, an overflow page number has
163 * the top 5 bits indicate which split point and the lower 11 bits indicate
164 * which page at that split point is indicated (pages within split points are
165 * numberered starting with 1).
166 */
167
168 #define SPLITSHIFT 11
169 #define SPLITMASK 0x7FF
170 #define SPLITNUM(N) (((u_int32_t)(N)) >> SPLITSHIFT)
171 #define OPAGENUM(N) ((N) & SPLITMASK)
172 #define OADDR_OF(S,O) ((u_int32_t)((u_int32_t)(S) << SPLITSHIFT) + (O))
173
174 #define BUCKET_TO_PAGE(B) \
175 (B) + hashp->HDRPAGES + \
176 ((B) ? hashp->SPARES[__log2((u_int32_t)((B)+1))-1] : 0)
177 #define OADDR_TO_PAGE(B) \
178 BUCKET_TO_PAGE ( (1 << SPLITNUM((B))) -1 ) + OPAGENUM((B));
179
180 /*
181 * page.h contains a detailed description of the page format.
182 *
183 * Normally, keys and data are accessed from offset tables in the top of
184 * each page which point to the beginning of the key and data. There are
185 * four flag values which may be stored in these offset tables which indicate
186 * the following:
187 *
188 *
189 * OVFLPAGE Rather than a key data pair, this pair contains
190 * the address of an overflow page. The format of
191 * the pair is:
192 * OVERFLOW_PAGE_NUMBER OVFLPAGE
193 *
194 * PARTIAL_KEY This must be the first key/data pair on a page
195 * and implies that page contains only a partial key.
196 * That is, the key is too big to fit on a single page
197 * so it starts on this page and continues on the next.
198 * The format of the page is:
199 * KEY_OFF PARTIAL_KEY OVFL_PAGENO OVFLPAGE
200 *
201 * KEY_OFF -- offset of the beginning of the key
202 * PARTIAL_KEY -- 1
203 * OVFL_PAGENO - page number of the next overflow page
204 * OVFLPAGE -- 0
205 *
206 * FULL_KEY This must be the first key/data pair on the page. It
207 * is used in two cases.
208 *
209 * Case 1:
210 * There is a complete key on the page but no data
211 * (because it wouldn't fit). The next page contains
212 * the data.
213 *
214 * Page format it:
215 * KEY_OFF FULL_KEY OVFL_PAGENO OVFL_PAGE
216 *
217 * KEY_OFF -- offset of the beginning of the key
218 * FULL_KEY -- 2
219 * OVFL_PAGENO - page number of the next overflow page
220 * OVFLPAGE -- 0
221 *
222 * Case 2:
223 * This page contains no key, but part of a large
224 * data field, which is continued on the next page.
225 *
226 * Page format it:
227 * DATA_OFF FULL_KEY OVFL_PAGENO OVFL_PAGE
228 *
229 * KEY_OFF -- offset of the beginning of the data on
230 * this page
231 * FULL_KEY -- 2
232 * OVFL_PAGENO - page number of the next overflow page
233 * OVFLPAGE -- 0
234 *
235 * FULL_KEY_DATA
236 * This must be the first key/data pair on the page.
237 * There are two cases:
238 *
239 * Case 1:
240 * This page contains a key and the beginning of the
241 * data field, but the data field is continued on the
242 * next page.
243 *
244 * Page format is:
245 * KEY_OFF FULL_KEY_DATA OVFL_PAGENO DATA_OFF
246 *
247 * KEY_OFF -- offset of the beginning of the key
248 * FULL_KEY_DATA -- 3
249 * OVFL_PAGENO - page number of the next overflow page
250 * DATA_OFF -- offset of the beginning of the data
251 *
252 * Case 2:
253 * This page contains the last page of a big data pair.
254 * There is no key, only the tail end of the data
255 * on this page.
256 *
257 * Page format is:
258 * DATA_OFF FULL_KEY_DATA <OVFL_PAGENO> <OVFLPAGE>
259 *
260 * DATA_OFF -- offset of the beginning of the data on
261 * this page
262 * FULL_KEY_DATA -- 3
263 * OVFL_PAGENO - page number of the next overflow page
264 * OVFLPAGE -- 0
265 *
266 * OVFL_PAGENO and OVFLPAGE are optional (they are
267 * not present if there is no next page).
268 */
269
270 #define OVFLPAGE 0
271 #define PARTIAL_KEY 1
272 #define FULL_KEY 2
273 #define FULL_KEY_DATA 3
274 #define REAL_KEY 4
275
276 /* Short hands for accessing structure */
277 #define BSIZE hdr.bsize
278 #define BSHIFT hdr.bshift
279 #define DSIZE hdr.dsize
280 #define SGSIZE hdr.ssize
281 #define SSHIFT hdr.sshift
282 #define LORDER hdr.lorder
283 #define OVFL_POINT hdr.ovfl_point
284 #define LAST_FREED hdr.last_freed
285 #define MAX_BUCKET hdr.max_bucket
286 #define FFACTOR hdr.ffactor
287 #define HIGH_MASK hdr.high_mask
288 #define LOW_MASK hdr.low_mask
289 #define NKEYS hdr.nkeys
290 #define HDRPAGES hdr.hdrpages
291 #define SPARES hdr.spares
292 #define BITMAPS hdr.bitmaps
293 #define VERSION hdr.version
294 #define MAGIC hdr.magic
295 #define NEXT_FREE hdr.next_free
296 #define H_CHARKEY hdr.h_charkey
297