Home | History | Annotate | Line # | Download | only in hash
hash_page.c revision 1.16
      1  1.16       agc /*	$NetBSD: hash_page.c,v 1.16 2003/08/07 16:42:43 agc Exp $	*/
      2   1.7       cgd 
      3   1.1       cgd /*-
      4   1.6       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.16       agc  * 3. Neither the name of the University nor the names of its contributors
     19   1.1       cgd  *    may be used to endorse or promote products derived from this software
     20   1.1       cgd  *    without specific prior written permission.
     21   1.1       cgd  *
     22   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32   1.1       cgd  * SUCH DAMAGE.
     33   1.1       cgd  */
     34   1.1       cgd 
     35   1.9  christos #include <sys/cdefs.h>
     36   1.1       cgd #if defined(LIBC_SCCS) && !defined(lint)
     37   1.7       cgd #if 0
     38   1.8       cgd static char sccsid[] = "@(#)hash_page.c	8.7 (Berkeley) 8/16/94";
     39   1.7       cgd #else
     40  1.16       agc __RCSID("$NetBSD: hash_page.c,v 1.16 2003/08/07 16:42:43 agc Exp $");
     41   1.7       cgd #endif
     42   1.1       cgd #endif /* LIBC_SCCS and not lint */
     43   1.1       cgd 
     44   1.1       cgd /*
     45   1.1       cgd  * PACKAGE:  hashing
     46   1.1       cgd  *
     47   1.1       cgd  * DESCRIPTION:
     48   1.1       cgd  *	Page manipulation for hashing package.
     49   1.1       cgd  *
     50   1.1       cgd  * ROUTINES:
     51   1.1       cgd  *
     52   1.1       cgd  * External
     53   1.1       cgd  *	__get_page
     54   1.1       cgd  *	__add_ovflpage
     55   1.1       cgd  * Internal
     56   1.1       cgd  *	overflow_page
     57   1.1       cgd  *	open_temp
     58   1.1       cgd  */
     59  1.12    kleink 
     60  1.12    kleink #include "namespace.h"
     61   1.1       cgd 
     62   1.1       cgd #include <sys/types.h>
     63   1.1       cgd 
     64   1.1       cgd #include <errno.h>
     65   1.1       cgd #include <fcntl.h>
     66   1.1       cgd #include <signal.h>
     67   1.1       cgd #include <stdio.h>
     68   1.1       cgd #include <stdlib.h>
     69   1.1       cgd #include <string.h>
     70   1.1       cgd #include <unistd.h>
     71   1.1       cgd #ifdef DEBUG
     72   1.1       cgd #include <assert.h>
     73   1.1       cgd #endif
     74   1.1       cgd 
     75   1.1       cgd #include <db.h>
     76   1.1       cgd #include "hash.h"
     77   1.1       cgd #include "page.h"
     78   1.1       cgd #include "extern.h"
     79   1.1       cgd 
     80   1.6       cgd static u_int32_t	*fetch_bitmap __P((HTAB *, int));
     81   1.6       cgd static u_int32_t	 first_free __P((u_int32_t));
     82   1.1       cgd static int	 open_temp __P((HTAB *));
     83   1.6       cgd static u_int16_t	 overflow_page __P((HTAB *));
     84   1.1       cgd static void	 putpair __P((char *, const DBT *, const DBT *));
     85   1.6       cgd static void	 squeeze_key __P((u_int16_t *, const DBT *, const DBT *));
     86   1.1       cgd static int	 ugly_split
     87   1.6       cgd 		    __P((HTAB *, u_int32_t, BUFHEAD *, BUFHEAD *, int, int));
     88   1.1       cgd 
     89   1.1       cgd #define	PAGE_INIT(P) { \
     90  1.13  christos 	((u_int16_t *)(void *)(P))[0] = 0; \
     91  1.13  christos 	((u_int16_t *)(void *)(P))[1] = hashp->BSIZE - 3 * sizeof(u_int16_t); \
     92  1.13  christos 	((u_int16_t *)(void *)(P))[2] = hashp->BSIZE; \
     93   1.1       cgd }
     94   1.1       cgd 
     95   1.1       cgd /*
     96   1.1       cgd  * This is called AFTER we have verified that there is room on the page for
     97   1.1       cgd  * the pair (PAIRFITS has returned true) so we go right ahead and start moving
     98   1.1       cgd  * stuff on.
     99   1.1       cgd  */
    100   1.1       cgd static void
    101   1.1       cgd putpair(p, key, val)
    102   1.1       cgd 	char *p;
    103   1.1       cgd 	const DBT *key, *val;
    104   1.1       cgd {
    105   1.6       cgd 	register u_int16_t *bp, n, off;
    106   1.1       cgd 
    107  1.13  christos 	bp = (u_int16_t *)(void *)p;
    108   1.1       cgd 
    109   1.1       cgd 	/* Enter the key first. */
    110   1.1       cgd 	n = bp[0];
    111   1.1       cgd 
    112   1.1       cgd 	off = OFFSET(bp) - key->size;
    113   1.1       cgd 	memmove(p + off, key->data, key->size);
    114   1.1       cgd 	bp[++n] = off;
    115   1.1       cgd 
    116   1.1       cgd 	/* Now the data. */
    117   1.1       cgd 	off -= val->size;
    118   1.1       cgd 	memmove(p + off, val->data, val->size);
    119   1.1       cgd 	bp[++n] = off;
    120   1.1       cgd 
    121   1.1       cgd 	/* Adjust page info. */
    122   1.1       cgd 	bp[0] = n;
    123   1.6       cgd 	bp[n + 1] = off - ((n + 3) * sizeof(u_int16_t));
    124   1.1       cgd 	bp[n + 2] = off;
    125   1.1       cgd }
    126   1.1       cgd 
    127   1.1       cgd /*
    128   1.1       cgd  * Returns:
    129   1.1       cgd  *	 0 OK
    130   1.1       cgd  *	-1 error
    131   1.1       cgd  */
    132   1.1       cgd extern int
    133   1.1       cgd __delpair(hashp, bufp, ndx)
    134   1.1       cgd 	HTAB *hashp;
    135   1.1       cgd 	BUFHEAD *bufp;
    136   1.1       cgd 	register int ndx;
    137   1.1       cgd {
    138   1.6       cgd 	register u_int16_t *bp, newoff;
    139   1.1       cgd 	register int n;
    140   1.6       cgd 	u_int16_t pairlen;
    141   1.1       cgd 
    142  1.13  christos 	bp = (u_int16_t *)(void *)bufp->page;
    143   1.1       cgd 	n = bp[0];
    144   1.1       cgd 
    145   1.1       cgd 	if (bp[ndx + 1] < REAL_KEY)
    146   1.1       cgd 		return (__big_delete(hashp, bufp));
    147   1.1       cgd 	if (ndx != 1)
    148   1.1       cgd 		newoff = bp[ndx - 1];
    149   1.1       cgd 	else
    150   1.1       cgd 		newoff = hashp->BSIZE;
    151   1.1       cgd 	pairlen = newoff - bp[ndx + 1];
    152   1.1       cgd 
    153   1.1       cgd 	if (ndx != (n - 1)) {
    154   1.1       cgd 		/* Hard Case -- need to shuffle keys */
    155   1.1       cgd 		register int i;
    156   1.1       cgd 		register char *src = bufp->page + (int)OFFSET(bp);
    157   1.1       cgd 		register char *dst = src + (int)pairlen;
    158  1.13  christos 		memmove(dst, src, (size_t)(bp[ndx + 1] - OFFSET(bp)));
    159   1.1       cgd 
    160   1.1       cgd 		/* Now adjust the pointers */
    161   1.1       cgd 		for (i = ndx + 2; i <= n; i += 2) {
    162   1.1       cgd 			if (bp[i + 1] == OVFLPAGE) {
    163   1.1       cgd 				bp[i - 2] = bp[i];
    164   1.1       cgd 				bp[i - 1] = bp[i + 1];
    165   1.1       cgd 			} else {
    166   1.1       cgd 				bp[i - 2] = bp[i] + pairlen;
    167   1.1       cgd 				bp[i - 1] = bp[i + 1] + pairlen;
    168   1.1       cgd 			}
    169   1.1       cgd 		}
    170   1.1       cgd 	}
    171   1.1       cgd 	/* Finally adjust the page data */
    172   1.1       cgd 	bp[n] = OFFSET(bp) + pairlen;
    173   1.6       cgd 	bp[n - 1] = bp[n + 1] + pairlen + 2 * sizeof(u_int16_t);
    174   1.1       cgd 	bp[0] = n - 2;
    175   1.1       cgd 	hashp->NKEYS--;
    176   1.1       cgd 
    177   1.1       cgd 	bufp->flags |= BUF_MOD;
    178   1.1       cgd 	return (0);
    179   1.1       cgd }
    180   1.1       cgd /*
    181   1.1       cgd  * Returns:
    182   1.1       cgd  *	 0 ==> OK
    183   1.1       cgd  *	-1 ==> Error
    184   1.1       cgd  */
    185   1.1       cgd extern int
    186   1.1       cgd __split_page(hashp, obucket, nbucket)
    187   1.1       cgd 	HTAB *hashp;
    188   1.6       cgd 	u_int32_t obucket, nbucket;
    189   1.1       cgd {
    190   1.1       cgd 	register BUFHEAD *new_bufp, *old_bufp;
    191   1.6       cgd 	register u_int16_t *ino;
    192   1.1       cgd 	register char *np;
    193   1.1       cgd 	DBT key, val;
    194   1.1       cgd 	int n, ndx, retval;
    195   1.6       cgd 	u_int16_t copyto, diff, off, moved;
    196   1.1       cgd 	char *op;
    197   1.1       cgd 
    198   1.6       cgd 	copyto = (u_int16_t)hashp->BSIZE;
    199   1.6       cgd 	off = (u_int16_t)hashp->BSIZE;
    200   1.1       cgd 	old_bufp = __get_buf(hashp, obucket, NULL, 0);
    201   1.1       cgd 	if (old_bufp == NULL)
    202   1.1       cgd 		return (-1);
    203   1.1       cgd 	new_bufp = __get_buf(hashp, nbucket, NULL, 0);
    204   1.1       cgd 	if (new_bufp == NULL)
    205   1.1       cgd 		return (-1);
    206   1.1       cgd 
    207   1.1       cgd 	old_bufp->flags |= (BUF_MOD | BUF_PIN);
    208   1.1       cgd 	new_bufp->flags |= (BUF_MOD | BUF_PIN);
    209   1.1       cgd 
    210  1.13  christos 	ino = (u_int16_t *)(void *)(op = old_bufp->page);
    211   1.1       cgd 	np = new_bufp->page;
    212   1.1       cgd 
    213   1.1       cgd 	moved = 0;
    214   1.1       cgd 
    215   1.1       cgd 	for (n = 1, ndx = 1; n < ino[0]; n += 2) {
    216   1.1       cgd 		if (ino[n + 1] < REAL_KEY) {
    217   1.1       cgd 			retval = ugly_split(hashp, obucket, old_bufp, new_bufp,
    218   1.1       cgd 			    (int)copyto, (int)moved);
    219   1.1       cgd 			old_bufp->flags &= ~BUF_PIN;
    220   1.1       cgd 			new_bufp->flags &= ~BUF_PIN;
    221   1.1       cgd 			return (retval);
    222   1.1       cgd 
    223   1.1       cgd 		}
    224   1.1       cgd 		key.data = (u_char *)op + ino[n];
    225   1.1       cgd 		key.size = off - ino[n];
    226   1.1       cgd 
    227  1.13  christos 		if (__call_hash(hashp, key.data, (int)key.size) == obucket) {
    228   1.1       cgd 			/* Don't switch page */
    229   1.1       cgd 			diff = copyto - off;
    230   1.1       cgd 			if (diff) {
    231   1.1       cgd 				copyto = ino[n + 1] + diff;
    232   1.1       cgd 				memmove(op + copyto, op + ino[n + 1],
    233  1.13  christos 				    (size_t)(off - ino[n + 1]));
    234   1.1       cgd 				ino[ndx] = copyto + ino[n] - ino[n + 1];
    235   1.1       cgd 				ino[ndx + 1] = copyto;
    236   1.1       cgd 			} else
    237   1.1       cgd 				copyto = ino[n + 1];
    238   1.1       cgd 			ndx += 2;
    239   1.1       cgd 		} else {
    240   1.1       cgd 			/* Switch page */
    241   1.1       cgd 			val.data = (u_char *)op + ino[n + 1];
    242   1.1       cgd 			val.size = ino[n] - ino[n + 1];
    243   1.1       cgd 			putpair(np, &key, &val);
    244   1.1       cgd 			moved += 2;
    245   1.1       cgd 		}
    246   1.1       cgd 
    247   1.1       cgd 		off = ino[n + 1];
    248   1.1       cgd 	}
    249   1.1       cgd 
    250   1.1       cgd 	/* Now clean up the page */
    251   1.1       cgd 	ino[0] -= moved;
    252   1.6       cgd 	FREESPACE(ino) = copyto - sizeof(u_int16_t) * (ino[0] + 3);
    253   1.1       cgd 	OFFSET(ino) = copyto;
    254   1.1       cgd 
    255   1.1       cgd #ifdef DEBUG3
    256   1.1       cgd 	(void)fprintf(stderr, "split %d/%d\n",
    257   1.6       cgd 	    ((u_int16_t *)np)[0] / 2,
    258   1.6       cgd 	    ((u_int16_t *)op)[0] / 2);
    259   1.1       cgd #endif
    260   1.1       cgd 	/* unpin both pages */
    261   1.1       cgd 	old_bufp->flags &= ~BUF_PIN;
    262   1.1       cgd 	new_bufp->flags &= ~BUF_PIN;
    263   1.1       cgd 	return (0);
    264   1.1       cgd }
    265   1.1       cgd 
    266   1.1       cgd /*
    267   1.1       cgd  * Called when we encounter an overflow or big key/data page during split
    268   1.1       cgd  * handling.  This is special cased since we have to begin checking whether
    269   1.1       cgd  * the key/data pairs fit on their respective pages and because we may need
    270   1.1       cgd  * overflow pages for both the old and new pages.
    271   1.1       cgd  *
    272   1.1       cgd  * The first page might be a page with regular key/data pairs in which case
    273   1.1       cgd  * we have a regular overflow condition and just need to go on to the next
    274   1.1       cgd  * page or it might be a big key/data pair in which case we need to fix the
    275   1.1       cgd  * big key/data pair.
    276   1.1       cgd  *
    277   1.1       cgd  * Returns:
    278   1.1       cgd  *	 0 ==> success
    279   1.1       cgd  *	-1 ==> failure
    280   1.1       cgd  */
    281   1.1       cgd static int
    282   1.1       cgd ugly_split(hashp, obucket, old_bufp, new_bufp, copyto, moved)
    283   1.1       cgd 	HTAB *hashp;
    284   1.6       cgd 	u_int32_t obucket;	/* Same as __split_page. */
    285   1.1       cgd 	BUFHEAD *old_bufp, *new_bufp;
    286   1.1       cgd 	int copyto;	/* First byte on page which contains key/data values. */
    287   1.1       cgd 	int moved;	/* Number of pairs moved to new page. */
    288   1.1       cgd {
    289   1.1       cgd 	register BUFHEAD *bufp;	/* Buffer header for ino */
    290   1.6       cgd 	register u_int16_t *ino;	/* Page keys come off of */
    291   1.6       cgd 	register u_int16_t *np;	/* New page */
    292   1.6       cgd 	register u_int16_t *op;	/* Page keys go on to if they aren't moving */
    293   1.1       cgd 
    294   1.1       cgd 	BUFHEAD *last_bfp;	/* Last buf header OVFL needing to be freed */
    295   1.1       cgd 	DBT key, val;
    296   1.1       cgd 	SPLIT_RETURN ret;
    297   1.6       cgd 	u_int16_t n, off, ov_addr, scopyto;
    298   1.1       cgd 	char *cino;		/* Character value of ino */
    299   1.1       cgd 
    300   1.1       cgd 	bufp = old_bufp;
    301  1.13  christos 	ino = (u_int16_t *)(void *)old_bufp->page;
    302  1.13  christos 	np = (u_int16_t *)(void *)new_bufp->page;
    303  1.13  christos 	op = (u_int16_t *)(void *)old_bufp->page;
    304   1.1       cgd 	last_bfp = NULL;
    305   1.6       cgd 	scopyto = (u_int16_t)copyto;	/* ANSI */
    306   1.1       cgd 
    307   1.1       cgd 	n = ino[0] - 1;
    308   1.1       cgd 	while (n < ino[0]) {
    309   1.1       cgd 		if (ino[2] < REAL_KEY && ino[2] != OVFLPAGE) {
    310   1.1       cgd 			if (__big_split(hashp, old_bufp,
    311  1.13  christos 			    new_bufp, bufp, (int)bufp->addr, obucket, &ret))
    312   1.1       cgd 				return (-1);
    313   1.1       cgd 			old_bufp = ret.oldp;
    314   1.1       cgd 			if (!old_bufp)
    315   1.1       cgd 				return (-1);
    316  1.13  christos 			op = (u_int16_t *)(void *)old_bufp->page;
    317   1.1       cgd 			new_bufp = ret.newp;
    318   1.1       cgd 			if (!new_bufp)
    319   1.1       cgd 				return (-1);
    320  1.13  christos 			np = (u_int16_t *)(void *)new_bufp->page;
    321   1.1       cgd 			bufp = ret.nextp;
    322   1.1       cgd 			if (!bufp)
    323   1.1       cgd 				return (0);
    324   1.1       cgd 			cino = (char *)bufp->page;
    325  1.13  christos 			ino = (u_int16_t *)(void *)cino;
    326   1.1       cgd 			last_bfp = ret.nextp;
    327   1.1       cgd 		} else if (ino[n + 1] == OVFLPAGE) {
    328   1.1       cgd 			ov_addr = ino[n];
    329   1.1       cgd 			/*
    330   1.1       cgd 			 * Fix up the old page -- the extra 2 are the fields
    331   1.1       cgd 			 * which contained the overflow information.
    332   1.1       cgd 			 */
    333   1.1       cgd 			ino[0] -= (moved + 2);
    334   1.1       cgd 			FREESPACE(ino) =
    335   1.6       cgd 			    scopyto - sizeof(u_int16_t) * (ino[0] + 3);
    336   1.1       cgd 			OFFSET(ino) = scopyto;
    337   1.1       cgd 
    338  1.13  christos 			bufp = __get_buf(hashp, (u_int32_t)ov_addr, bufp, 0);
    339   1.1       cgd 			if (!bufp)
    340   1.1       cgd 				return (-1);
    341   1.1       cgd 
    342  1.13  christos 			ino = (u_int16_t *)(void *)bufp->page;
    343   1.1       cgd 			n = 1;
    344   1.1       cgd 			scopyto = hashp->BSIZE;
    345   1.1       cgd 			moved = 0;
    346   1.1       cgd 
    347   1.1       cgd 			if (last_bfp)
    348   1.1       cgd 				__free_ovflpage(hashp, last_bfp);
    349   1.1       cgd 			last_bfp = bufp;
    350   1.1       cgd 		}
    351   1.1       cgd 		/* Move regular sized pairs of there are any */
    352   1.1       cgd 		off = hashp->BSIZE;
    353   1.1       cgd 		for (n = 1; (n < ino[0]) && (ino[n + 1] >= REAL_KEY); n += 2) {
    354  1.13  christos 			cino = (char *)(void *)ino;
    355   1.1       cgd 			key.data = (u_char *)cino + ino[n];
    356   1.1       cgd 			key.size = off - ino[n];
    357   1.1       cgd 			val.data = (u_char *)cino + ino[n + 1];
    358   1.1       cgd 			val.size = ino[n] - ino[n + 1];
    359   1.1       cgd 			off = ino[n + 1];
    360   1.1       cgd 
    361  1.13  christos 			if (__call_hash(hashp, key.data, (int)key.size) == obucket) {
    362   1.1       cgd 				/* Keep on old page */
    363   1.1       cgd 				if (PAIRFITS(op, (&key), (&val)))
    364  1.13  christos 					putpair((char *)(void *)op, &key, &val);
    365   1.1       cgd 				else {
    366   1.1       cgd 					old_bufp =
    367   1.1       cgd 					    __add_ovflpage(hashp, old_bufp);
    368   1.1       cgd 					if (!old_bufp)
    369   1.1       cgd 						return (-1);
    370  1.13  christos 					op = (u_int16_t *)(void *)old_bufp->page;
    371  1.13  christos 					putpair((char *)(void *)op, &key, &val);
    372   1.1       cgd 				}
    373   1.1       cgd 				old_bufp->flags |= BUF_MOD;
    374   1.1       cgd 			} else {
    375   1.1       cgd 				/* Move to new page */
    376   1.1       cgd 				if (PAIRFITS(np, (&key), (&val)))
    377  1.13  christos 					putpair((char *)(void *)np, &key, &val);
    378   1.1       cgd 				else {
    379   1.1       cgd 					new_bufp =
    380   1.1       cgd 					    __add_ovflpage(hashp, new_bufp);
    381   1.1       cgd 					if (!new_bufp)
    382   1.1       cgd 						return (-1);
    383  1.13  christos 					np = (u_int16_t *)(void *)new_bufp->page;
    384  1.13  christos 					putpair((char *)(void *)np, &key, &val);
    385   1.1       cgd 				}
    386   1.1       cgd 				new_bufp->flags |= BUF_MOD;
    387   1.1       cgd 			}
    388   1.1       cgd 		}
    389   1.1       cgd 	}
    390   1.1       cgd 	if (last_bfp)
    391   1.1       cgd 		__free_ovflpage(hashp, last_bfp);
    392   1.1       cgd 	return (0);
    393   1.1       cgd }
    394   1.1       cgd 
    395   1.1       cgd /*
    396   1.1       cgd  * Add the given pair to the page
    397   1.1       cgd  *
    398   1.1       cgd  * Returns:
    399   1.1       cgd  *	0 ==> OK
    400   1.1       cgd  *	1 ==> failure
    401   1.1       cgd  */
    402   1.1       cgd extern int
    403   1.1       cgd __addel(hashp, bufp, key, val)
    404   1.1       cgd 	HTAB *hashp;
    405   1.1       cgd 	BUFHEAD *bufp;
    406   1.1       cgd 	const DBT *key, *val;
    407   1.1       cgd {
    408   1.6       cgd 	register u_int16_t *bp, *sop;
    409   1.1       cgd 	int do_expand;
    410   1.1       cgd 
    411  1.13  christos 	bp = (u_int16_t *)(void *)bufp->page;
    412   1.1       cgd 	do_expand = 0;
    413   1.4       cgd 	while (bp[0] && (bp[2] < REAL_KEY || bp[bp[0]] < REAL_KEY))
    414   1.1       cgd 		/* Exception case */
    415   1.4       cgd 		if (bp[2] == FULL_KEY_DATA && bp[0] == 2)
    416   1.4       cgd 			/* This is the last page of a big key/data pair
    417   1.4       cgd 			   and we need to add another page */
    418   1.4       cgd 			break;
    419   1.4       cgd 		else if (bp[2] < REAL_KEY && bp[bp[0]] != OVFLPAGE) {
    420  1.13  christos 			bufp = __get_buf(hashp, (u_int32_t)bp[bp[0] - 1], bufp,
    421  1.13  christos 			    0);
    422   1.1       cgd 			if (!bufp)
    423   1.1       cgd 				return (-1);
    424  1.13  christos 			bp = (u_int16_t *)(void *)bufp->page;
    425  1.15   mycroft 		} else if (bp[bp[0]] != OVFLPAGE) {
    426  1.15   mycroft 			/* Short key/data pairs, no more pages */
    427  1.15   mycroft 			break;
    428  1.15   mycroft 		} else {
    429   1.1       cgd 			/* Try to squeeze key on this page */
    430  1.15   mycroft 			if (bp[2] >= REAL_KEY &&
    431  1.15   mycroft 			    FREESPACE(bp) >= PAIRSIZE(key, val)) {
    432   1.1       cgd 				squeeze_key(bp, key, val);
    433  1.15   mycroft 				goto stats;
    434   1.1       cgd 			} else {
    435  1.13  christos 				bufp = __get_buf(hashp,
    436  1.13  christos 				    (u_int32_t)bp[bp[0] - 1], bufp, 0);
    437   1.1       cgd 				if (!bufp)
    438   1.1       cgd 					return (-1);
    439  1.13  christos 				bp = (u_int16_t *)(void *)bufp->page;
    440   1.1       cgd 			}
    441  1.15   mycroft 		}
    442   1.1       cgd 
    443   1.1       cgd 	if (PAIRFITS(bp, key, val))
    444   1.1       cgd 		putpair(bufp->page, key, val);
    445   1.1       cgd 	else {
    446   1.1       cgd 		do_expand = 1;
    447   1.1       cgd 		bufp = __add_ovflpage(hashp, bufp);
    448   1.1       cgd 		if (!bufp)
    449   1.1       cgd 			return (-1);
    450  1.13  christos 		sop = (u_int16_t *)(void *)bufp->page;
    451   1.1       cgd 
    452   1.1       cgd 		if (PAIRFITS(sop, key, val))
    453  1.13  christos 			putpair((char *)(void *)sop, key, val);
    454   1.1       cgd 		else
    455   1.1       cgd 			if (__big_insert(hashp, bufp, key, val))
    456   1.1       cgd 				return (-1);
    457   1.1       cgd 	}
    458  1.15   mycroft stats:
    459   1.1       cgd 	bufp->flags |= BUF_MOD;
    460   1.1       cgd 	/*
    461   1.1       cgd 	 * If the average number of keys per bucket exceeds the fill factor,
    462   1.1       cgd 	 * expand the table.
    463   1.1       cgd 	 */
    464   1.1       cgd 	hashp->NKEYS++;
    465   1.1       cgd 	if (do_expand ||
    466   1.1       cgd 	    (hashp->NKEYS / (hashp->MAX_BUCKET + 1) > hashp->FFACTOR))
    467   1.1       cgd 		return (__expand_table(hashp));
    468   1.1       cgd 	return (0);
    469   1.1       cgd }
    470   1.1       cgd 
    471   1.1       cgd /*
    472   1.1       cgd  *
    473   1.1       cgd  * Returns:
    474   1.1       cgd  *	pointer on success
    475   1.1       cgd  *	NULL on error
    476   1.1       cgd  */
    477   1.1       cgd extern BUFHEAD *
    478   1.1       cgd __add_ovflpage(hashp, bufp)
    479   1.1       cgd 	HTAB *hashp;
    480   1.1       cgd 	BUFHEAD *bufp;
    481   1.1       cgd {
    482   1.6       cgd 	register u_int16_t *sp;
    483   1.6       cgd 	u_int16_t ndx, ovfl_num;
    484   1.1       cgd #ifdef DEBUG1
    485   1.1       cgd 	int tmp1, tmp2;
    486   1.1       cgd #endif
    487  1.13  christos 	sp = (u_int16_t *)(void *)bufp->page;
    488   1.1       cgd 
    489   1.1       cgd 	/* Check if we are dynamically determining the fill factor */
    490   1.1       cgd 	if (hashp->FFACTOR == DEF_FFACTOR) {
    491  1.13  christos 		hashp->FFACTOR = (u_int32_t)sp[0] >> 1;
    492   1.1       cgd 		if (hashp->FFACTOR < MIN_FFACTOR)
    493   1.1       cgd 			hashp->FFACTOR = MIN_FFACTOR;
    494   1.1       cgd 	}
    495   1.1       cgd 	bufp->flags |= BUF_MOD;
    496   1.1       cgd 	ovfl_num = overflow_page(hashp);
    497   1.1       cgd #ifdef DEBUG1
    498   1.1       cgd 	tmp1 = bufp->addr;
    499   1.1       cgd 	tmp2 = bufp->ovfl ? bufp->ovfl->addr : 0;
    500   1.1       cgd #endif
    501  1.13  christos 	if (!ovfl_num || !(bufp->ovfl = __get_buf(hashp, (u_int32_t)ovfl_num,
    502  1.13  christos 	    bufp, 1)))
    503   1.1       cgd 		return (NULL);
    504   1.1       cgd 	bufp->ovfl->flags |= BUF_MOD;
    505   1.1       cgd #ifdef DEBUG1
    506   1.1       cgd 	(void)fprintf(stderr, "ADDOVFLPAGE: %d->ovfl was %d is now %d\n",
    507   1.1       cgd 	    tmp1, tmp2, bufp->ovfl->addr);
    508   1.1       cgd #endif
    509   1.1       cgd 	ndx = sp[0];
    510   1.1       cgd 	/*
    511   1.1       cgd 	 * Since a pair is allocated on a page only if there's room to add
    512   1.1       cgd 	 * an overflow page, we know that the OVFL information will fit on
    513   1.1       cgd 	 * the page.
    514   1.1       cgd 	 */
    515   1.1       cgd 	sp[ndx + 4] = OFFSET(sp);
    516   1.1       cgd 	sp[ndx + 3] = FREESPACE(sp) - OVFLSIZE;
    517   1.1       cgd 	sp[ndx + 1] = ovfl_num;
    518   1.1       cgd 	sp[ndx + 2] = OVFLPAGE;
    519   1.1       cgd 	sp[0] = ndx + 2;
    520   1.1       cgd #ifdef HASH_STATISTICS
    521   1.1       cgd 	hash_overflows++;
    522   1.1       cgd #endif
    523   1.1       cgd 	return (bufp->ovfl);
    524   1.1       cgd }
    525   1.1       cgd 
    526   1.1       cgd /*
    527   1.1       cgd  * Returns:
    528   1.1       cgd  *	 0 indicates SUCCESS
    529   1.1       cgd  *	-1 indicates FAILURE
    530   1.1       cgd  */
    531   1.1       cgd extern int
    532   1.1       cgd __get_page(hashp, p, bucket, is_bucket, is_disk, is_bitmap)
    533   1.1       cgd 	HTAB *hashp;
    534   1.1       cgd 	char *p;
    535   1.6       cgd 	u_int32_t bucket;
    536   1.1       cgd 	int is_bucket, is_disk, is_bitmap;
    537   1.1       cgd {
    538   1.1       cgd 	register int fd, page, size;
    539   1.1       cgd 	int rsize;
    540   1.6       cgd 	u_int16_t *bp;
    541   1.1       cgd 
    542   1.1       cgd 	fd = hashp->fp;
    543   1.1       cgd 	size = hashp->BSIZE;
    544   1.1       cgd 
    545   1.1       cgd 	if ((fd == -1) || !is_disk) {
    546   1.1       cgd 		PAGE_INIT(p);
    547   1.1       cgd 		return (0);
    548   1.1       cgd 	}
    549   1.1       cgd 	if (is_bucket)
    550   1.1       cgd 		page = BUCKET_TO_PAGE(bucket);
    551   1.1       cgd 	else
    552   1.1       cgd 		page = OADDR_TO_PAGE(bucket);
    553  1.13  christos 	if ((rsize = pread(fd, p, (size_t)size, (off_t)page << hashp->BSHIFT)) == -1)
    554   1.1       cgd 		return (-1);
    555  1.13  christos 	bp = (u_int16_t *)(void *)p;
    556   1.1       cgd 	if (!rsize)
    557   1.1       cgd 		bp[0] = 0;	/* We hit the EOF, so initialize a new page */
    558   1.1       cgd 	else
    559   1.1       cgd 		if (rsize != size) {
    560   1.1       cgd 			errno = EFTYPE;
    561   1.1       cgd 			return (-1);
    562   1.1       cgd 		}
    563   1.1       cgd 	if (!is_bitmap && !bp[0]) {
    564   1.1       cgd 		PAGE_INIT(p);
    565   1.1       cgd 	} else
    566   1.1       cgd 		if (hashp->LORDER != BYTE_ORDER) {
    567   1.1       cgd 			register int i, max;
    568   1.1       cgd 
    569   1.1       cgd 			if (is_bitmap) {
    570  1.13  christos 				max = (u_int32_t)hashp->BSIZE >> 2; /* divide by 4 */
    571   1.1       cgd 				for (i = 0; i < max; i++)
    572  1.13  christos 					M_32_SWAP(((int *)(void *)p)[i]);
    573   1.1       cgd 			} else {
    574   1.6       cgd 				M_16_SWAP(bp[0]);
    575   1.1       cgd 				max = bp[0] + 2;
    576   1.1       cgd 				for (i = 1; i <= max; i++)
    577   1.6       cgd 					M_16_SWAP(bp[i]);
    578   1.1       cgd 			}
    579   1.1       cgd 		}
    580   1.1       cgd 	return (0);
    581   1.1       cgd }
    582   1.1       cgd 
    583   1.1       cgd /*
    584   1.1       cgd  * Write page p to disk
    585   1.1       cgd  *
    586   1.1       cgd  * Returns:
    587   1.1       cgd  *	 0 ==> OK
    588   1.1       cgd  *	-1 ==>failure
    589   1.1       cgd  */
    590   1.1       cgd extern int
    591   1.1       cgd __put_page(hashp, p, bucket, is_bucket, is_bitmap)
    592   1.1       cgd 	HTAB *hashp;
    593   1.1       cgd 	char *p;
    594   1.6       cgd 	u_int32_t bucket;
    595   1.1       cgd 	int is_bucket, is_bitmap;
    596   1.1       cgd {
    597   1.1       cgd 	register int fd, page, size;
    598   1.1       cgd 	int wsize;
    599   1.1       cgd 
    600   1.1       cgd 	size = hashp->BSIZE;
    601   1.1       cgd 	if ((hashp->fp == -1) && open_temp(hashp))
    602   1.1       cgd 		return (-1);
    603   1.1       cgd 	fd = hashp->fp;
    604   1.1       cgd 
    605   1.1       cgd 	if (hashp->LORDER != BYTE_ORDER) {
    606   1.1       cgd 		register int i;
    607   1.1       cgd 		register int max;
    608   1.1       cgd 
    609   1.1       cgd 		if (is_bitmap) {
    610  1.13  christos 			max = (u_int32_t)hashp->BSIZE >> 2;	/* divide by 4 */
    611   1.1       cgd 			for (i = 0; i < max; i++)
    612  1.13  christos 				M_32_SWAP(((int *)(void *)p)[i]);
    613   1.1       cgd 		} else {
    614  1.13  christos 			max = ((u_int16_t *)(void *)p)[0] + 2;
    615   1.1       cgd 			for (i = 0; i <= max; i++)
    616  1.13  christos 				M_16_SWAP(((u_int16_t *)(void *)p)[i]);
    617   1.1       cgd 		}
    618   1.1       cgd 	}
    619   1.1       cgd 	if (is_bucket)
    620   1.1       cgd 		page = BUCKET_TO_PAGE(bucket);
    621   1.1       cgd 	else
    622   1.1       cgd 		page = OADDR_TO_PAGE(bucket);
    623  1.13  christos 	if ((wsize = pwrite(fd, p, (size_t)size, (off_t)page << hashp->BSHIFT)) == -1)
    624   1.1       cgd 		/* Errno is set */
    625   1.1       cgd 		return (-1);
    626   1.1       cgd 	if (wsize != size) {
    627   1.1       cgd 		errno = EFTYPE;
    628   1.1       cgd 		return (-1);
    629   1.1       cgd 	}
    630   1.1       cgd 	return (0);
    631   1.1       cgd }
    632   1.1       cgd 
    633   1.1       cgd #define BYTE_MASK	((1 << INT_BYTE_SHIFT) -1)
    634   1.1       cgd /*
    635   1.1       cgd  * Initialize a new bitmap page.  Bitmap pages are left in memory
    636   1.1       cgd  * once they are read in.
    637   1.1       cgd  */
    638   1.1       cgd extern int
    639   1.6       cgd __ibitmap(hashp, pnum, nbits, ndx)
    640   1.1       cgd 	HTAB *hashp;
    641   1.1       cgd 	int pnum, nbits, ndx;
    642   1.1       cgd {
    643   1.6       cgd 	u_int32_t *ip;
    644   1.1       cgd 	int clearbytes, clearints;
    645   1.1       cgd 
    646  1.13  christos 	if ((ip = (u_int32_t *)malloc((size_t)hashp->BSIZE)) == NULL)
    647   1.1       cgd 		return (1);
    648   1.1       cgd 	hashp->nmaps++;
    649  1.13  christos 	clearints = ((u_int32_t)(nbits - 1) >> INT_BYTE_SHIFT) + 1;
    650   1.1       cgd 	clearbytes = clearints << INT_TO_BYTE;
    651  1.13  christos 	(void)memset(ip, 0, (size_t)clearbytes);
    652  1.13  christos 	(void)memset(((char *)(void *)ip) + clearbytes, 0xFF,
    653  1.13  christos 	    (size_t)(hashp->BSIZE - clearbytes));
    654   1.1       cgd 	ip[clearints - 1] = ALL_SET << (nbits & BYTE_MASK);
    655   1.1       cgd 	SETBIT(ip, 0);
    656   1.6       cgd 	hashp->BITMAPS[ndx] = (u_int16_t)pnum;
    657   1.1       cgd 	hashp->mapp[ndx] = ip;
    658   1.1       cgd 	return (0);
    659   1.1       cgd }
    660   1.1       cgd 
    661   1.6       cgd static u_int32_t
    662   1.1       cgd first_free(map)
    663   1.6       cgd 	u_int32_t map;
    664   1.1       cgd {
    665   1.6       cgd 	register u_int32_t i, mask;
    666   1.1       cgd 
    667   1.1       cgd 	mask = 0x1;
    668   1.1       cgd 	for (i = 0; i < BITS_PER_MAP; i++) {
    669   1.1       cgd 		if (!(mask & map))
    670   1.1       cgd 			return (i);
    671   1.1       cgd 		mask = mask << 1;
    672   1.1       cgd 	}
    673   1.1       cgd 	return (i);
    674   1.1       cgd }
    675   1.1       cgd 
    676   1.6       cgd static u_int16_t
    677   1.1       cgd overflow_page(hashp)
    678   1.1       cgd 	HTAB *hashp;
    679   1.1       cgd {
    680   1.9  christos 	register u_int32_t *freep = NULL;
    681   1.1       cgd 	register int max_free, offset, splitnum;
    682   1.6       cgd 	u_int16_t addr;
    683   1.1       cgd 	int bit, first_page, free_bit, free_page, i, in_use_bits, j;
    684   1.1       cgd #ifdef DEBUG2
    685   1.1       cgd 	int tmp1, tmp2;
    686   1.1       cgd #endif
    687   1.1       cgd 	splitnum = hashp->OVFL_POINT;
    688   1.1       cgd 	max_free = hashp->SPARES[splitnum];
    689   1.1       cgd 
    690  1.13  christos 	free_page = (u_int32_t)(max_free - 1) >> (hashp->BSHIFT + BYTE_SHIFT);
    691   1.1       cgd 	free_bit = (max_free - 1) & ((hashp->BSIZE << BYTE_SHIFT) - 1);
    692   1.1       cgd 
    693   1.1       cgd 	/* Look through all the free maps to find the first free block */
    694  1.13  christos 	first_page = (u_int32_t)hashp->LAST_FREED >>(hashp->BSHIFT + BYTE_SHIFT);
    695   1.1       cgd 	for ( i = first_page; i <= free_page; i++ ) {
    696   1.6       cgd 		if (!(freep = (u_int32_t *)hashp->mapp[i]) &&
    697   1.1       cgd 		    !(freep = fetch_bitmap(hashp, i)))
    698   1.8       cgd 			return (0);
    699   1.1       cgd 		if (i == free_page)
    700   1.1       cgd 			in_use_bits = free_bit;
    701   1.1       cgd 		else
    702   1.1       cgd 			in_use_bits = (hashp->BSIZE << BYTE_SHIFT) - 1;
    703   1.1       cgd 
    704   1.1       cgd 		if (i == first_page) {
    705   1.1       cgd 			bit = hashp->LAST_FREED &
    706   1.1       cgd 			    ((hashp->BSIZE << BYTE_SHIFT) - 1);
    707   1.1       cgd 			j = bit / BITS_PER_MAP;
    708   1.1       cgd 			bit = bit & ~(BITS_PER_MAP - 1);
    709   1.1       cgd 		} else {
    710   1.1       cgd 			bit = 0;
    711   1.1       cgd 			j = 0;
    712   1.1       cgd 		}
    713   1.1       cgd 		for (; bit <= in_use_bits; j++, bit += BITS_PER_MAP)
    714   1.1       cgd 			if (freep[j] != ALL_SET)
    715   1.1       cgd 				goto found;
    716   1.1       cgd 	}
    717   1.1       cgd 
    718   1.1       cgd 	/* No Free Page Found */
    719   1.1       cgd 	hashp->LAST_FREED = hashp->SPARES[splitnum];
    720   1.1       cgd 	hashp->SPARES[splitnum]++;
    721   1.1       cgd 	offset = hashp->SPARES[splitnum] -
    722   1.1       cgd 	    (splitnum ? hashp->SPARES[splitnum - 1] : 0);
    723   1.1       cgd 
    724   1.1       cgd #define	OVMSG	"HASH: Out of overflow pages.  Increase page size\n"
    725   1.1       cgd 	if (offset > SPLITMASK) {
    726   1.1       cgd 		if (++splitnum >= NCACHED) {
    727   1.1       cgd 			(void)write(STDERR_FILENO, OVMSG, sizeof(OVMSG) - 1);
    728  1.14   mycroft 			errno = EFBIG;
    729   1.8       cgd 			return (0);
    730   1.1       cgd 		}
    731   1.1       cgd 		hashp->OVFL_POINT = splitnum;
    732   1.1       cgd 		hashp->SPARES[splitnum] = hashp->SPARES[splitnum-1];
    733   1.1       cgd 		hashp->SPARES[splitnum-1]--;
    734   1.1       cgd 		offset = 1;
    735   1.1       cgd 	}
    736   1.1       cgd 
    737   1.1       cgd 	/* Check if we need to allocate a new bitmap page */
    738   1.1       cgd 	if (free_bit == (hashp->BSIZE << BYTE_SHIFT) - 1) {
    739   1.1       cgd 		free_page++;
    740   1.1       cgd 		if (free_page >= NCACHED) {
    741   1.1       cgd 			(void)write(STDERR_FILENO, OVMSG, sizeof(OVMSG) - 1);
    742  1.14   mycroft 			errno = EFBIG;
    743   1.8       cgd 			return (0);
    744   1.1       cgd 		}
    745   1.1       cgd 		/*
    746   1.1       cgd 		 * This is tricky.  The 1 indicates that you want the new page
    747   1.1       cgd 		 * allocated with 1 clear bit.  Actually, you are going to
    748   1.1       cgd 		 * allocate 2 pages from this map.  The first is going to be
    749   1.1       cgd 		 * the map page, the second is the overflow page we were
    750   1.1       cgd 		 * looking for.  The init_bitmap routine automatically, sets
    751   1.1       cgd 		 * the first bit of itself to indicate that the bitmap itself
    752   1.1       cgd 		 * is in use.  We would explicitly set the second bit, but
    753   1.1       cgd 		 * don't have to if we tell init_bitmap not to leave it clear
    754   1.1       cgd 		 * in the first place.
    755   1.1       cgd 		 */
    756   1.8       cgd 		if (__ibitmap(hashp,
    757   1.8       cgd 		    (int)OADDR_OF(splitnum, offset), 1, free_page))
    758   1.8       cgd 			return (0);
    759   1.1       cgd 		hashp->SPARES[splitnum]++;
    760   1.1       cgd #ifdef DEBUG2
    761   1.1       cgd 		free_bit = 2;
    762   1.1       cgd #endif
    763   1.1       cgd 		offset++;
    764   1.1       cgd 		if (offset > SPLITMASK) {
    765   1.1       cgd 			if (++splitnum >= NCACHED) {
    766   1.1       cgd 				(void)write(STDERR_FILENO, OVMSG,
    767   1.1       cgd 				    sizeof(OVMSG) - 1);
    768  1.14   mycroft 				errno = EFBIG;
    769   1.8       cgd 				return (0);
    770   1.1       cgd 			}
    771   1.1       cgd 			hashp->OVFL_POINT = splitnum;
    772   1.1       cgd 			hashp->SPARES[splitnum] = hashp->SPARES[splitnum-1];
    773   1.1       cgd 			hashp->SPARES[splitnum-1]--;
    774   1.1       cgd 			offset = 0;
    775   1.1       cgd 		}
    776   1.1       cgd 	} else {
    777   1.1       cgd 		/*
    778   1.1       cgd 		 * Free_bit addresses the last used bit.  Bump it to address
    779   1.1       cgd 		 * the first available bit.
    780   1.1       cgd 		 */
    781   1.1       cgd 		free_bit++;
    782   1.1       cgd 		SETBIT(freep, free_bit);
    783   1.1       cgd 	}
    784   1.1       cgd 
    785   1.1       cgd 	/* Calculate address of the new overflow page */
    786   1.1       cgd 	addr = OADDR_OF(splitnum, offset);
    787   1.1       cgd #ifdef DEBUG2
    788   1.1       cgd 	(void)fprintf(stderr, "OVERFLOW_PAGE: ADDR: %d BIT: %d PAGE %d\n",
    789   1.1       cgd 	    addr, free_bit, free_page);
    790   1.1       cgd #endif
    791   1.1       cgd 	return (addr);
    792   1.1       cgd 
    793   1.1       cgd found:
    794   1.1       cgd 	bit = bit + first_free(freep[j]);
    795   1.1       cgd 	SETBIT(freep, bit);
    796   1.1       cgd #ifdef DEBUG2
    797   1.1       cgd 	tmp1 = bit;
    798   1.1       cgd 	tmp2 = i;
    799   1.1       cgd #endif
    800   1.1       cgd 	/*
    801   1.1       cgd 	 * Bits are addressed starting with 0, but overflow pages are addressed
    802   1.1       cgd 	 * beginning at 1. Bit is a bit addressnumber, so we need to increment
    803   1.1       cgd 	 * it to convert it to a page number.
    804   1.1       cgd 	 */
    805   1.1       cgd 	bit = 1 + bit + (i * (hashp->BSIZE << BYTE_SHIFT));
    806   1.1       cgd 	if (bit >= hashp->LAST_FREED)
    807   1.1       cgd 		hashp->LAST_FREED = bit - 1;
    808   1.1       cgd 
    809   1.1       cgd 	/* Calculate the split number for this page */
    810   1.1       cgd 	for (i = 0; (i < splitnum) && (bit > hashp->SPARES[i]); i++);
    811   1.1       cgd 	offset = (i ? bit - hashp->SPARES[i - 1] : bit);
    812  1.14   mycroft 	if (offset >= SPLITMASK) {
    813  1.14   mycroft 		(void)write(STDERR_FILENO, OVMSG, sizeof(OVMSG) - 1);
    814  1.14   mycroft 		errno = EFBIG;
    815   1.8       cgd 		return (0);	/* Out of overflow pages */
    816  1.14   mycroft 	}
    817   1.1       cgd 	addr = OADDR_OF(i, offset);
    818   1.1       cgd #ifdef DEBUG2
    819   1.1       cgd 	(void)fprintf(stderr, "OVERFLOW_PAGE: ADDR: %d BIT: %d PAGE %d\n",
    820   1.1       cgd 	    addr, tmp1, tmp2);
    821   1.1       cgd #endif
    822   1.1       cgd 
    823   1.1       cgd 	/* Allocate and return the overflow page */
    824   1.1       cgd 	return (addr);
    825   1.1       cgd }
    826   1.1       cgd 
    827   1.1       cgd /*
    828   1.1       cgd  * Mark this overflow page as free.
    829   1.1       cgd  */
    830   1.1       cgd extern void
    831   1.1       cgd __free_ovflpage(hashp, obufp)
    832   1.1       cgd 	HTAB *hashp;
    833   1.1       cgd 	BUFHEAD *obufp;
    834   1.1       cgd {
    835   1.6       cgd 	register u_int16_t addr;
    836   1.6       cgd 	u_int32_t *freep;
    837   1.1       cgd 	int bit_address, free_page, free_bit;
    838   1.6       cgd 	u_int16_t ndx;
    839   1.1       cgd 
    840   1.1       cgd 	addr = obufp->addr;
    841   1.1       cgd #ifdef DEBUG1
    842   1.1       cgd 	(void)fprintf(stderr, "Freeing %d\n", addr);
    843   1.1       cgd #endif
    844  1.13  christos 	ndx = (((u_int32_t)addr) >> SPLITSHIFT);
    845   1.1       cgd 	bit_address =
    846   1.1       cgd 	    (ndx ? hashp->SPARES[ndx - 1] : 0) + (addr & SPLITMASK) - 1;
    847   1.1       cgd 	 if (bit_address < hashp->LAST_FREED)
    848   1.1       cgd 		hashp->LAST_FREED = bit_address;
    849  1.13  christos 	free_page = ((u_int32_t)bit_address >> (hashp->BSHIFT + BYTE_SHIFT));
    850   1.1       cgd 	free_bit = bit_address & ((hashp->BSIZE << BYTE_SHIFT) - 1);
    851   1.1       cgd 
    852   1.1       cgd 	if (!(freep = hashp->mapp[free_page]))
    853   1.1       cgd 		freep = fetch_bitmap(hashp, free_page);
    854   1.1       cgd #ifdef DEBUG
    855   1.1       cgd 	/*
    856   1.1       cgd 	 * This had better never happen.  It means we tried to read a bitmap
    857   1.1       cgd 	 * that has already had overflow pages allocated off it, and we
    858   1.1       cgd 	 * failed to read it from the file.
    859   1.1       cgd 	 */
    860   1.1       cgd 	if (!freep)
    861   1.1       cgd 		assert(0);
    862   1.1       cgd #endif
    863   1.1       cgd 	CLRBIT(freep, free_bit);
    864   1.1       cgd #ifdef DEBUG2
    865   1.1       cgd 	(void)fprintf(stderr, "FREE_OVFLPAGE: ADDR: %d BIT: %d PAGE %d\n",
    866   1.1       cgd 	    obufp->addr, free_bit, free_page);
    867   1.1       cgd #endif
    868   1.1       cgd 	__reclaim_buf(hashp, obufp);
    869   1.1       cgd }
    870   1.1       cgd 
    871   1.1       cgd /*
    872   1.1       cgd  * Returns:
    873   1.1       cgd  *	 0 success
    874   1.1       cgd  *	-1 failure
    875   1.1       cgd  */
    876   1.1       cgd static int
    877   1.1       cgd open_temp(hashp)
    878   1.1       cgd 	HTAB *hashp;
    879   1.1       cgd {
    880   1.1       cgd 	sigset_t set, oset;
    881  1.11   mycroft 	char namestr[] = "_hashXXXXXX";
    882   1.1       cgd 
    883   1.1       cgd 	/* Block signals; make sure file goes away at process exit. */
    884   1.1       cgd 	(void)sigfillset(&set);
    885   1.1       cgd 	(void)sigprocmask(SIG_BLOCK, &set, &oset);
    886   1.1       cgd 	if ((hashp->fp = mkstemp(namestr)) != -1) {
    887   1.1       cgd 		(void)unlink(namestr);
    888   1.1       cgd 		(void)fcntl(hashp->fp, F_SETFD, 1);
    889   1.1       cgd 	}
    890   1.1       cgd 	(void)sigprocmask(SIG_SETMASK, &oset, (sigset_t *)NULL);
    891   1.1       cgd 	return (hashp->fp != -1 ? 0 : -1);
    892   1.1       cgd }
    893   1.1       cgd 
    894   1.1       cgd /*
    895   1.1       cgd  * We have to know that the key will fit, but the last entry on the page is
    896   1.1       cgd  * an overflow pair, so we need to shift things.
    897   1.1       cgd  */
    898   1.1       cgd static void
    899   1.1       cgd squeeze_key(sp, key, val)
    900   1.6       cgd 	u_int16_t *sp;
    901   1.1       cgd 	const DBT *key, *val;
    902   1.1       cgd {
    903   1.1       cgd 	register char *p;
    904   1.6       cgd 	u_int16_t free_space, n, off, pageno;
    905   1.1       cgd 
    906  1.13  christos 	p = (char *)(void *)sp;
    907   1.1       cgd 	n = sp[0];
    908   1.1       cgd 	free_space = FREESPACE(sp);
    909   1.1       cgd 	off = OFFSET(sp);
    910   1.1       cgd 
    911   1.1       cgd 	pageno = sp[n - 1];
    912   1.1       cgd 	off -= key->size;
    913   1.1       cgd 	sp[n - 1] = off;
    914   1.1       cgd 	memmove(p + off, key->data, key->size);
    915   1.1       cgd 	off -= val->size;
    916   1.1       cgd 	sp[n] = off;
    917   1.1       cgd 	memmove(p + off, val->data, val->size);
    918   1.1       cgd 	sp[0] = n + 2;
    919   1.1       cgd 	sp[n + 1] = pageno;
    920   1.1       cgd 	sp[n + 2] = OVFLPAGE;
    921   1.1       cgd 	FREESPACE(sp) = free_space - PAIRSIZE(key, val);
    922   1.1       cgd 	OFFSET(sp) = off;
    923   1.1       cgd }
    924   1.1       cgd 
    925   1.6       cgd static u_int32_t *
    926   1.1       cgd fetch_bitmap(hashp, ndx)
    927   1.1       cgd 	HTAB *hashp;
    928   1.1       cgd 	int ndx;
    929   1.1       cgd {
    930   1.6       cgd 	if (ndx >= hashp->nmaps)
    931   1.1       cgd 		return (NULL);
    932  1.13  christos 	if ((hashp->mapp[ndx] = (u_int32_t *)malloc((size_t)hashp->BSIZE)) == NULL)
    933   1.6       cgd 		return (NULL);
    934   1.6       cgd 	if (__get_page(hashp,
    935  1.13  christos 	    (char *)(void *)hashp->mapp[ndx], (u_int32_t)hashp->BITMAPS[ndx], 0, 1, 1)) {
    936   1.6       cgd 		free(hashp->mapp[ndx]);
    937   1.6       cgd 		return (NULL);
    938   1.6       cgd 	}
    939   1.1       cgd 	return (hashp->mapp[ndx]);
    940   1.1       cgd }
    941   1.1       cgd 
    942   1.1       cgd #ifdef DEBUG4
    943   1.1       cgd int
    944   1.1       cgd print_chain(addr)
    945   1.1       cgd 	int addr;
    946   1.1       cgd {
    947   1.1       cgd 	BUFHEAD *bufp;
    948   1.1       cgd 	short *bp, oaddr;
    949   1.1       cgd 
    950   1.1       cgd 	(void)fprintf(stderr, "%d ", addr);
    951   1.1       cgd 	bufp = __get_buf(hashp, addr, NULL, 0);
    952   1.1       cgd 	bp = (short *)bufp->page;
    953   1.1       cgd 	while (bp[0] && ((bp[bp[0]] == OVFLPAGE) ||
    954   1.1       cgd 		((bp[0] > 2) && bp[2] < REAL_KEY))) {
    955   1.1       cgd 		oaddr = bp[bp[0] - 1];
    956   1.1       cgd 		(void)fprintf(stderr, "%d ", (int)oaddr);
    957   1.1       cgd 		bufp = __get_buf(hashp, (int)oaddr, bufp, 0);
    958   1.1       cgd 		bp = (short *)bufp->page;
    959   1.1       cgd 	}
    960   1.1       cgd 	(void)fprintf(stderr, "\n");
    961   1.1       cgd }
    962   1.1       cgd #endif
    963