]>
git.saurik.com Git - apple/libc.git/blob - db/hash/hash-fbsd.c
e5517d07dff268b9daa3d0396778a64d47c6d2fb
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 #if defined(LIBC_SCCS) && !defined(lint)
34 static char sccsid
[] = "@(#)hash.c 8.9 (Berkeley) 6/16/94";
35 #endif /* LIBC_SCCS and not lint */
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD: src/lib/libc/db/hash/hash.c,v 1.21 2009/03/28 07:20:39 delphij Exp $");
39 #include "namespace.h"
40 #include <sys/param.h>
52 #include "un-namespace.h"
57 #include "hash_extern.h"
59 static int alloc_segs(HTAB
*, int);
60 static int flush_meta(HTAB
*);
61 static int hash_access(HTAB
*, ACTION
, DBT
*, DBT
*);
62 static int hash_close(DB
*);
63 static int hash_delete(const DB
*, const DBT
*, u_int32_t
);
64 static int hash_fd(const DB
*);
65 static int hash_get(const DB
*, const DBT
*, DBT
*, u_int32_t
);
66 static int hash_put(const DB
*, DBT
*, const DBT
*, u_int32_t
);
67 static void *hash_realloc(SEGMENT
**, int, int);
68 static int hash_seq(const DB
*, DBT
*, DBT
*, u_int32_t
);
69 static int hash_sync(const DB
*, u_int32_t
);
70 static int hdestroy(HTAB
*);
71 static HTAB
*init_hash(HTAB
*, const char *, const HASHINFO
*);
72 static int init_htab(HTAB
*, int);
73 #if BYTE_ORDER == LITTLE_ENDIAN
74 static void swap_header(HTAB
*);
75 static void swap_header_copy(HASHHDR
*, HASHHDR
*);
78 /* Fast arithmetic, relying on powers of 2, */
79 #define MOD(x, y) ((x) & ((y) - 1))
81 #define RETURN_ERROR(ERR, LOC) { save_errno = ERR; goto LOC; }
88 #ifdef HASH_STATISTICS
89 int hash_accesses
, hash_collisions
, hash_expansions
, hash_overflows
;
92 /************************** INTERFACE ROUTINES ***************************/
97 __hash_open(const char *file
, int flags
, int mode
,
98 const HASHINFO
*info
, /* Special directives for create */
104 int bpages
, hdrsize
, new_table
, nsegs
, save_errno
;
106 if ((flags
& O_ACCMODE
) == O_WRONLY
) {
107 flags
+= O_RDWR
- O_WRONLY
; /* POSIX */
110 if (!(hashp
= (HTAB
*)calloc(1, sizeof(HTAB
))))
115 * Even if user wants write only, we need to be able to read
116 * the actual file, so we need to open it read/write. But, the
117 * field in the hashp structure needs to be accurate so that
118 * we can check accesses.
120 hashp
->flags
= flags
;
123 if ((hashp
->fp
= _open(file
, flags
, mode
)) == -1)
124 RETURN_ERROR(errno
, error0
);
125 (void)_fcntl(hashp
->fp
, F_SETFD
, 1);
126 new_table
= _fstat(hashp
->fp
, &statbuf
) == 0 &&
127 statbuf
.st_size
== 0 && (flags
& O_ACCMODE
) != O_RDONLY
;
132 if (!(hashp
= init_hash(hashp
, file
, info
)))
133 RETURN_ERROR(errno
, error1
);
135 /* Table already exists */
136 if (info
&& info
->hash
)
137 hashp
->hash
= info
->hash
;
139 hashp
->hash
= __default_hash
;
141 hdrsize
= _read(hashp
->fp
, &hashp
->hdr
, sizeof(HASHHDR
));
142 #if BYTE_ORDER == LITTLE_ENDIAN
146 RETURN_ERROR(errno
, error1
);
147 if (hdrsize
!= sizeof(HASHHDR
))
148 RETURN_ERROR(EFTYPE
, error1
);
149 /* Verify file type, versions and hash function */
150 if (hashp
->MAGIC
!= HASHMAGIC
)
151 RETURN_ERROR(EFTYPE
, error1
);
152 #define OLDHASHVERSION 1
153 if (hashp
->VERSION
!= HASHVERSION
&&
154 hashp
->VERSION
!= OLDHASHVERSION
)
155 RETURN_ERROR(EFTYPE
, error1
);
156 if ((int32_t)hashp
->hash(CHARKEY
, sizeof(CHARKEY
)) != hashp
->H_CHARKEY
)
157 RETURN_ERROR(EFTYPE
, error1
);
159 * Figure out how many segments we need. Max_Bucket is the
160 * maximum bucket number, so the number of buckets is
163 nsegs
= (hashp
->MAX_BUCKET
+ 1 + hashp
->SGSIZE
- 1) /
165 if (alloc_segs(hashp
, nsegs
))
167 * If alloc_segs fails, table will have been destroyed
168 * and errno will have been set.
171 /* Read in bitmaps */
172 bpages
= (hashp
->SPARES
[hashp
->OVFL_POINT
] +
173 (hashp
->BSIZE
<< BYTE_SHIFT
) - 1) >>
174 (hashp
->BSHIFT
+ BYTE_SHIFT
);
176 hashp
->nmaps
= bpages
;
177 (void)memset(&hashp
->mapp
[0], 0, bpages
* sizeof(u_int32_t
*));
180 /* Initialize Buffer Manager */
181 if (info
&& info
->cachesize
)
182 __buf_init(hashp
, info
->cachesize
);
184 __buf_init(hashp
, DEF_BUFSIZE
);
186 hashp
->new_file
= new_table
;
187 hashp
->save_file
= file
&& (hashp
->flags
& O_RDWR
);
189 if (!(dbp
= (DB
*)malloc(sizeof(DB
)))) {
195 dbp
->internal
= hashp
;
196 dbp
->close
= hash_close
;
197 dbp
->del
= hash_delete
;
202 dbp
->sync
= hash_sync
;
206 (void)fprintf(stderr
,
207 "%s\n%s%p\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",
209 "TABLE POINTER ", hashp
,
210 "BUCKET SIZE ", hashp
->BSIZE
,
211 "BUCKET SHIFT ", hashp
->BSHIFT
,
212 "DIRECTORY SIZE ", hashp
->DSIZE
,
213 "SEGMENT SIZE ", hashp
->SGSIZE
,
214 "SEGMENT SHIFT ", hashp
->SSHIFT
,
215 "FILL FACTOR ", hashp
->FFACTOR
,
216 "MAX BUCKET ", hashp
->MAX_BUCKET
,
217 "OVFL POINT ", hashp
->OVFL_POINT
,
218 "LAST FREED ", hashp
->LAST_FREED
,
219 "HIGH MASK ", hashp
->HIGH_MASK
,
220 "LOW MASK ", hashp
->LOW_MASK
,
221 "NSEGS ", hashp
->nsegs
,
222 "NKEYS ", hashp
->NKEYS
);
224 #ifdef HASH_STATISTICS
225 hash_overflows
= hash_accesses
= hash_collisions
= hash_expansions
= 0;
231 (void)_close(hashp
->fp
);
248 hashp
= (HTAB
*)dbp
->internal
;
249 retval
= hdestroy(hashp
);
255 hash_fd(const DB
*dbp
)
262 hashp
= (HTAB
*)dbp
->internal
;
263 if (hashp
->fp
== -1) {
270 /************************** LOCAL CREATION ROUTINES **********************/
272 init_hash(HTAB
*hashp
, const char *file
, const HASHINFO
*info
)
279 hashp
->LORDER
= BYTE_ORDER
;
280 hashp
->BSIZE
= DEF_BUCKET_SIZE
;
281 hashp
->BSHIFT
= DEF_BUCKET_SHIFT
;
282 hashp
->SGSIZE
= DEF_SEGSIZE
;
283 hashp
->SSHIFT
= DEF_SEGSIZE_SHIFT
;
284 hashp
->DSIZE
= DEF_DIRSIZE
;
285 hashp
->FFACTOR
= DEF_FFACTOR
;
286 hashp
->hash
= __default_hash
;
287 memset(hashp
->SPARES
, 0, sizeof(hashp
->SPARES
));
288 memset(hashp
->BITMAPS
, 0, sizeof (hashp
->BITMAPS
));
290 /* Fix bucket size to be optimal for file system */
292 if (stat(file
, &statbuf
))
294 hashp
->BSIZE
= statbuf
.st_blksize
;
295 hashp
->BSHIFT
= __log2(hashp
->BSIZE
);
300 /* Round pagesize up to power of 2 */
301 hashp
->BSHIFT
= __log2(info
->bsize
);
302 hashp
->BSIZE
= 1 << hashp
->BSHIFT
;
303 if (hashp
->BSIZE
> MAX_BSIZE
) {
309 hashp
->FFACTOR
= info
->ffactor
;
311 hashp
->hash
= info
->hash
;
315 if (info
->lorder
!= BIG_ENDIAN
&&
316 info
->lorder
!= LITTLE_ENDIAN
) {
320 hashp
->LORDER
= info
->lorder
;
323 /* init_htab should destroy the table and set errno if it fails */
324 if (init_htab(hashp
, nelem
))
330 * This calls alloc_segs which may run out of memory. Alloc_segs will destroy
331 * the table and set errno, so we just pass the error information along.
333 * Returns 0 on No Error
336 init_htab(HTAB
*hashp
, int nelem
)
338 int nbuckets
, nsegs
, l2
;
341 * Divide number of elements by the fill factor and determine a
342 * desired number of buckets. Allocate space for the next greater
343 * power of two number of buckets.
345 nelem
= (nelem
- 1) / hashp
->FFACTOR
+ 1;
347 l2
= __log2(MAX(nelem
, 2));
350 hashp
->SPARES
[l2
] = l2
+ 1;
351 hashp
->SPARES
[l2
+ 1] = l2
+ 1;
352 hashp
->OVFL_POINT
= l2
;
353 hashp
->LAST_FREED
= 2;
355 /* First bitmap page is at: splitpoint l2 page offset 1 */
356 if (__ibitmap(hashp
, OADDR_OF(l2
, 1), l2
+ 1, 0))
359 hashp
->MAX_BUCKET
= hashp
->LOW_MASK
= nbuckets
- 1;
360 hashp
->HIGH_MASK
= (nbuckets
<< 1) - 1;
361 hashp
->HDRPAGES
= ((MAX(sizeof(HASHHDR
), MINHDRSIZE
) - 1) >>
364 nsegs
= (nbuckets
- 1) / hashp
->SGSIZE
+ 1;
365 nsegs
= 1 << __log2(nsegs
);
367 if (nsegs
> hashp
->DSIZE
)
368 hashp
->DSIZE
= nsegs
;
369 return (alloc_segs(hashp
, nsegs
));
372 /********************** DESTROY/CLOSE ROUTINES ************************/
375 * Flushes any changes to the file if necessary and destroys the hashp
376 * structure, freeing all allocated space.
379 hdestroy(HTAB
*hashp
)
385 #ifdef HASH_STATISTICS
386 (void)fprintf(stderr
, "hdestroy: accesses %ld collisions %ld\n",
387 hash_accesses
, hash_collisions
);
388 (void)fprintf(stderr
, "hdestroy: expansions %ld\n",
390 (void)fprintf(stderr
, "hdestroy: overflows %ld\n",
392 (void)fprintf(stderr
, "keys %ld maxp %d segmentcount %d\n",
393 hashp
->NKEYS
, hashp
->MAX_BUCKET
, hashp
->nsegs
);
395 for (i
= 0; i
< NCACHED
; i
++)
396 (void)fprintf(stderr
,
397 "spares[%d] = %d\n", i
, hashp
->SPARES
[i
]);
400 * Call on buffer manager to free buffers, and if required,
401 * write them to disk.
403 if (__buf_free(hashp
, 1, hashp
->save_file
))
406 free(*hashp
->dir
); /* Free initial segments */
407 /* Free extra segments */
408 while (hashp
->exsegs
--)
409 free(hashp
->dir
[--hashp
->nsegs
]);
412 if (flush_meta(hashp
) && !save_errno
)
415 for (i
= 0; i
< hashp
->nmaps
; i
++)
417 free(hashp
->mapp
[i
]);
419 free(hashp
->tmp_key
);
421 free(hashp
->tmp_buf
);
424 (void)_close(hashp
->fp
);
435 * Write modified pages to disk
442 hash_sync(const DB
*dbp
, u_int32_t flags
)
454 hashp
= (HTAB
*)dbp
->internal
;
455 if (!hashp
->save_file
)
457 if (__buf_free(hashp
, 0, 1) || flush_meta(hashp
))
466 * -1 indicates that errno should be set
469 flush_meta(HTAB
*hashp
)
472 #if BYTE_ORDER == LITTLE_ENDIAN
477 if (!hashp
->save_file
)
479 hashp
->MAGIC
= HASHMAGIC
;
480 hashp
->VERSION
= HASHVERSION
;
481 hashp
->H_CHARKEY
= hashp
->hash(CHARKEY
, sizeof(CHARKEY
));
485 #if BYTE_ORDER == LITTLE_ENDIAN
487 swap_header_copy(&hashp
->hdr
, whdrp
);
489 if ((wsize
= pwrite(fp
, whdrp
, sizeof(HASHHDR
), (off_t
)0)) == -1)
492 if (wsize
!= sizeof(HASHHDR
)) {
494 hashp
->error
= errno
;
497 for (i
= 0; i
< NCACHED
; i
++)
499 if (__put_page(hashp
, (char *)hashp
->mapp
[i
],
500 hashp
->BITMAPS
[i
], 0, 1))
505 /*******************************SEARCH ROUTINES *****************************/
507 * All the access routines return
511 * 1 to indicate an external ERROR (i.e. key not found, etc)
512 * -1 to indicate an internal ERROR (i.e. out of memory, etc)
515 hash_get(const DB
*dbp
, const DBT
*key
, DBT
*data
, u_int32_t flag
)
519 hashp
= (HTAB
*)dbp
->internal
;
521 hashp
->error
= errno
= EINVAL
;
524 return (hash_access(hashp
, HASH_GET
, (DBT
*)key
, data
));
528 hash_put(const DB
*dbp
, DBT
*key
, const DBT
*data
, u_int32_t flag
)
532 hashp
= (HTAB
*)dbp
->internal
;
533 if (flag
&& flag
!= R_NOOVERWRITE
) {
534 hashp
->error
= errno
= EINVAL
;
537 if ((hashp
->flags
& O_ACCMODE
) == O_RDONLY
) {
538 hashp
->error
= errno
= EPERM
;
541 return (hash_access(hashp
, flag
== R_NOOVERWRITE
?
542 HASH_PUTNEW
: HASH_PUT
, (DBT
*)key
, (DBT
*)data
));
546 hash_delete(const DB
*dbp
, const DBT
*key
,
547 u_int32_t flag
) /* Ignored */
551 hashp
= (HTAB
*)dbp
->internal
;
552 if (flag
&& flag
!= R_CURSOR
) {
553 hashp
->error
= errno
= EINVAL
;
556 if ((hashp
->flags
& O_ACCMODE
) == O_RDONLY
) {
557 hashp
->error
= errno
= EPERM
;
560 return (hash_access(hashp
, HASH_DELETE
, (DBT
*)key
, NULL
));
564 * Assume that hashp has been set in wrapper routine.
567 hash_access(HTAB
*hashp
, ACTION action
, DBT
*key
, DBT
*val
)
570 BUFHEAD
*bufp
, *save_bufp
;
572 int n
, ndx
, off
, size
;
576 #ifdef HASH_STATISTICS
582 kp
= (char *)key
->data
;
583 rbufp
= __get_buf(hashp
, __call_hash(hashp
, kp
, size
), NULL
, 0);
588 /* Pin the bucket chain */
589 rbufp
->flags
|= BUF_PIN
;
590 for (bp
= (u_int16_t
*)rbufp
->page
, n
= *bp
++, ndx
= 1; ndx
< n
;)
591 if (bp
[1] >= REAL_KEY
) {
592 /* Real key/data pair */
593 if (size
== off
- *bp
&&
594 memcmp(kp
, rbufp
->page
+ *bp
, size
) == 0)
597 #ifdef HASH_STATISTICS
602 } else if (bp
[1] == OVFLPAGE
) {
603 rbufp
= __get_buf(hashp
, *bp
, rbufp
, 0);
605 save_bufp
->flags
&= ~BUF_PIN
;
609 bp
= (u_int16_t
*)rbufp
->page
;
613 } else if (bp
[1] < REAL_KEY
) {
615 __find_bigpair(hashp
, rbufp
, ndx
, kp
, size
)) > 0)
620 __find_last_page(hashp
, &bufp
))) {
625 rbufp
= __get_buf(hashp
, pageno
, bufp
, 0);
627 save_bufp
->flags
&= ~BUF_PIN
;
631 bp
= (u_int16_t
*)rbufp
->page
;
636 save_bufp
->flags
&= ~BUF_PIN
;
645 if (__addel(hashp
, rbufp
, key
, val
)) {
646 save_bufp
->flags
&= ~BUF_PIN
;
649 save_bufp
->flags
&= ~BUF_PIN
;
655 save_bufp
->flags
&= ~BUF_PIN
;
662 save_bufp
->flags
&= ~BUF_PIN
;
665 bp
= (u_int16_t
*)rbufp
->page
;
666 if (bp
[ndx
+ 1] < REAL_KEY
) {
667 if (__big_return(hashp
, rbufp
, ndx
, val
, 0))
670 val
->data
= (u_char
*)rbufp
->page
+ (int)bp
[ndx
+ 1];
671 val
->size
= bp
[ndx
] - bp
[ndx
+ 1];
675 if ((__delpair(hashp
, rbufp
, ndx
)) ||
676 (__addel(hashp
, rbufp
, key
, val
))) {
677 save_bufp
->flags
&= ~BUF_PIN
;
682 if (__delpair(hashp
, rbufp
, ndx
))
686 LIBC_ABORT("illegal action (%d)", action
);
688 save_bufp
->flags
&= ~BUF_PIN
;
693 hash_seq(const DB
*dbp
, DBT
*key
, DBT
*data
, u_int32_t flag
)
700 hashp
= (HTAB
*)dbp
->internal
;
701 if (flag
&& flag
!= R_FIRST
&& flag
!= R_NEXT
) {
702 hashp
->error
= errno
= EINVAL
;
705 #ifdef HASH_STATISTICS
708 if ((hashp
->cbucket
< 0) || (flag
== R_FIRST
)) {
714 for (bp
= NULL
; !bp
|| !bp
[0]; ) {
715 if (!(bufp
= hashp
->cpage
)) {
716 for (bucket
= hashp
->cbucket
;
717 bucket
<= hashp
->MAX_BUCKET
;
718 bucket
++, hashp
->cndx
= 1) {
719 bufp
= __get_buf(hashp
, bucket
, NULL
, 0);
723 bp
= (u_int16_t
*)bufp
->page
;
727 hashp
->cbucket
= bucket
;
728 if ((u_int32_t
)hashp
->cbucket
> hashp
->MAX_BUCKET
) {
733 bp
= (u_int16_t
*)hashp
->cpage
->page
;
734 if (flag
== R_NEXT
) {
736 if (hashp
->cndx
> bp
[0]) {
749 while (bp
[hashp
->cndx
+ 1] == OVFLPAGE
) {
750 bufp
= hashp
->cpage
=
751 __get_buf(hashp
, bp
[hashp
->cndx
], bufp
, 0);
754 bp
= (u_int16_t
*)(bufp
->page
);
763 if (bp
[ndx
+ 1] < REAL_KEY
) {
764 if (__big_keydata(hashp
, bufp
, key
, data
, 1))
767 if (hashp
->cpage
== 0)
769 key
->data
= (u_char
*)hashp
->cpage
->page
+ bp
[ndx
];
770 key
->size
= (ndx
> 1 ? bp
[ndx
- 1] : hashp
->BSIZE
) - bp
[ndx
];
771 data
->data
= (u_char
*)hashp
->cpage
->page
+ bp
[ndx
+ 1];
772 data
->size
= bp
[ndx
] - bp
[ndx
+ 1];
777 /********************************* UTILITIES ************************/
785 __expand_table(HTAB
*hashp
)
787 u_int32_t old_bucket
, new_bucket
;
788 int dirsize
, new_segnum
, spare_ndx
;
790 #ifdef HASH_STATISTICS
793 new_bucket
= ++hashp
->MAX_BUCKET
;
794 old_bucket
= (hashp
->MAX_BUCKET
& hashp
->LOW_MASK
);
796 new_segnum
= new_bucket
>> hashp
->SSHIFT
;
798 /* Check if we need a new segment */
799 if (new_segnum
>= hashp
->nsegs
) {
800 /* Check if we need to expand directory */
801 if (new_segnum
>= hashp
->DSIZE
) {
802 /* Reallocate directory */
803 dirsize
= hashp
->DSIZE
* sizeof(SEGMENT
*);
804 if (!hash_realloc(&hashp
->dir
, dirsize
, dirsize
<< 1))
806 hashp
->DSIZE
= dirsize
<< 1;
808 if ((hashp
->dir
[new_segnum
] =
809 (SEGMENT
)calloc(hashp
->SGSIZE
, sizeof(SEGMENT
))) == NULL
)
815 * If the split point is increasing (MAX_BUCKET's log base 2
816 * * increases), we need to copy the current contents of the spare
817 * split bucket to the next bucket.
819 spare_ndx
= __log2(hashp
->MAX_BUCKET
+ 1);
820 if (spare_ndx
> hashp
->OVFL_POINT
) {
821 hashp
->SPARES
[spare_ndx
] = hashp
->SPARES
[hashp
->OVFL_POINT
];
822 hashp
->OVFL_POINT
= spare_ndx
;
825 if (new_bucket
> hashp
->HIGH_MASK
) {
826 /* Starting a new doubling */
827 hashp
->LOW_MASK
= hashp
->HIGH_MASK
;
828 hashp
->HIGH_MASK
= new_bucket
| hashp
->LOW_MASK
;
830 /* Relocate records to the new bucket */
831 return (__split_page(hashp
, old_bucket
, new_bucket
));
835 * If realloc guarantees that the pointer is not destroyed if the realloc
836 * fails, then this routine can go away.
839 hash_realloc(SEGMENT
**p_ptr
, int oldsize
, int newsize
)
843 if ( (p
= malloc(newsize
)) ) {
844 memmove(p
, *p_ptr
, oldsize
);
845 memset((char *)p
+ oldsize
, 0, newsize
- oldsize
);
853 __call_hash(HTAB
*hashp
, char *k
, int len
)
855 unsigned int n
, bucket
;
857 n
= hashp
->hash(k
, len
);
858 bucket
= n
& hashp
->HIGH_MASK
;
859 if (bucket
> hashp
->MAX_BUCKET
)
860 bucket
= bucket
& hashp
->LOW_MASK
;
865 * Allocate segment table. On error, destroy the table and set errno.
867 * Returns 0 on success
870 alloc_segs(HTAB
*hashp
, int nsegs
)
878 (SEGMENT
*)calloc(hashp
->DSIZE
, sizeof(SEGMENT
*))) == NULL
) {
880 (void)hdestroy(hashp
);
884 hashp
->nsegs
= nsegs
;
887 /* Allocate segments */
888 if ((store
= (SEGMENT
)calloc(nsegs
<< hashp
->SSHIFT
,
889 sizeof(SEGMENT
))) == NULL
) {
891 (void)hdestroy(hashp
);
895 for (i
= 0; i
< nsegs
; i
++)
896 hashp
->dir
[i
] = &store
[i
<< hashp
->SSHIFT
];
900 #if BYTE_ORDER == LITTLE_ENDIAN
902 * Hashp->hdr needs to be byteswapped.
905 swap_header_copy(HASHHDR
*srcp
, HASHHDR
*destp
)
909 P_32_COPY(srcp
->magic
, destp
->magic
);
910 P_32_COPY(srcp
->version
, destp
->version
);
911 P_32_COPY(srcp
->lorder
, destp
->lorder
);
912 P_32_COPY(srcp
->bsize
, destp
->bsize
);
913 P_32_COPY(srcp
->bshift
, destp
->bshift
);
914 P_32_COPY(srcp
->dsize
, destp
->dsize
);
915 P_32_COPY(srcp
->ssize
, destp
->ssize
);
916 P_32_COPY(srcp
->sshift
, destp
->sshift
);
917 P_32_COPY(srcp
->ovfl_point
, destp
->ovfl_point
);
918 P_32_COPY(srcp
->last_freed
, destp
->last_freed
);
919 P_32_COPY(srcp
->max_bucket
, destp
->max_bucket
);
920 P_32_COPY(srcp
->high_mask
, destp
->high_mask
);
921 P_32_COPY(srcp
->low_mask
, destp
->low_mask
);
922 P_32_COPY(srcp
->ffactor
, destp
->ffactor
);
923 P_32_COPY(srcp
->nkeys
, destp
->nkeys
);
924 P_32_COPY(srcp
->hdrpages
, destp
->hdrpages
);
925 P_32_COPY(srcp
->h_charkey
, destp
->h_charkey
);
926 for (i
= 0; i
< NCACHED
; i
++) {
927 P_32_COPY(srcp
->spares
[i
], destp
->spares
[i
]);
928 P_16_COPY(srcp
->bitmaps
[i
], destp
->bitmaps
[i
]);
933 swap_header(HTAB
*hashp
)
940 M_32_SWAP(hdrp
->magic
);
941 M_32_SWAP(hdrp
->version
);
942 M_32_SWAP(hdrp
->lorder
);
943 M_32_SWAP(hdrp
->bsize
);
944 M_32_SWAP(hdrp
->bshift
);
945 M_32_SWAP(hdrp
->dsize
);
946 M_32_SWAP(hdrp
->ssize
);
947 M_32_SWAP(hdrp
->sshift
);
948 M_32_SWAP(hdrp
->ovfl_point
);
949 M_32_SWAP(hdrp
->last_freed
);
950 M_32_SWAP(hdrp
->max_bucket
);
951 M_32_SWAP(hdrp
->high_mask
);
952 M_32_SWAP(hdrp
->low_mask
);
953 M_32_SWAP(hdrp
->ffactor
);
954 M_32_SWAP(hdrp
->nkeys
);
955 M_32_SWAP(hdrp
->hdrpages
);
956 M_32_SWAP(hdrp
->h_charkey
);
957 for (i
= 0; i
< NCACHED
; i
++) {
958 M_32_SWAP(hdrp
->spares
[i
]);
959 M_16_SWAP(hdrp
->bitmaps
[i
]);