]>
git.saurik.com Git - apple/libc.git/blob - db.subproj/hash.subproj/hash_buf.c
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1990, 1993
24 * The Regents of the University of California. All rights reserved.
26 * This code is derived from software contributed to Berkeley by
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
32 * 1. Redistributions of source code must retain the above copyright
33 * notice, this list of conditions and the following disclaimer.
34 * 2. Redistributions in binary form must reproduce the above copyright
35 * notice, this list of conditions and the following disclaimer in the
36 * documentation and/or other materials provided with the distribution.
37 * 3. All advertising materials mentioning features or use of this software
38 * must display the following acknowledgement:
39 * This product includes software developed by the University of
40 * California, Berkeley and its contributors.
41 * 4. Neither the name of the University nor the names of its contributors
42 * may be used to endorse or promote products derived from this software
43 * without specific prior written permission.
45 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
46 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
49 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
63 * Contains buffer management
75 #include <sys/param.h>
89 static BUFHEAD
*newbuf
__P((HTAB
*, u_int
, BUFHEAD
*));
91 /* Unlink B from its place in the lru */
92 #define BUF_REMOVE(B) { \
93 (B)->prev->next = (B)->next; \
94 (B)->next->prev = (B)->prev; \
97 /* Insert B after P */
98 #define BUF_INSERT(B, P) { \
99 (B)->next = (P)->next; \
102 (B)->next->prev = (B); \
105 #define MRU hashp->bufhead.next
106 #define LRU hashp->bufhead.prev
108 #define MRU_INSERT(B) BUF_INSERT((B), &hashp->bufhead)
109 #define LRU_INSERT(B) BUF_INSERT((B), LRU)
112 * We are looking for a buffer with address "addr". If prev_bp is NULL, then
113 * address is a bucket index. If prev_bp is not NULL, then it points to the
114 * page previous to an overflow page that we are trying to find.
116 * CAVEAT: The buffer header accessed via prev_bp's ovfl field may no longer
117 * be valid. Therefore, you must always verify that its address matches the
118 * address you are seeking.
121 __get_buf(hashp
, addr
, prev_bp
, newpage
)
125 int newpage
; /* If prev_bp set, indicates a new overflow page. */
127 register BUFHEAD
*bp
;
128 register u_int is_disk_mask
;
129 register int is_disk
, segment_ndx
;
136 if (!bp
|| (bp
->addr
!= addr
))
141 /* Grab buffer out of directory */
142 segment_ndx
= addr
& (hashp
->SGSIZE
- 1);
144 /* valid segment ensured by __call_hash() */
145 segp
= hashp
->dir
[addr
>> hashp
->SSHIFT
];
147 assert(segp
!= NULL
);
149 bp
= PTROF(segp
[segment_ndx
]);
150 is_disk_mask
= ISDISK(segp
[segment_ndx
]);
151 is_disk
= is_disk_mask
|| !hashp
->new_file
;
155 bp
= newbuf(hashp
, addr
, prev_bp
);
157 __get_page(hashp
, bp
->page
, addr
, !prev_bp
, is_disk
, 0))
161 (BUFHEAD
*)((u_int
)bp
| is_disk_mask
);
170 * We need a buffer for this page. Either allocate one, or evict a resident
171 * one (if we have as many buffers as we're allowed) and put this one in.
173 * If newbuf finds an error (returning NULL), it also sets errno.
176 newbuf(hashp
, addr
, prev_bp
)
181 register BUFHEAD
*bp
; /* The buffer we're going to use */
182 register BUFHEAD
*xbp
; /* Temp pointer */
183 register BUFHEAD
*next_xbp
;
186 u_short oaddr
, *shortp
;
191 * If LRU buffer is pinned, the buffer pool is too small. We need to
192 * allocate more buffers.
194 if (hashp
->nbufs
|| (bp
->flags
& BUF_PIN
)) {
195 /* Allocate a new one */
196 if ((bp
= (BUFHEAD
*)malloc(sizeof(BUFHEAD
))) == NULL
)
198 if ((bp
->page
= (char *)malloc(hashp
->BSIZE
)) == NULL
) {
205 /* Kick someone out */
208 * If this is an overflow page with addr 0, it's already been
209 * flushed back in an overflow chain and initialized.
211 if ((bp
->addr
!= 0) || (bp
->flags
& BUF_BUCKET
)) {
213 * Set oaddr before __put_page so that you get it
214 * before bytes are swapped.
216 shortp
= (u_short
*)bp
->page
;
218 oaddr
= shortp
[shortp
[0] - 1];
219 if ((bp
->flags
& BUF_MOD
) && __put_page(hashp
, bp
->page
,
220 bp
->addr
, (int)IS_BUCKET(bp
->flags
), 0))
223 * Update the pointer to this page (i.e. invalidate it).
225 * If this is a new file (i.e. we created it at open
226 * time), make sure that we mark pages which have been
227 * written to disk so we retrieve them from disk later,
228 * rather than allocating new pages.
230 if (IS_BUCKET(bp
->flags
)) {
231 segment_ndx
= bp
->addr
& (hashp
->SGSIZE
- 1);
232 segp
= hashp
->dir
[bp
->addr
>> hashp
->SSHIFT
];
234 assert(segp
!= NULL
);
237 if (hashp
->new_file
&&
238 ((bp
->flags
& BUF_MOD
) ||
239 ISDISK(segp
[segment_ndx
])))
240 segp
[segment_ndx
] = (BUFHEAD
*)BUF_DISK
;
242 segp
[segment_ndx
] = NULL
;
245 * Since overflow pages can only be access by means of
246 * their bucket, free overflow pages associated with
249 for (xbp
= bp
; xbp
->ovfl
;) {
250 next_xbp
= xbp
->ovfl
;
254 /* Check that ovfl pointer is up date. */
255 if (IS_BUCKET(xbp
->flags
) ||
256 (oaddr
!= xbp
->addr
))
259 shortp
= (u_short
*)xbp
->page
;
261 /* set before __put_page */
262 oaddr
= shortp
[shortp
[0] - 1];
263 if ((xbp
->flags
& BUF_MOD
) && __put_page(hashp
,
264 xbp
->page
, xbp
->addr
, 0, 0))
274 /* Now assign this buffer */
277 (void)fprintf(stderr
, "NEWBUF1: %d->ovfl was %d is now %d\n",
278 bp
->addr
, (bp
->ovfl
? bp
->ovfl
->addr
: 0), 0);
283 * If prev_bp is set, this is an overflow page, hook it in to
284 * the buffer overflow links.
287 (void)fprintf(stderr
, "NEWBUF2: %d->ovfl was %d is now %d\n",
288 prev_bp
->addr
, (prev_bp
->ovfl
? bp
->ovfl
->addr
: 0),
289 (bp
? bp
->addr
: 0));
294 bp
->flags
= BUF_BUCKET
;
300 __buf_init(hashp
, nbytes
)
307 bfp
= &(hashp
->bufhead
);
308 npages
= (nbytes
+ hashp
->BSIZE
- 1) >> hashp
->BSHIFT
;
309 npages
= MAX(npages
, MIN_BUFFERS
);
311 hashp
->nbufs
= npages
;
315 * This space is calloc'd so these are already null.
325 __buf_free(hashp
, do_free
, to_disk
)
327 int do_free
, to_disk
;
331 /* Need to make sure that buffer manager has been initialized */
334 for (bp
= LRU
; bp
!= &hashp
->bufhead
;) {
335 /* Check that the buffer is valid */
336 if (bp
->addr
|| IS_BUCKET(bp
->flags
)) {
337 if (to_disk
&& (bp
->flags
& BUF_MOD
) &&
338 __put_page(hashp
, bp
->page
,
339 bp
->addr
, IS_BUCKET(bp
->flags
), 0))
342 /* Check if we are freeing stuff */
356 __reclaim_buf(hashp
, bp
)