hash.c revision 1.13 1 1.13 thorpej /* $NetBSD: hash.c,v 1.13 1998/06/30 21:30:52 thorpej Exp $ */
2 1.8 cgd
3 1.1 cgd /*-
4 1.7 cgd * Copyright (c) 1990, 1993, 1994
5 1.1 cgd * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Margo Seltzer.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.1 cgd * 3. All advertising materials mentioning features or use of this software
19 1.1 cgd * must display the following acknowledgement:
20 1.1 cgd * This product includes software developed by the University of
21 1.1 cgd * California, Berkeley and its contributors.
22 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
23 1.1 cgd * may be used to endorse or promote products derived from this software
24 1.1 cgd * without specific prior written permission.
25 1.1 cgd *
26 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 cgd * SUCH DAMAGE.
37 1.1 cgd */
38 1.1 cgd
39 1.11 christos #include <sys/cdefs.h>
40 1.1 cgd #if defined(LIBC_SCCS) && !defined(lint)
41 1.8 cgd #if 0
42 1.7 cgd static char sccsid[] = "@(#)hash.c 8.9 (Berkeley) 6/16/94";
43 1.8 cgd #else
44 1.13 thorpej __RCSID("$NetBSD: hash.c,v 1.13 1998/06/30 21:30:52 thorpej Exp $");
45 1.8 cgd #endif
46 1.1 cgd #endif /* LIBC_SCCS and not lint */
47 1.1 cgd
48 1.1 cgd #include <sys/param.h>
49 1.1 cgd #include <sys/stat.h>
50 1.1 cgd
51 1.1 cgd #include <errno.h>
52 1.1 cgd #include <fcntl.h>
53 1.1 cgd #include <stdio.h>
54 1.1 cgd #include <stdlib.h>
55 1.1 cgd #include <string.h>
56 1.1 cgd #include <unistd.h>
57 1.1 cgd #ifdef DEBUG
58 1.1 cgd #include <assert.h>
59 1.1 cgd #endif
60 1.1 cgd
61 1.1 cgd #include <db.h>
62 1.1 cgd #include "hash.h"
63 1.1 cgd #include "page.h"
64 1.1 cgd #include "extern.h"
65 1.1 cgd
66 1.1 cgd static int alloc_segs __P((HTAB *, int));
67 1.1 cgd static int flush_meta __P((HTAB *));
68 1.1 cgd static int hash_access __P((HTAB *, ACTION, DBT *, DBT *));
69 1.1 cgd static int hash_close __P((DB *));
70 1.7 cgd static int hash_delete __P((const DB *, const DBT *, u_int32_t));
71 1.1 cgd static int hash_fd __P((const DB *));
72 1.7 cgd static int hash_get __P((const DB *, const DBT *, DBT *, u_int32_t));
73 1.7 cgd static int hash_put __P((const DB *, DBT *, const DBT *, u_int32_t));
74 1.1 cgd static void *hash_realloc __P((SEGMENT **, int, int));
75 1.7 cgd static int hash_seq __P((const DB *, DBT *, DBT *, u_int32_t));
76 1.7 cgd static int hash_sync __P((const DB *, u_int32_t));
77 1.1 cgd static int hdestroy __P((HTAB *));
78 1.1 cgd static HTAB *init_hash __P((HTAB *, const char *, HASHINFO *));
79 1.1 cgd static int init_htab __P((HTAB *, int));
80 1.1 cgd #if BYTE_ORDER == LITTLE_ENDIAN
81 1.1 cgd static void swap_header __P((HTAB *));
82 1.1 cgd static void swap_header_copy __P((HASHHDR *, HASHHDR *));
83 1.1 cgd #endif
84 1.1 cgd
85 1.1 cgd /* Fast arithmetic, relying on powers of 2, */
86 1.1 cgd #define MOD(x, y) ((x) & ((y) - 1))
87 1.1 cgd
88 1.1 cgd #define RETURN_ERROR(ERR, LOC) { save_errno = ERR; goto LOC; }
89 1.1 cgd
90 1.1 cgd /* Return values */
91 1.1 cgd #define SUCCESS (0)
92 1.1 cgd #define ERROR (-1)
93 1.1 cgd #define ABNORMAL (1)
94 1.1 cgd
95 1.1 cgd #ifdef HASH_STATISTICS
96 1.7 cgd int hash_accesses, hash_collisions, hash_expansions, hash_overflows;
97 1.1 cgd #endif
98 1.1 cgd
99 1.1 cgd /************************** INTERFACE ROUTINES ***************************/
100 1.1 cgd /* OPEN/CLOSE */
101 1.1 cgd
102 1.1 cgd extern DB *
103 1.4 cgd __hash_open(file, flags, mode, info, dflags)
104 1.1 cgd const char *file;
105 1.12 kleink int flags;
106 1.12 kleink mode_t mode;
107 1.1 cgd const HASHINFO *info; /* Special directives for create */
108 1.12 kleink int dflags;
109 1.1 cgd {
110 1.1 cgd HTAB *hashp;
111 1.1 cgd struct stat statbuf;
112 1.1 cgd DB *dbp;
113 1.1 cgd int bpages, hdrsize, new_table, nsegs, save_errno;
114 1.1 cgd
115 1.1 cgd if ((flags & O_ACCMODE) == O_WRONLY) {
116 1.1 cgd errno = EINVAL;
117 1.1 cgd return (NULL);
118 1.1 cgd }
119 1.1 cgd
120 1.7 cgd if (!(hashp = (HTAB *)calloc(1, sizeof(HTAB))))
121 1.1 cgd return (NULL);
122 1.1 cgd hashp->fp = -1;
123 1.4 cgd
124 1.1 cgd /*
125 1.4 cgd * Even if user wants write only, we need to be able to read
126 1.4 cgd * the actual file, so we need to open it read/write. But, the
127 1.4 cgd * field in the hashp structure needs to be accurate so that
128 1.1 cgd * we can check accesses.
129 1.1 cgd */
130 1.4 cgd hashp->flags = flags;
131 1.1 cgd
132 1.1 cgd new_table = 0;
133 1.1 cgd if (!file || (flags & O_TRUNC) ||
134 1.1 cgd (stat(file, &statbuf) && (errno == ENOENT))) {
135 1.1 cgd if (errno == ENOENT)
136 1.1 cgd errno = 0; /* Just in case someone looks at errno */
137 1.1 cgd new_table = 1;
138 1.1 cgd }
139 1.1 cgd if (file) {
140 1.1 cgd if ((hashp->fp = open(file, flags, mode)) == -1)
141 1.1 cgd RETURN_ERROR(errno, error0);
142 1.1 cgd (void)fcntl(hashp->fp, F_SETFD, 1);
143 1.1 cgd }
144 1.1 cgd if (new_table) {
145 1.1 cgd if (!(hashp = init_hash(hashp, file, (HASHINFO *)info)))
146 1.1 cgd RETURN_ERROR(errno, error1);
147 1.1 cgd } else {
148 1.1 cgd /* Table already exists */
149 1.1 cgd if (info && info->hash)
150 1.1 cgd hashp->hash = info->hash;
151 1.1 cgd else
152 1.1 cgd hashp->hash = __default_hash;
153 1.1 cgd
154 1.1 cgd hdrsize = read(hashp->fp, &hashp->hdr, sizeof(HASHHDR));
155 1.1 cgd #if BYTE_ORDER == LITTLE_ENDIAN
156 1.1 cgd swap_header(hashp);
157 1.1 cgd #endif
158 1.1 cgd if (hdrsize == -1)
159 1.1 cgd RETURN_ERROR(errno, error1);
160 1.1 cgd if (hdrsize != sizeof(HASHHDR))
161 1.1 cgd RETURN_ERROR(EFTYPE, error1);
162 1.1 cgd /* Verify file type, versions and hash function */
163 1.1 cgd if (hashp->MAGIC != HASHMAGIC)
164 1.1 cgd RETURN_ERROR(EFTYPE, error1);
165 1.5 cgd #define OLDHASHVERSION 1
166 1.5 cgd if (hashp->VERSION != HASHVERSION &&
167 1.5 cgd hashp->VERSION != OLDHASHVERSION)
168 1.1 cgd RETURN_ERROR(EFTYPE, error1);
169 1.1 cgd if (hashp->hash(CHARKEY, sizeof(CHARKEY)) != hashp->H_CHARKEY)
170 1.1 cgd RETURN_ERROR(EFTYPE, error1);
171 1.1 cgd /*
172 1.1 cgd * Figure out how many segments we need. Max_Bucket is the
173 1.1 cgd * maximum bucket number, so the number of buckets is
174 1.1 cgd * max_bucket + 1.
175 1.1 cgd */
176 1.1 cgd nsegs = (hashp->MAX_BUCKET + 1 + hashp->SGSIZE - 1) /
177 1.1 cgd hashp->SGSIZE;
178 1.1 cgd hashp->nsegs = 0;
179 1.1 cgd if (alloc_segs(hashp, nsegs))
180 1.1 cgd /*
181 1.1 cgd * If alloc_segs fails, table will have been destroyed
182 1.1 cgd * and errno will have been set.
183 1.1 cgd */
184 1.1 cgd return (NULL);
185 1.1 cgd /* Read in bitmaps */
186 1.1 cgd bpages = (hashp->SPARES[hashp->OVFL_POINT] +
187 1.1 cgd (hashp->BSIZE << BYTE_SHIFT) - 1) >>
188 1.1 cgd (hashp->BSHIFT + BYTE_SHIFT);
189 1.1 cgd
190 1.1 cgd hashp->nmaps = bpages;
191 1.7 cgd (void)memset(&hashp->mapp[0], 0, bpages * sizeof(u_int32_t *));
192 1.1 cgd }
193 1.1 cgd
194 1.1 cgd /* Initialize Buffer Manager */
195 1.1 cgd if (info && info->cachesize)
196 1.1 cgd __buf_init(hashp, info->cachesize);
197 1.1 cgd else
198 1.1 cgd __buf_init(hashp, DEF_BUFSIZE);
199 1.1 cgd
200 1.1 cgd hashp->new_file = new_table;
201 1.1 cgd hashp->save_file = file && (hashp->flags & O_RDWR);
202 1.1 cgd hashp->cbucket = -1;
203 1.7 cgd if (!(dbp = (DB *)malloc(sizeof(DB)))) {
204 1.1 cgd save_errno = errno;
205 1.1 cgd hdestroy(hashp);
206 1.1 cgd errno = save_errno;
207 1.1 cgd return (NULL);
208 1.1 cgd }
209 1.1 cgd dbp->internal = hashp;
210 1.1 cgd dbp->close = hash_close;
211 1.1 cgd dbp->del = hash_delete;
212 1.1 cgd dbp->fd = hash_fd;
213 1.1 cgd dbp->get = hash_get;
214 1.1 cgd dbp->put = hash_put;
215 1.1 cgd dbp->seq = hash_seq;
216 1.1 cgd dbp->sync = hash_sync;
217 1.1 cgd dbp->type = DB_HASH;
218 1.1 cgd
219 1.1 cgd #ifdef DEBUG
220 1.1 cgd (void)fprintf(stderr,
221 1.1 cgd "%s\n%s%x\n%s%d\n%s%d\n%s%d\n%s%d\n%s%d\n%s%d\n%s%d\n%s%d\n%s%d\n%s%x\n%s%x\n%s%d\n%s%d\n",
222 1.1 cgd "init_htab:",
223 1.1 cgd "TABLE POINTER ", hashp,
224 1.1 cgd "BUCKET SIZE ", hashp->BSIZE,
225 1.1 cgd "BUCKET SHIFT ", hashp->BSHIFT,
226 1.1 cgd "DIRECTORY SIZE ", hashp->DSIZE,
227 1.1 cgd "SEGMENT SIZE ", hashp->SGSIZE,
228 1.1 cgd "SEGMENT SHIFT ", hashp->SSHIFT,
229 1.1 cgd "FILL FACTOR ", hashp->FFACTOR,
230 1.1 cgd "MAX BUCKET ", hashp->MAX_BUCKET,
231 1.1 cgd "OVFL POINT ", hashp->OVFL_POINT,
232 1.1 cgd "LAST FREED ", hashp->LAST_FREED,
233 1.1 cgd "HIGH MASK ", hashp->HIGH_MASK,
234 1.1 cgd "LOW MASK ", hashp->LOW_MASK,
235 1.1 cgd "NSEGS ", hashp->nsegs,
236 1.1 cgd "NKEYS ", hashp->NKEYS);
237 1.1 cgd #endif
238 1.1 cgd #ifdef HASH_STATISTICS
239 1.1 cgd hash_overflows = hash_accesses = hash_collisions = hash_expansions = 0;
240 1.1 cgd #endif
241 1.1 cgd return (dbp);
242 1.1 cgd
243 1.1 cgd error1:
244 1.1 cgd if (hashp != NULL)
245 1.1 cgd (void)close(hashp->fp);
246 1.1 cgd
247 1.1 cgd error0:
248 1.1 cgd free(hashp);
249 1.1 cgd errno = save_errno;
250 1.1 cgd return (NULL);
251 1.1 cgd }
252 1.1 cgd
253 1.1 cgd static int
254 1.1 cgd hash_close(dbp)
255 1.1 cgd DB *dbp;
256 1.1 cgd {
257 1.1 cgd HTAB *hashp;
258 1.1 cgd int retval;
259 1.1 cgd
260 1.1 cgd if (!dbp)
261 1.1 cgd return (ERROR);
262 1.1 cgd
263 1.1 cgd hashp = (HTAB *)dbp->internal;
264 1.1 cgd retval = hdestroy(hashp);
265 1.1 cgd free(dbp);
266 1.1 cgd return (retval);
267 1.1 cgd }
268 1.1 cgd
269 1.1 cgd static int
270 1.1 cgd hash_fd(dbp)
271 1.1 cgd const DB *dbp;
272 1.1 cgd {
273 1.1 cgd HTAB *hashp;
274 1.1 cgd
275 1.1 cgd if (!dbp)
276 1.1 cgd return (ERROR);
277 1.1 cgd
278 1.1 cgd hashp = (HTAB *)dbp->internal;
279 1.1 cgd if (hashp->fp == -1) {
280 1.1 cgd errno = ENOENT;
281 1.1 cgd return (-1);
282 1.1 cgd }
283 1.1 cgd return (hashp->fp);
284 1.1 cgd }
285 1.1 cgd
286 1.1 cgd /************************** LOCAL CREATION ROUTINES **********************/
287 1.1 cgd static HTAB *
288 1.1 cgd init_hash(hashp, file, info)
289 1.1 cgd HTAB *hashp;
290 1.1 cgd const char *file;
291 1.1 cgd HASHINFO *info;
292 1.1 cgd {
293 1.1 cgd struct stat statbuf;
294 1.1 cgd int nelem;
295 1.1 cgd
296 1.1 cgd nelem = 1;
297 1.1 cgd hashp->NKEYS = 0;
298 1.1 cgd hashp->LORDER = BYTE_ORDER;
299 1.1 cgd hashp->BSIZE = DEF_BUCKET_SIZE;
300 1.1 cgd hashp->BSHIFT = DEF_BUCKET_SHIFT;
301 1.1 cgd hashp->SGSIZE = DEF_SEGSIZE;
302 1.1 cgd hashp->SSHIFT = DEF_SEGSIZE_SHIFT;
303 1.1 cgd hashp->DSIZE = DEF_DIRSIZE;
304 1.1 cgd hashp->FFACTOR = DEF_FFACTOR;
305 1.1 cgd hashp->hash = __default_hash;
306 1.1 cgd memset(hashp->SPARES, 0, sizeof(hashp->SPARES));
307 1.1 cgd memset(hashp->BITMAPS, 0, sizeof (hashp->BITMAPS));
308 1.1 cgd
309 1.1 cgd /* Fix bucket size to be optimal for file system */
310 1.1 cgd if (file != NULL) {
311 1.1 cgd if (stat(file, &statbuf))
312 1.1 cgd return (NULL);
313 1.1 cgd hashp->BSIZE = statbuf.st_blksize;
314 1.1 cgd hashp->BSHIFT = __log2(hashp->BSIZE);
315 1.1 cgd }
316 1.1 cgd
317 1.1 cgd if (info) {
318 1.1 cgd if (info->bsize) {
319 1.1 cgd /* Round pagesize up to power of 2 */
320 1.1 cgd hashp->BSHIFT = __log2(info->bsize);
321 1.1 cgd hashp->BSIZE = 1 << hashp->BSHIFT;
322 1.1 cgd if (hashp->BSIZE > MAX_BSIZE) {
323 1.1 cgd errno = EINVAL;
324 1.1 cgd return (NULL);
325 1.1 cgd }
326 1.1 cgd }
327 1.1 cgd if (info->ffactor)
328 1.1 cgd hashp->FFACTOR = info->ffactor;
329 1.1 cgd if (info->hash)
330 1.1 cgd hashp->hash = info->hash;
331 1.1 cgd if (info->nelem)
332 1.1 cgd nelem = info->nelem;
333 1.1 cgd if (info->lorder) {
334 1.1 cgd if (info->lorder != BIG_ENDIAN &&
335 1.1 cgd info->lorder != LITTLE_ENDIAN) {
336 1.1 cgd errno = EINVAL;
337 1.1 cgd return (NULL);
338 1.1 cgd }
339 1.1 cgd hashp->LORDER = info->lorder;
340 1.1 cgd }
341 1.1 cgd }
342 1.1 cgd /* init_htab should destroy the table and set errno if it fails */
343 1.1 cgd if (init_htab(hashp, nelem))
344 1.1 cgd return (NULL);
345 1.1 cgd else
346 1.1 cgd return (hashp);
347 1.1 cgd }
348 1.1 cgd /*
349 1.1 cgd * This calls alloc_segs which may run out of memory. Alloc_segs will destroy
350 1.1 cgd * the table and set errno, so we just pass the error information along.
351 1.1 cgd *
352 1.1 cgd * Returns 0 on No Error
353 1.1 cgd */
354 1.1 cgd static int
355 1.1 cgd init_htab(hashp, nelem)
356 1.1 cgd HTAB *hashp;
357 1.1 cgd int nelem;
358 1.1 cgd {
359 1.1 cgd register int nbuckets, nsegs;
360 1.1 cgd int l2;
361 1.1 cgd
362 1.1 cgd /*
363 1.1 cgd * Divide number of elements by the fill factor and determine a
364 1.1 cgd * desired number of buckets. Allocate space for the next greater
365 1.1 cgd * power of two number of buckets.
366 1.1 cgd */
367 1.1 cgd nelem = (nelem - 1) / hashp->FFACTOR + 1;
368 1.1 cgd
369 1.1 cgd l2 = __log2(MAX(nelem, 2));
370 1.1 cgd nbuckets = 1 << l2;
371 1.1 cgd
372 1.1 cgd hashp->SPARES[l2] = l2 + 1;
373 1.1 cgd hashp->SPARES[l2 + 1] = l2 + 1;
374 1.1 cgd hashp->OVFL_POINT = l2;
375 1.1 cgd hashp->LAST_FREED = 2;
376 1.1 cgd
377 1.1 cgd /* First bitmap page is at: splitpoint l2 page offset 1 */
378 1.7 cgd if (__ibitmap(hashp, OADDR_OF(l2, 1), l2 + 1, 0))
379 1.1 cgd return (-1);
380 1.1 cgd
381 1.1 cgd hashp->MAX_BUCKET = hashp->LOW_MASK = nbuckets - 1;
382 1.1 cgd hashp->HIGH_MASK = (nbuckets << 1) - 1;
383 1.1 cgd hashp->HDRPAGES = ((MAX(sizeof(HASHHDR), MINHDRSIZE) - 1) >>
384 1.1 cgd hashp->BSHIFT) + 1;
385 1.1 cgd
386 1.1 cgd nsegs = (nbuckets - 1) / hashp->SGSIZE + 1;
387 1.1 cgd nsegs = 1 << __log2(nsegs);
388 1.1 cgd
389 1.1 cgd if (nsegs > hashp->DSIZE)
390 1.1 cgd hashp->DSIZE = nsegs;
391 1.1 cgd return (alloc_segs(hashp, nsegs));
392 1.1 cgd }
393 1.1 cgd
394 1.1 cgd /********************** DESTROY/CLOSE ROUTINES ************************/
395 1.1 cgd
396 1.1 cgd /*
397 1.1 cgd * Flushes any changes to the file if necessary and destroys the hashp
398 1.1 cgd * structure, freeing all allocated space.
399 1.1 cgd */
400 1.1 cgd static int
401 1.1 cgd hdestroy(hashp)
402 1.1 cgd HTAB *hashp;
403 1.1 cgd {
404 1.1 cgd int i, save_errno;
405 1.1 cgd
406 1.1 cgd save_errno = 0;
407 1.1 cgd
408 1.1 cgd #ifdef HASH_STATISTICS
409 1.1 cgd (void)fprintf(stderr, "hdestroy: accesses %ld collisions %ld\n",
410 1.1 cgd hash_accesses, hash_collisions);
411 1.1 cgd (void)fprintf(stderr, "hdestroy: expansions %ld\n",
412 1.1 cgd hash_expansions);
413 1.1 cgd (void)fprintf(stderr, "hdestroy: overflows %ld\n",
414 1.1 cgd hash_overflows);
415 1.1 cgd (void)fprintf(stderr, "keys %ld maxp %d segmentcount %d\n",
416 1.1 cgd hashp->NKEYS, hashp->MAX_BUCKET, hashp->nsegs);
417 1.1 cgd
418 1.1 cgd for (i = 0; i < NCACHED; i++)
419 1.1 cgd (void)fprintf(stderr,
420 1.1 cgd "spares[%d] = %d\n", i, hashp->SPARES[i]);
421 1.1 cgd #endif
422 1.1 cgd /*
423 1.1 cgd * Call on buffer manager to free buffers, and if required,
424 1.1 cgd * write them to disk.
425 1.1 cgd */
426 1.1 cgd if (__buf_free(hashp, 1, hashp->save_file))
427 1.1 cgd save_errno = errno;
428 1.1 cgd if (hashp->dir) {
429 1.1 cgd free(*hashp->dir); /* Free initial segments */
430 1.1 cgd /* Free extra segments */
431 1.1 cgd while (hashp->exsegs--)
432 1.1 cgd free(hashp->dir[--hashp->nsegs]);
433 1.1 cgd free(hashp->dir);
434 1.1 cgd }
435 1.1 cgd if (flush_meta(hashp) && !save_errno)
436 1.1 cgd save_errno = errno;
437 1.1 cgd /* Free Bigmaps */
438 1.1 cgd for (i = 0; i < hashp->nmaps; i++)
439 1.1 cgd if (hashp->mapp[i])
440 1.1 cgd free(hashp->mapp[i]);
441 1.1 cgd
442 1.1 cgd if (hashp->fp != -1)
443 1.1 cgd (void)close(hashp->fp);
444 1.6 cgd
445 1.6 cgd free(hashp);
446 1.1 cgd
447 1.1 cgd if (save_errno) {
448 1.1 cgd errno = save_errno;
449 1.1 cgd return (ERROR);
450 1.1 cgd }
451 1.1 cgd return (SUCCESS);
452 1.1 cgd }
453 1.1 cgd /*
454 1.1 cgd * Write modified pages to disk
455 1.1 cgd *
456 1.1 cgd * Returns:
457 1.1 cgd * 0 == OK
458 1.1 cgd * -1 ERROR
459 1.1 cgd */
460 1.1 cgd static int
461 1.1 cgd hash_sync(dbp, flags)
462 1.1 cgd const DB *dbp;
463 1.7 cgd u_int32_t flags;
464 1.1 cgd {
465 1.1 cgd HTAB *hashp;
466 1.1 cgd
467 1.1 cgd if (flags != 0) {
468 1.1 cgd errno = EINVAL;
469 1.1 cgd return (ERROR);
470 1.1 cgd }
471 1.1 cgd
472 1.1 cgd if (!dbp)
473 1.1 cgd return (ERROR);
474 1.1 cgd
475 1.1 cgd hashp = (HTAB *)dbp->internal;
476 1.1 cgd if (!hashp->save_file)
477 1.1 cgd return (0);
478 1.1 cgd if (__buf_free(hashp, 0, 1) || flush_meta(hashp))
479 1.1 cgd return (ERROR);
480 1.1 cgd hashp->new_file = 0;
481 1.1 cgd return (0);
482 1.1 cgd }
483 1.1 cgd
484 1.1 cgd /*
485 1.1 cgd * Returns:
486 1.1 cgd * 0 == OK
487 1.1 cgd * -1 indicates that errno should be set
488 1.1 cgd */
489 1.1 cgd static int
490 1.1 cgd flush_meta(hashp)
491 1.1 cgd HTAB *hashp;
492 1.1 cgd {
493 1.1 cgd HASHHDR *whdrp;
494 1.1 cgd #if BYTE_ORDER == LITTLE_ENDIAN
495 1.1 cgd HASHHDR whdr;
496 1.1 cgd #endif
497 1.1 cgd int fp, i, wsize;
498 1.1 cgd
499 1.1 cgd if (!hashp->save_file)
500 1.1 cgd return (0);
501 1.1 cgd hashp->MAGIC = HASHMAGIC;
502 1.1 cgd hashp->VERSION = HASHVERSION;
503 1.1 cgd hashp->H_CHARKEY = hashp->hash(CHARKEY, sizeof(CHARKEY));
504 1.1 cgd
505 1.1 cgd fp = hashp->fp;
506 1.1 cgd whdrp = &hashp->hdr;
507 1.1 cgd #if BYTE_ORDER == LITTLE_ENDIAN
508 1.1 cgd whdrp = &whdr;
509 1.1 cgd swap_header_copy(&hashp->hdr, whdrp);
510 1.1 cgd #endif
511 1.13 thorpej if ((wsize = pwrite(fp, whdrp, sizeof(HASHHDR), (off_t)0)) == -1)
512 1.1 cgd return (-1);
513 1.1 cgd else
514 1.1 cgd if (wsize != sizeof(HASHHDR)) {
515 1.1 cgd errno = EFTYPE;
516 1.10 jtc hashp->err = errno;
517 1.1 cgd return (-1);
518 1.1 cgd }
519 1.1 cgd for (i = 0; i < NCACHED; i++)
520 1.1 cgd if (hashp->mapp[i])
521 1.1 cgd if (__put_page(hashp, (char *)hashp->mapp[i],
522 1.1 cgd hashp->BITMAPS[i], 0, 1))
523 1.1 cgd return (-1);
524 1.1 cgd return (0);
525 1.1 cgd }
526 1.1 cgd
527 1.1 cgd /*******************************SEARCH ROUTINES *****************************/
528 1.1 cgd /*
529 1.1 cgd * All the access routines return
530 1.1 cgd *
531 1.1 cgd * Returns:
532 1.1 cgd * 0 on SUCCESS
533 1.1 cgd * 1 to indicate an external ERROR (i.e. key not found, etc)
534 1.1 cgd * -1 to indicate an internal ERROR (i.e. out of memory, etc)
535 1.1 cgd */
536 1.1 cgd static int
537 1.1 cgd hash_get(dbp, key, data, flag)
538 1.1 cgd const DB *dbp;
539 1.1 cgd const DBT *key;
540 1.1 cgd DBT *data;
541 1.7 cgd u_int32_t flag;
542 1.1 cgd {
543 1.1 cgd HTAB *hashp;
544 1.1 cgd
545 1.1 cgd hashp = (HTAB *)dbp->internal;
546 1.1 cgd if (flag) {
547 1.10 jtc hashp->err = errno = EINVAL;
548 1.1 cgd return (ERROR);
549 1.1 cgd }
550 1.1 cgd return (hash_access(hashp, HASH_GET, (DBT *)key, data));
551 1.1 cgd }
552 1.1 cgd
553 1.1 cgd static int
554 1.1 cgd hash_put(dbp, key, data, flag)
555 1.1 cgd const DB *dbp;
556 1.1 cgd DBT *key;
557 1.1 cgd const DBT *data;
558 1.7 cgd u_int32_t flag;
559 1.1 cgd {
560 1.1 cgd HTAB *hashp;
561 1.1 cgd
562 1.1 cgd hashp = (HTAB *)dbp->internal;
563 1.1 cgd if (flag && flag != R_NOOVERWRITE) {
564 1.10 jtc hashp->err = errno = EINVAL;
565 1.1 cgd return (ERROR);
566 1.1 cgd }
567 1.1 cgd if ((hashp->flags & O_ACCMODE) == O_RDONLY) {
568 1.10 jtc hashp->err = errno = EPERM;
569 1.1 cgd return (ERROR);
570 1.1 cgd }
571 1.1 cgd return (hash_access(hashp, flag == R_NOOVERWRITE ?
572 1.1 cgd HASH_PUTNEW : HASH_PUT, (DBT *)key, (DBT *)data));
573 1.1 cgd }
574 1.1 cgd
575 1.1 cgd static int
576 1.1 cgd hash_delete(dbp, key, flag)
577 1.1 cgd const DB *dbp;
578 1.1 cgd const DBT *key;
579 1.7 cgd u_int32_t flag; /* Ignored */
580 1.1 cgd {
581 1.1 cgd HTAB *hashp;
582 1.1 cgd
583 1.1 cgd hashp = (HTAB *)dbp->internal;
584 1.1 cgd if (flag && flag != R_CURSOR) {
585 1.10 jtc hashp->err = errno = EINVAL;
586 1.1 cgd return (ERROR);
587 1.1 cgd }
588 1.1 cgd if ((hashp->flags & O_ACCMODE) == O_RDONLY) {
589 1.10 jtc hashp->err = errno = EPERM;
590 1.1 cgd return (ERROR);
591 1.1 cgd }
592 1.1 cgd return (hash_access(hashp, HASH_DELETE, (DBT *)key, NULL));
593 1.1 cgd }
594 1.1 cgd
595 1.1 cgd /*
596 1.1 cgd * Assume that hashp has been set in wrapper routine.
597 1.1 cgd */
598 1.1 cgd static int
599 1.1 cgd hash_access(hashp, action, key, val)
600 1.1 cgd HTAB *hashp;
601 1.1 cgd ACTION action;
602 1.1 cgd DBT *key, *val;
603 1.1 cgd {
604 1.1 cgd register BUFHEAD *rbufp;
605 1.1 cgd BUFHEAD *bufp, *save_bufp;
606 1.7 cgd register u_int16_t *bp;
607 1.1 cgd register int n, ndx, off, size;
608 1.1 cgd register char *kp;
609 1.7 cgd u_int16_t pageno;
610 1.1 cgd
611 1.1 cgd #ifdef HASH_STATISTICS
612 1.1 cgd hash_accesses++;
613 1.1 cgd #endif
614 1.1 cgd
615 1.1 cgd off = hashp->BSIZE;
616 1.1 cgd size = key->size;
617 1.1 cgd kp = (char *)key->data;
618 1.1 cgd rbufp = __get_buf(hashp, __call_hash(hashp, kp, size), NULL, 0);
619 1.1 cgd if (!rbufp)
620 1.1 cgd return (ERROR);
621 1.1 cgd save_bufp = rbufp;
622 1.1 cgd
623 1.1 cgd /* Pin the bucket chain */
624 1.1 cgd rbufp->flags |= BUF_PIN;
625 1.7 cgd for (bp = (u_int16_t *)rbufp->page, n = *bp++, ndx = 1; ndx < n;)
626 1.1 cgd if (bp[1] >= REAL_KEY) {
627 1.1 cgd /* Real key/data pair */
628 1.1 cgd if (size == off - *bp &&
629 1.1 cgd memcmp(kp, rbufp->page + *bp, size) == 0)
630 1.1 cgd goto found;
631 1.1 cgd off = bp[1];
632 1.1 cgd #ifdef HASH_STATISTICS
633 1.1 cgd hash_collisions++;
634 1.1 cgd #endif
635 1.1 cgd bp += 2;
636 1.1 cgd ndx += 2;
637 1.1 cgd } else if (bp[1] == OVFLPAGE) {
638 1.1 cgd rbufp = __get_buf(hashp, *bp, rbufp, 0);
639 1.1 cgd if (!rbufp) {
640 1.1 cgd save_bufp->flags &= ~BUF_PIN;
641 1.1 cgd return (ERROR);
642 1.1 cgd }
643 1.1 cgd /* FOR LOOP INIT */
644 1.7 cgd bp = (u_int16_t *)rbufp->page;
645 1.1 cgd n = *bp++;
646 1.1 cgd ndx = 1;
647 1.1 cgd off = hashp->BSIZE;
648 1.1 cgd } else if (bp[1] < REAL_KEY) {
649 1.1 cgd if ((ndx =
650 1.1 cgd __find_bigpair(hashp, rbufp, ndx, kp, size)) > 0)
651 1.1 cgd goto found;
652 1.1 cgd if (ndx == -2) {
653 1.1 cgd bufp = rbufp;
654 1.1 cgd if (!(pageno =
655 1.1 cgd __find_last_page(hashp, &bufp))) {
656 1.1 cgd ndx = 0;
657 1.1 cgd rbufp = bufp;
658 1.1 cgd break; /* FOR */
659 1.1 cgd }
660 1.1 cgd rbufp = __get_buf(hashp, pageno, bufp, 0);
661 1.1 cgd if (!rbufp) {
662 1.1 cgd save_bufp->flags &= ~BUF_PIN;
663 1.1 cgd return (ERROR);
664 1.1 cgd }
665 1.1 cgd /* FOR LOOP INIT */
666 1.7 cgd bp = (u_int16_t *)rbufp->page;
667 1.1 cgd n = *bp++;
668 1.1 cgd ndx = 1;
669 1.1 cgd off = hashp->BSIZE;
670 1.1 cgd } else {
671 1.1 cgd save_bufp->flags &= ~BUF_PIN;
672 1.1 cgd return (ERROR);
673 1.1 cgd }
674 1.1 cgd }
675 1.1 cgd
676 1.1 cgd /* Not found */
677 1.1 cgd switch (action) {
678 1.1 cgd case HASH_PUT:
679 1.1 cgd case HASH_PUTNEW:
680 1.1 cgd if (__addel(hashp, rbufp, key, val)) {
681 1.1 cgd save_bufp->flags &= ~BUF_PIN;
682 1.1 cgd return (ERROR);
683 1.1 cgd } else {
684 1.1 cgd save_bufp->flags &= ~BUF_PIN;
685 1.1 cgd return (SUCCESS);
686 1.1 cgd }
687 1.1 cgd case HASH_GET:
688 1.1 cgd case HASH_DELETE:
689 1.1 cgd default:
690 1.1 cgd save_bufp->flags &= ~BUF_PIN;
691 1.1 cgd return (ABNORMAL);
692 1.1 cgd }
693 1.1 cgd
694 1.1 cgd found:
695 1.1 cgd switch (action) {
696 1.1 cgd case HASH_PUTNEW:
697 1.1 cgd save_bufp->flags &= ~BUF_PIN;
698 1.1 cgd return (ABNORMAL);
699 1.1 cgd case HASH_GET:
700 1.7 cgd bp = (u_int16_t *)rbufp->page;
701 1.1 cgd if (bp[ndx + 1] < REAL_KEY) {
702 1.1 cgd if (__big_return(hashp, rbufp, ndx, val, 0))
703 1.1 cgd return (ERROR);
704 1.1 cgd } else {
705 1.1 cgd val->data = (u_char *)rbufp->page + (int)bp[ndx + 1];
706 1.1 cgd val->size = bp[ndx] - bp[ndx + 1];
707 1.1 cgd }
708 1.1 cgd break;
709 1.1 cgd case HASH_PUT:
710 1.1 cgd if ((__delpair(hashp, rbufp, ndx)) ||
711 1.1 cgd (__addel(hashp, rbufp, key, val))) {
712 1.1 cgd save_bufp->flags &= ~BUF_PIN;
713 1.1 cgd return (ERROR);
714 1.1 cgd }
715 1.1 cgd break;
716 1.1 cgd case HASH_DELETE:
717 1.1 cgd if (__delpair(hashp, rbufp, ndx))
718 1.1 cgd return (ERROR);
719 1.1 cgd break;
720 1.1 cgd default:
721 1.1 cgd abort();
722 1.1 cgd }
723 1.1 cgd save_bufp->flags &= ~BUF_PIN;
724 1.1 cgd return (SUCCESS);
725 1.1 cgd }
726 1.1 cgd
727 1.1 cgd static int
728 1.1 cgd hash_seq(dbp, key, data, flag)
729 1.1 cgd const DB *dbp;
730 1.1 cgd DBT *key, *data;
731 1.7 cgd u_int32_t flag;
732 1.1 cgd {
733 1.7 cgd register u_int32_t bucket;
734 1.1 cgd register BUFHEAD *bufp;
735 1.1 cgd HTAB *hashp;
736 1.7 cgd u_int16_t *bp, ndx;
737 1.1 cgd
738 1.1 cgd hashp = (HTAB *)dbp->internal;
739 1.1 cgd if (flag && flag != R_FIRST && flag != R_NEXT) {
740 1.10 jtc hashp->err = errno = EINVAL;
741 1.1 cgd return (ERROR);
742 1.1 cgd }
743 1.1 cgd #ifdef HASH_STATISTICS
744 1.1 cgd hash_accesses++;
745 1.1 cgd #endif
746 1.1 cgd if ((hashp->cbucket < 0) || (flag == R_FIRST)) {
747 1.1 cgd hashp->cbucket = 0;
748 1.1 cgd hashp->cndx = 1;
749 1.1 cgd hashp->cpage = NULL;
750 1.1 cgd }
751 1.1 cgd
752 1.1 cgd for (bp = NULL; !bp || !bp[0]; ) {
753 1.1 cgd if (!(bufp = hashp->cpage)) {
754 1.1 cgd for (bucket = hashp->cbucket;
755 1.1 cgd bucket <= hashp->MAX_BUCKET;
756 1.1 cgd bucket++, hashp->cndx = 1) {
757 1.1 cgd bufp = __get_buf(hashp, bucket, NULL, 0);
758 1.1 cgd if (!bufp)
759 1.1 cgd return (ERROR);
760 1.1 cgd hashp->cpage = bufp;
761 1.7 cgd bp = (u_int16_t *)bufp->page;
762 1.1 cgd if (bp[0])
763 1.1 cgd break;
764 1.1 cgd }
765 1.1 cgd hashp->cbucket = bucket;
766 1.1 cgd if (hashp->cbucket > hashp->MAX_BUCKET) {
767 1.1 cgd hashp->cbucket = -1;
768 1.1 cgd return (ABNORMAL);
769 1.1 cgd }
770 1.1 cgd } else
771 1.7 cgd bp = (u_int16_t *)hashp->cpage->page;
772 1.1 cgd
773 1.1 cgd #ifdef DEBUG
774 1.1 cgd assert(bp);
775 1.1 cgd assert(bufp);
776 1.1 cgd #endif
777 1.1 cgd while (bp[hashp->cndx + 1] == OVFLPAGE) {
778 1.1 cgd bufp = hashp->cpage =
779 1.1 cgd __get_buf(hashp, bp[hashp->cndx], bufp, 0);
780 1.1 cgd if (!bufp)
781 1.1 cgd return (ERROR);
782 1.7 cgd bp = (u_int16_t *)(bufp->page);
783 1.1 cgd hashp->cndx = 1;
784 1.1 cgd }
785 1.1 cgd if (!bp[0]) {
786 1.1 cgd hashp->cpage = NULL;
787 1.1 cgd ++hashp->cbucket;
788 1.1 cgd }
789 1.1 cgd }
790 1.1 cgd ndx = hashp->cndx;
791 1.1 cgd if (bp[ndx + 1] < REAL_KEY) {
792 1.1 cgd if (__big_keydata(hashp, bufp, key, data, 1))
793 1.1 cgd return (ERROR);
794 1.1 cgd } else {
795 1.1 cgd key->data = (u_char *)hashp->cpage->page + bp[ndx];
796 1.1 cgd key->size = (ndx > 1 ? bp[ndx - 1] : hashp->BSIZE) - bp[ndx];
797 1.1 cgd data->data = (u_char *)hashp->cpage->page + bp[ndx + 1];
798 1.1 cgd data->size = bp[ndx] - bp[ndx + 1];
799 1.1 cgd ndx += 2;
800 1.1 cgd if (ndx > bp[0]) {
801 1.1 cgd hashp->cpage = NULL;
802 1.1 cgd hashp->cbucket++;
803 1.1 cgd hashp->cndx = 1;
804 1.1 cgd } else
805 1.1 cgd hashp->cndx = ndx;
806 1.1 cgd }
807 1.1 cgd return (SUCCESS);
808 1.1 cgd }
809 1.1 cgd
810 1.1 cgd /********************************* UTILITIES ************************/
811 1.1 cgd
812 1.1 cgd /*
813 1.1 cgd * Returns:
814 1.1 cgd * 0 ==> OK
815 1.1 cgd * -1 ==> Error
816 1.1 cgd */
817 1.1 cgd extern int
818 1.1 cgd __expand_table(hashp)
819 1.1 cgd HTAB *hashp;
820 1.1 cgd {
821 1.7 cgd u_int32_t old_bucket, new_bucket;
822 1.1 cgd int dirsize, new_segnum, spare_ndx;
823 1.1 cgd
824 1.1 cgd #ifdef HASH_STATISTICS
825 1.1 cgd hash_expansions++;
826 1.1 cgd #endif
827 1.1 cgd new_bucket = ++hashp->MAX_BUCKET;
828 1.1 cgd old_bucket = (hashp->MAX_BUCKET & hashp->LOW_MASK);
829 1.1 cgd
830 1.1 cgd new_segnum = new_bucket >> hashp->SSHIFT;
831 1.1 cgd
832 1.1 cgd /* Check if we need a new segment */
833 1.1 cgd if (new_segnum >= hashp->nsegs) {
834 1.1 cgd /* Check if we need to expand directory */
835 1.1 cgd if (new_segnum >= hashp->DSIZE) {
836 1.1 cgd /* Reallocate directory */
837 1.1 cgd dirsize = hashp->DSIZE * sizeof(SEGMENT *);
838 1.1 cgd if (!hash_realloc(&hashp->dir, dirsize, dirsize << 1))
839 1.1 cgd return (-1);
840 1.1 cgd hashp->DSIZE = dirsize << 1;
841 1.1 cgd }
842 1.7 cgd if ((hashp->dir[new_segnum] =
843 1.7 cgd (SEGMENT)calloc(hashp->SGSIZE, sizeof(SEGMENT))) == NULL)
844 1.1 cgd return (-1);
845 1.1 cgd hashp->exsegs++;
846 1.1 cgd hashp->nsegs++;
847 1.1 cgd }
848 1.1 cgd /*
849 1.1 cgd * If the split point is increasing (MAX_BUCKET's log base 2
850 1.1 cgd * * increases), we need to copy the current contents of the spare
851 1.1 cgd * split bucket to the next bucket.
852 1.1 cgd */
853 1.1 cgd spare_ndx = __log2(hashp->MAX_BUCKET + 1);
854 1.1 cgd if (spare_ndx > hashp->OVFL_POINT) {
855 1.1 cgd hashp->SPARES[spare_ndx] = hashp->SPARES[hashp->OVFL_POINT];
856 1.1 cgd hashp->OVFL_POINT = spare_ndx;
857 1.1 cgd }
858 1.1 cgd
859 1.1 cgd if (new_bucket > hashp->HIGH_MASK) {
860 1.1 cgd /* Starting a new doubling */
861 1.1 cgd hashp->LOW_MASK = hashp->HIGH_MASK;
862 1.1 cgd hashp->HIGH_MASK = new_bucket | hashp->LOW_MASK;
863 1.1 cgd }
864 1.1 cgd /* Relocate records to the new bucket */
865 1.1 cgd return (__split_page(hashp, old_bucket, new_bucket));
866 1.1 cgd }
867 1.1 cgd
868 1.1 cgd /*
869 1.1 cgd * If realloc guarantees that the pointer is not destroyed if the realloc
870 1.1 cgd * fails, then this routine can go away.
871 1.1 cgd */
872 1.1 cgd static void *
873 1.1 cgd hash_realloc(p_ptr, oldsize, newsize)
874 1.1 cgd SEGMENT **p_ptr;
875 1.1 cgd int oldsize, newsize;
876 1.1 cgd {
877 1.1 cgd register void *p;
878 1.1 cgd
879 1.11 christos if ((p = malloc(newsize)) != NULL) {
880 1.1 cgd memmove(p, *p_ptr, oldsize);
881 1.4 cgd memset((char *)p + oldsize, 0, newsize - oldsize);
882 1.1 cgd free(*p_ptr);
883 1.1 cgd *p_ptr = p;
884 1.1 cgd }
885 1.1 cgd return (p);
886 1.1 cgd }
887 1.1 cgd
888 1.7 cgd extern u_int32_t
889 1.1 cgd __call_hash(hashp, k, len)
890 1.1 cgd HTAB *hashp;
891 1.1 cgd char *k;
892 1.1 cgd int len;
893 1.1 cgd {
894 1.1 cgd int n, bucket;
895 1.1 cgd
896 1.1 cgd n = hashp->hash(k, len);
897 1.1 cgd bucket = n & hashp->HIGH_MASK;
898 1.1 cgd if (bucket > hashp->MAX_BUCKET)
899 1.1 cgd bucket = bucket & hashp->LOW_MASK;
900 1.1 cgd return (bucket);
901 1.1 cgd }
902 1.1 cgd
903 1.1 cgd /*
904 1.1 cgd * Allocate segment table. On error, destroy the table and set errno.
905 1.1 cgd *
906 1.1 cgd * Returns 0 on success
907 1.1 cgd */
908 1.1 cgd static int
909 1.1 cgd alloc_segs(hashp, nsegs)
910 1.1 cgd HTAB *hashp;
911 1.1 cgd int nsegs;
912 1.1 cgd {
913 1.1 cgd register int i;
914 1.1 cgd register SEGMENT store;
915 1.1 cgd
916 1.1 cgd int save_errno;
917 1.1 cgd
918 1.7 cgd if ((hashp->dir =
919 1.7 cgd (SEGMENT *)calloc(hashp->DSIZE, sizeof(SEGMENT *))) == NULL) {
920 1.1 cgd save_errno = errno;
921 1.1 cgd (void)hdestroy(hashp);
922 1.1 cgd errno = save_errno;
923 1.1 cgd return (-1);
924 1.1 cgd }
925 1.1 cgd /* Allocate segments */
926 1.7 cgd if ((store =
927 1.7 cgd (SEGMENT)calloc(nsegs << hashp->SSHIFT, sizeof(SEGMENT))) == NULL) {
928 1.1 cgd save_errno = errno;
929 1.1 cgd (void)hdestroy(hashp);
930 1.1 cgd errno = save_errno;
931 1.1 cgd return (-1);
932 1.1 cgd }
933 1.1 cgd for (i = 0; i < nsegs; i++, hashp->nsegs++)
934 1.1 cgd hashp->dir[i] = &store[i << hashp->SSHIFT];
935 1.1 cgd return (0);
936 1.1 cgd }
937 1.1 cgd
938 1.1 cgd #if BYTE_ORDER == LITTLE_ENDIAN
939 1.1 cgd /*
940 1.1 cgd * Hashp->hdr needs to be byteswapped.
941 1.1 cgd */
942 1.1 cgd static void
943 1.1 cgd swap_header_copy(srcp, destp)
944 1.1 cgd HASHHDR *srcp, *destp;
945 1.1 cgd {
946 1.1 cgd int i;
947 1.1 cgd
948 1.7 cgd P_32_COPY(srcp->magic, destp->magic);
949 1.7 cgd P_32_COPY(srcp->version, destp->version);
950 1.7 cgd P_32_COPY(srcp->lorder, destp->lorder);
951 1.7 cgd P_32_COPY(srcp->bsize, destp->bsize);
952 1.7 cgd P_32_COPY(srcp->bshift, destp->bshift);
953 1.7 cgd P_32_COPY(srcp->dsize, destp->dsize);
954 1.7 cgd P_32_COPY(srcp->ssize, destp->ssize);
955 1.7 cgd P_32_COPY(srcp->sshift, destp->sshift);
956 1.7 cgd P_32_COPY(srcp->ovfl_point, destp->ovfl_point);
957 1.7 cgd P_32_COPY(srcp->last_freed, destp->last_freed);
958 1.7 cgd P_32_COPY(srcp->max_bucket, destp->max_bucket);
959 1.7 cgd P_32_COPY(srcp->high_mask, destp->high_mask);
960 1.7 cgd P_32_COPY(srcp->low_mask, destp->low_mask);
961 1.7 cgd P_32_COPY(srcp->ffactor, destp->ffactor);
962 1.7 cgd P_32_COPY(srcp->nkeys, destp->nkeys);
963 1.7 cgd P_32_COPY(srcp->hdrpages, destp->hdrpages);
964 1.7 cgd P_32_COPY(srcp->h_charkey, destp->h_charkey);
965 1.1 cgd for (i = 0; i < NCACHED; i++) {
966 1.7 cgd P_32_COPY(srcp->spares[i], destp->spares[i]);
967 1.7 cgd P_16_COPY(srcp->bitmaps[i], destp->bitmaps[i]);
968 1.1 cgd }
969 1.1 cgd }
970 1.1 cgd
971 1.1 cgd static void
972 1.1 cgd swap_header(hashp)
973 1.1 cgd HTAB *hashp;
974 1.1 cgd {
975 1.1 cgd HASHHDR *hdrp;
976 1.1 cgd int i;
977 1.1 cgd
978 1.1 cgd hdrp = &hashp->hdr;
979 1.1 cgd
980 1.7 cgd M_32_SWAP(hdrp->magic);
981 1.7 cgd M_32_SWAP(hdrp->version);
982 1.7 cgd M_32_SWAP(hdrp->lorder);
983 1.7 cgd M_32_SWAP(hdrp->bsize);
984 1.7 cgd M_32_SWAP(hdrp->bshift);
985 1.7 cgd M_32_SWAP(hdrp->dsize);
986 1.7 cgd M_32_SWAP(hdrp->ssize);
987 1.7 cgd M_32_SWAP(hdrp->sshift);
988 1.7 cgd M_32_SWAP(hdrp->ovfl_point);
989 1.7 cgd M_32_SWAP(hdrp->last_freed);
990 1.7 cgd M_32_SWAP(hdrp->max_bucket);
991 1.7 cgd M_32_SWAP(hdrp->high_mask);
992 1.7 cgd M_32_SWAP(hdrp->low_mask);
993 1.7 cgd M_32_SWAP(hdrp->ffactor);
994 1.7 cgd M_32_SWAP(hdrp->nkeys);
995 1.7 cgd M_32_SWAP(hdrp->hdrpages);
996 1.7 cgd M_32_SWAP(hdrp->h_charkey);
997 1.1 cgd for (i = 0; i < NCACHED; i++) {
998 1.7 cgd M_32_SWAP(hdrp->spares[i]);
999 1.7 cgd M_16_SWAP(hdrp->bitmaps[i]);
1000 1.1 cgd }
1001 1.1 cgd }
1002 1.1 cgd #endif
1003