]>
git.saurik.com Git - apple/libc.git/blob - db/hash/hash_buf.c
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
26 * Copyright (c) 1990, 1993
27 * The Regents of the University of California. All rights reserved.
29 * This code is derived from software contributed to Berkeley by
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * Contains buffer management
78 #include <sys/param.h>
92 static BUFHEAD
*newbuf
__P((HTAB
*, u_int
, BUFHEAD
*));
94 /* Unlink B from its place in the lru */
95 #define BUF_REMOVE(B) { \
96 (B)->prev->next = (B)->next; \
97 (B)->next->prev = (B)->prev; \
100 /* Insert B after P */
101 #define BUF_INSERT(B, P) { \
102 (B)->next = (P)->next; \
105 (B)->next->prev = (B); \
108 #define MRU hashp->bufhead.next
109 #define LRU hashp->bufhead.prev
111 #define MRU_INSERT(B) BUF_INSERT((B), &hashp->bufhead)
112 #define LRU_INSERT(B) BUF_INSERT((B), LRU)
115 * We are looking for a buffer with address "addr". If prev_bp is NULL, then
116 * address is a bucket index. If prev_bp is not NULL, then it points to the
117 * page previous to an overflow page that we are trying to find.
119 * CAVEAT: The buffer header accessed via prev_bp's ovfl field may no longer
120 * be valid. Therefore, you must always verify that its address matches the
121 * address you are seeking.
124 __get_buf(hashp
, addr
, prev_bp
, newpage
)
128 int newpage
; /* If prev_bp set, indicates a new overflow page. */
130 register BUFHEAD
*bp
;
131 register u_int is_disk_mask
;
132 register int is_disk
, segment_ndx
;
139 if (!bp
|| (bp
->addr
!= addr
))
144 /* Grab buffer out of directory */
145 segment_ndx
= addr
& (hashp
->SGSIZE
- 1);
147 /* valid segment ensured by __call_hash() */
148 segp
= hashp
->dir
[addr
>> hashp
->SSHIFT
];
150 assert(segp
!= NULL
);
152 bp
= PTROF(segp
[segment_ndx
]);
153 is_disk_mask
= ISDISK(segp
[segment_ndx
]);
154 is_disk
= is_disk_mask
|| !hashp
->new_file
;
158 bp
= newbuf(hashp
, addr
, prev_bp
);
160 __get_page(hashp
, bp
->page
, addr
, !prev_bp
, is_disk
, 0))
164 (BUFHEAD
*)((u_int
)bp
| is_disk_mask
);
173 * We need a buffer for this page. Either allocate one, or evict a resident
174 * one (if we have as many buffers as we're allowed) and put this one in.
176 * If newbuf finds an error (returning NULL), it also sets errno.
179 newbuf(hashp
, addr
, prev_bp
)
184 register BUFHEAD
*bp
; /* The buffer we're going to use */
185 register BUFHEAD
*xbp
; /* Temp pointer */
186 register BUFHEAD
*next_xbp
;
189 u_short oaddr
, *shortp
;
194 * If LRU buffer is pinned, the buffer pool is too small. We need to
195 * allocate more buffers.
197 if (hashp
->nbufs
|| (bp
->flags
& BUF_PIN
)) {
198 /* Allocate a new one */
199 if ((bp
= (BUFHEAD
*)malloc(sizeof(BUFHEAD
))) == NULL
)
201 if ((bp
->page
= (char *)malloc(hashp
->BSIZE
)) == NULL
) {
208 /* Kick someone out */
211 * If this is an overflow page with addr 0, it's already been
212 * flushed back in an overflow chain and initialized.
214 if ((bp
->addr
!= 0) || (bp
->flags
& BUF_BUCKET
)) {
216 * Set oaddr before __put_page so that you get it
217 * before bytes are swapped.
219 shortp
= (u_short
*)bp
->page
;
221 oaddr
= shortp
[shortp
[0] - 1];
222 if ((bp
->flags
& BUF_MOD
) && __put_page(hashp
, bp
->page
,
223 bp
->addr
, (int)IS_BUCKET(bp
->flags
), 0))
226 * Update the pointer to this page (i.e. invalidate it).
228 * If this is a new file (i.e. we created it at open
229 * time), make sure that we mark pages which have been
230 * written to disk so we retrieve them from disk later,
231 * rather than allocating new pages.
233 if (IS_BUCKET(bp
->flags
)) {
234 segment_ndx
= bp
->addr
& (hashp
->SGSIZE
- 1);
235 segp
= hashp
->dir
[bp
->addr
>> hashp
->SSHIFT
];
237 assert(segp
!= NULL
);
240 if (hashp
->new_file
&&
241 ((bp
->flags
& BUF_MOD
) ||
242 ISDISK(segp
[segment_ndx
])))
243 segp
[segment_ndx
] = (BUFHEAD
*)BUF_DISK
;
245 segp
[segment_ndx
] = NULL
;
248 * Since overflow pages can only be access by means of
249 * their bucket, free overflow pages associated with
252 for (xbp
= bp
; xbp
->ovfl
;) {
253 next_xbp
= xbp
->ovfl
;
257 /* Check that ovfl pointer is up date. */
258 if (IS_BUCKET(xbp
->flags
) ||
259 (oaddr
!= xbp
->addr
))
262 shortp
= (u_short
*)xbp
->page
;
264 /* set before __put_page */
265 oaddr
= shortp
[shortp
[0] - 1];
266 if ((xbp
->flags
& BUF_MOD
) && __put_page(hashp
,
267 xbp
->page
, xbp
->addr
, 0, 0))
277 /* Now assign this buffer */
280 (void)fprintf(stderr
, "NEWBUF1: %d->ovfl was %d is now %d\n",
281 bp
->addr
, (bp
->ovfl
? bp
->ovfl
->addr
: 0), 0);
286 * If prev_bp is set, this is an overflow page, hook it in to
287 * the buffer overflow links.
290 (void)fprintf(stderr
, "NEWBUF2: %d->ovfl was %d is now %d\n",
291 prev_bp
->addr
, (prev_bp
->ovfl
? bp
->ovfl
->addr
: 0),
292 (bp
? bp
->addr
: 0));
297 bp
->flags
= BUF_BUCKET
;
303 __buf_init(hashp
, nbytes
)
310 bfp
= &(hashp
->bufhead
);
311 npages
= (nbytes
+ hashp
->BSIZE
- 1) >> hashp
->BSHIFT
;
312 npages
= MAX(npages
, MIN_BUFFERS
);
314 hashp
->nbufs
= npages
;
318 * This space is calloc'd so these are already null.
328 __buf_free(hashp
, do_free
, to_disk
)
330 int do_free
, to_disk
;
334 /* Need to make sure that buffer manager has been initialized */
337 for (bp
= LRU
; bp
!= &hashp
->bufhead
;) {
338 /* Check that the buffer is valid */
339 if (bp
->addr
|| IS_BUCKET(bp
->flags
)) {
340 if (to_disk
&& (bp
->flags
& BUF_MOD
) &&
341 __put_page(hashp
, bp
->page
,
342 bp
->addr
, IS_BUCKET(bp
->flags
), 0))
345 /* Check if we are freeing stuff */
359 __reclaim_buf(hashp
, bp
)