freebsd-dev/lib/libc/db/mpool/mpool.c

466 lines
10 KiB
C
Raw Normal View History

1994-05-27 05:00:24 +00:00
/*-
1996-02-27 19:42:00 +00:00
* Copyright (c) 1990, 1993, 1994
1994-05-27 05:00:24 +00:00
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $FreeBSD$
1994-05-27 05:00:24 +00:00
*/
#if defined(LIBC_SCCS) && !defined(lint)
1996-02-27 19:42:00 +00:00
static char sccsid[] = "@(#)mpool.c 8.5 (Berkeley) 7/26/94";
1994-05-27 05:00:24 +00:00
#endif /* LIBC_SCCS and not lint */
#include "namespace.h"
1994-05-27 05:00:24 +00:00
#include <sys/param.h>
1996-02-27 19:42:00 +00:00
#include <sys/queue.h>
1994-05-27 05:00:24 +00:00
#include <sys/stat.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "un-namespace.h"
1994-05-27 05:00:24 +00:00
#include <db.h>
1996-02-27 19:42:00 +00:00
1994-05-27 05:00:24 +00:00
#define __MPOOLINTERFACE_PRIVATE
1996-02-27 19:42:00 +00:00
#include <mpool.h>
1994-05-27 05:00:24 +00:00
static BKT *mpool_bkt __P((MPOOL *));
static BKT *mpool_look __P((MPOOL *, pgno_t));
static int mpool_write __P((MPOOL *, BKT *));
/*
1996-02-27 19:42:00 +00:00
* mpool_open --
* Initialize a memory pool.
1994-05-27 05:00:24 +00:00
*/
MPOOL *
mpool_open(key, fd, pagesize, maxcache)
1996-02-27 19:42:00 +00:00
void *key;
1994-05-27 05:00:24 +00:00
int fd;
pgno_t pagesize, maxcache;
{
struct stat sb;
MPOOL *mp;
int entry;
1996-02-27 19:42:00 +00:00
/*
* Get information about the file.
*
* XXX
* We don't currently handle pipes, although we should.
*/
if (_fstat(fd, &sb))
1994-05-27 05:00:24 +00:00
return (NULL);
if (!S_ISREG(sb.st_mode)) {
errno = ESPIPE;
return (NULL);
}
1996-02-27 19:42:00 +00:00
/* Allocate and initialize the MPOOL cookie. */
if ((mp = (MPOOL *)calloc(1, sizeof(MPOOL))) == NULL)
1994-05-27 05:00:24 +00:00
return (NULL);
2000-12-29 20:25:01 +00:00
TAILQ_INIT(&mp->lqh);
1994-05-27 05:00:24 +00:00
for (entry = 0; entry < HASHSIZE; ++entry)
2000-12-29 20:25:01 +00:00
TAILQ_INIT(&mp->hqh[entry]);
1994-05-27 05:00:24 +00:00
mp->maxcache = maxcache;
mp->npages = sb.st_size / pagesize;
1996-02-27 19:42:00 +00:00
mp->pagesize = pagesize;
1994-05-27 05:00:24 +00:00
mp->fd = fd;
return (mp);
}
/*
1996-02-27 19:42:00 +00:00
* mpool_filter --
* Initialize input/output filters.
1994-05-27 05:00:24 +00:00
*/
void
mpool_filter(mp, pgin, pgout, pgcookie)
MPOOL *mp;
void (*pgin) __P((void *, pgno_t, void *));
void (*pgout) __P((void *, pgno_t, void *));
void *pgcookie;
{
mp->pgin = pgin;
mp->pgout = pgout;
mp->pgcookie = pgcookie;
}
1996-02-27 19:42:00 +00:00
1994-05-27 05:00:24 +00:00
/*
1996-02-27 19:42:00 +00:00
* mpool_new --
* Get a new page of memory.
1994-05-27 05:00:24 +00:00
*/
void *
mpool_new(mp, pgnoaddr)
MPOOL *mp;
pgno_t *pgnoaddr;
{
1996-02-27 19:42:00 +00:00
struct _hqh *head;
BKT *bp;
1994-05-27 05:00:24 +00:00
1996-02-27 19:42:00 +00:00
if (mp->npages == MAX_PAGE_NUMBER) {
(void)fprintf(stderr, "mpool_new: page allocation overflow.\n");
abort();
}
1994-05-27 05:00:24 +00:00
#ifdef STATISTICS
++mp->pagenew;
#endif
/*
1996-02-27 19:42:00 +00:00
* Get a BKT from the cache. Assign a new page number, attach
* it to the head of the hash chain, the tail of the lru chain,
* and return.
1994-05-27 05:00:24 +00:00
*/
1996-02-27 19:42:00 +00:00
if ((bp = mpool_bkt(mp)) == NULL)
1994-05-27 05:00:24 +00:00
return (NULL);
1996-02-27 19:42:00 +00:00
*pgnoaddr = bp->pgno = mp->npages++;
bp->flags = MPOOL_PINNED;
head = &mp->hqh[HASHKEY(bp->pgno)];
2000-12-29 20:25:01 +00:00
TAILQ_INSERT_HEAD(head, bp, hq);
TAILQ_INSERT_TAIL(&mp->lqh, bp, q);
1996-02-27 19:42:00 +00:00
return (bp->page);
1994-05-27 05:00:24 +00:00
}
/*
1996-02-27 19:42:00 +00:00
* mpool_get
* Get a page.
1994-05-27 05:00:24 +00:00
*/
void *
mpool_get(mp, pgno, flags)
MPOOL *mp;
pgno_t pgno;
1996-02-27 19:42:00 +00:00
u_int flags; /* XXX not used? */
1994-05-27 05:00:24 +00:00
{
1996-02-27 19:42:00 +00:00
struct _hqh *head;
BKT *bp;
1994-05-27 05:00:24 +00:00
off_t off;
int nr;
1996-02-27 19:42:00 +00:00
/* Check for attempt to retrieve a non-existent page. */
if (pgno >= mp->npages) {
errno = EINVAL;
return (NULL);
}
1994-05-27 05:00:24 +00:00
#ifdef STATISTICS
1996-02-27 19:42:00 +00:00
++mp->pageget;
1994-05-27 05:00:24 +00:00
#endif
1996-02-27 19:42:00 +00:00
/* Check for a page that is cached. */
if ((bp = mpool_look(mp, pgno)) != NULL) {
1994-05-27 05:00:24 +00:00
#ifdef DEBUG
1996-02-27 19:42:00 +00:00
if (bp->flags & MPOOL_PINNED) {
(void)fprintf(stderr,
"mpool_get: page %d already pinned\n", bp->pgno);
abort();
}
1994-05-27 05:00:24 +00:00
#endif
1996-02-27 19:42:00 +00:00
/*
* Move the page to the head of the hash chain and the tail
* of the lru chain.
*/
head = &mp->hqh[HASHKEY(bp->pgno)];
2000-12-29 20:25:01 +00:00
TAILQ_REMOVE(head, bp, hq);
TAILQ_INSERT_HEAD(head, bp, hq);
TAILQ_REMOVE(&mp->lqh, bp, q);
TAILQ_INSERT_TAIL(&mp->lqh, bp, q);
1996-02-27 19:42:00 +00:00
/* Return a pinned page. */
bp->flags |= MPOOL_PINNED;
return (bp->page);
1994-05-27 05:00:24 +00:00
}
/* Get a page from the cache. */
1996-02-27 19:42:00 +00:00
if ((bp = mpool_bkt(mp)) == NULL)
1994-05-27 05:00:24 +00:00
return (NULL);
1996-02-27 19:42:00 +00:00
/* Read in the contents. */
1994-05-27 05:00:24 +00:00
#ifdef STATISTICS
++mp->pageread;
#endif
off = mp->pagesize * pgno;
if (lseek(mp->fd, off, SEEK_SET) != off)
return (NULL);
if ((nr = _read(mp->fd, bp->page, mp->pagesize)) != mp->pagesize) {
1994-05-27 05:00:24 +00:00
if (nr >= 0)
errno = EFTYPE;
return (NULL);
}
1996-02-27 19:42:00 +00:00
/* Set the page number, pin the page. */
bp->pgno = pgno;
bp->flags = MPOOL_PINNED;
/*
* Add the page to the head of the hash chain and the tail
* of the lru chain.
*/
head = &mp->hqh[HASHKEY(bp->pgno)];
2000-12-29 20:25:01 +00:00
TAILQ_INSERT_HEAD(head, bp, hq);
TAILQ_INSERT_TAIL(&mp->lqh, bp, q);
1996-02-27 19:42:00 +00:00
/* Run through the user's filter. */
if (mp->pgin != NULL)
(mp->pgin)(mp->pgcookie, bp->pgno, bp->page);
return (bp->page);
1994-05-27 05:00:24 +00:00
}
/*
1996-02-27 19:42:00 +00:00
* mpool_put
* Return a page.
1994-05-27 05:00:24 +00:00
*/
int
mpool_put(mp, page, flags)
MPOOL *mp;
void *page;
u_int flags;
{
1996-02-27 19:42:00 +00:00
BKT *bp;
1994-05-27 05:00:24 +00:00
#ifdef STATISTICS
++mp->pageput;
#endif
1996-02-27 19:42:00 +00:00
bp = (BKT *)((char *)page - sizeof(BKT));
1994-05-27 05:00:24 +00:00
#ifdef DEBUG
1996-02-27 19:42:00 +00:00
if (!(bp->flags & MPOOL_PINNED)) {
(void)fprintf(stderr,
"mpool_put: page %d not pinned\n", bp->pgno);
abort();
1994-05-27 05:00:24 +00:00
}
#endif
1996-02-27 19:42:00 +00:00
bp->flags &= ~MPOOL_PINNED;
bp->flags |= flags & MPOOL_DIRTY;
1994-05-27 05:00:24 +00:00
return (RET_SUCCESS);
}
/*
1996-02-27 19:42:00 +00:00
* mpool_close
* Close the buffer pool.
1994-05-27 05:00:24 +00:00
*/
int
mpool_close(mp)
MPOOL *mp;
{
1996-02-27 19:42:00 +00:00
BKT *bp;
1994-05-27 05:00:24 +00:00
/* Free up any space allocated to the lru pages. */
while (!TAILQ_EMPTY(&mp->lqh)) {
bp = TAILQ_FIRST(&mp->lqh);
2000-12-29 20:25:01 +00:00
TAILQ_REMOVE(&mp->lqh, bp, q);
1996-02-27 19:42:00 +00:00
free(bp);
1994-05-27 05:00:24 +00:00
}
1996-02-27 19:42:00 +00:00
/* Free the MPOOL cookie. */
1994-05-27 05:00:24 +00:00
free(mp);
return (RET_SUCCESS);
}
/*
1996-02-27 19:42:00 +00:00
* mpool_sync
* Sync the pool to disk.
1994-05-27 05:00:24 +00:00
*/
int
mpool_sync(mp)
MPOOL *mp;
{
1996-02-27 19:42:00 +00:00
BKT *bp;
1994-05-27 05:00:24 +00:00
1996-02-27 19:42:00 +00:00
/* Walk the lru chain, flushing any dirty pages to disk. */
2000-12-29 20:25:01 +00:00
TAILQ_FOREACH(bp, &mp->lqh, q)
1996-02-27 19:42:00 +00:00
if (bp->flags & MPOOL_DIRTY &&
mpool_write(mp, bp) == RET_ERROR)
1994-05-27 05:00:24 +00:00
return (RET_ERROR);
1996-02-27 19:42:00 +00:00
/* Sync the file descriptor. */
return (_fsync(mp->fd) ? RET_ERROR : RET_SUCCESS);
1994-05-27 05:00:24 +00:00
}
/*
1996-02-27 19:42:00 +00:00
* mpool_bkt
* Get a page from the cache (or create one).
1994-05-27 05:00:24 +00:00
*/
static BKT *
mpool_bkt(mp)
MPOOL *mp;
{
1996-02-27 19:42:00 +00:00
struct _hqh *head;
BKT *bp;
1994-05-27 05:00:24 +00:00
1996-02-27 19:42:00 +00:00
/* If under the max cached, always create a new page. */
1994-05-27 05:00:24 +00:00
if (mp->curcache < mp->maxcache)
goto new;
/*
1996-02-27 19:42:00 +00:00
* If the cache is max'd out, walk the lru list for a buffer we
* can flush. If we find one, write it (if necessary) and take it
* off any lists. If we don't find anything we grow the cache anyway.
1994-05-27 05:00:24 +00:00
* The cache never shrinks.
*/
2000-12-29 20:25:01 +00:00
TAILQ_FOREACH(bp, &mp->lqh, q)
1996-02-27 19:42:00 +00:00
if (!(bp->flags & MPOOL_PINNED)) {
/* Flush if dirty. */
if (bp->flags & MPOOL_DIRTY &&
mpool_write(mp, bp) == RET_ERROR)
1994-05-27 05:00:24 +00:00
return (NULL);
#ifdef STATISTICS
++mp->pageflush;
#endif
1996-02-27 19:42:00 +00:00
/* Remove from the hash and lru queues. */
head = &mp->hqh[HASHKEY(bp->pgno)];
2000-12-29 20:25:01 +00:00
TAILQ_REMOVE(head, bp, hq);
TAILQ_REMOVE(&mp->lqh, bp, q);
1994-05-27 05:00:24 +00:00
#ifdef DEBUG
1996-02-27 19:42:00 +00:00
{ void *spage;
spage = bp->page;
memset(bp, 0xff, sizeof(BKT) + mp->pagesize);
bp->page = spage;
1994-05-27 05:00:24 +00:00
}
#endif
1996-02-27 19:42:00 +00:00
return (bp);
1994-05-27 05:00:24 +00:00
}
1996-02-27 19:42:00 +00:00
new: if ((bp = (BKT *)malloc(sizeof(BKT) + mp->pagesize)) == NULL)
1994-05-27 05:00:24 +00:00
return (NULL);
#ifdef STATISTICS
++mp->pagealloc;
#endif
1996-02-27 19:42:00 +00:00
#if defined(DEBUG) || defined(PURIFY)
memset(bp, 0xff, sizeof(BKT) + mp->pagesize);
1994-05-27 05:00:24 +00:00
#endif
1996-02-27 19:42:00 +00:00
bp->page = (char *)bp + sizeof(BKT);
1994-05-27 05:00:24 +00:00
++mp->curcache;
1996-02-27 19:42:00 +00:00
return (bp);
1994-05-27 05:00:24 +00:00
}
/*
1996-02-27 19:42:00 +00:00
* mpool_write
* Write a page to disk.
1994-05-27 05:00:24 +00:00
*/
static int
1996-02-27 19:42:00 +00:00
mpool_write(mp, bp)
1994-05-27 05:00:24 +00:00
MPOOL *mp;
1996-02-27 19:42:00 +00:00
BKT *bp;
1994-05-27 05:00:24 +00:00
{
off_t off;
#ifdef STATISTICS
++mp->pagewrite;
#endif
1996-02-27 19:42:00 +00:00
/* Run through the user's filter. */
if (mp->pgout)
(mp->pgout)(mp->pgcookie, bp->pgno, bp->page);
off = mp->pagesize * bp->pgno;
1994-05-27 05:00:24 +00:00
if (lseek(mp->fd, off, SEEK_SET) != off)
return (RET_ERROR);
if (_write(mp->fd, bp->page, mp->pagesize) != mp->pagesize)
1994-05-27 05:00:24 +00:00
return (RET_ERROR);
1996-02-27 19:42:00 +00:00
bp->flags &= ~MPOOL_DIRTY;
1994-05-27 05:00:24 +00:00
return (RET_SUCCESS);
}
/*
1996-02-27 19:42:00 +00:00
* mpool_look
* Lookup a page in the cache.
1994-05-27 05:00:24 +00:00
*/
static BKT *
mpool_look(mp, pgno)
MPOOL *mp;
pgno_t pgno;
{
1996-02-27 19:42:00 +00:00
struct _hqh *head;
BKT *bp;
1994-05-27 05:00:24 +00:00
1996-02-27 19:42:00 +00:00
head = &mp->hqh[HASHKEY(pgno)];
2000-12-29 20:25:01 +00:00
TAILQ_FOREACH(bp, head, hq)
1996-02-27 19:42:00 +00:00
if (bp->pgno == pgno) {
1994-05-27 05:00:24 +00:00
#ifdef STATISTICS
++mp->cachehit;
#endif
1996-02-27 19:42:00 +00:00
return (bp);
1994-05-27 05:00:24 +00:00
}
#ifdef STATISTICS
++mp->cachemiss;
#endif
return (NULL);
}
#ifdef STATISTICS
/*
1996-02-27 19:42:00 +00:00
* mpool_stat
* Print out cache statistics.
1994-05-27 05:00:24 +00:00
*/
void
mpool_stat(mp)
MPOOL *mp;
{
1996-02-27 19:42:00 +00:00
BKT *bp;
1994-05-27 05:00:24 +00:00
int cnt;
char *sep;
(void)fprintf(stderr, "%lu pages in the file\n", mp->npages);
(void)fprintf(stderr,
"page size %lu, cacheing %lu pages of %lu page max cache\n",
mp->pagesize, mp->curcache, mp->maxcache);
(void)fprintf(stderr, "%lu page puts, %lu page gets, %lu page new\n",
mp->pageput, mp->pageget, mp->pagenew);
(void)fprintf(stderr, "%lu page allocs, %lu page flushes\n",
mp->pagealloc, mp->pageflush);
if (mp->cachehit + mp->cachemiss)
(void)fprintf(stderr,
1996-02-27 19:42:00 +00:00
"%.0f%% cache hit rate (%lu hits, %lu misses)\n",
1994-05-27 05:00:24 +00:00
((double)mp->cachehit / (mp->cachehit + mp->cachemiss))
* 100, mp->cachehit, mp->cachemiss);
(void)fprintf(stderr, "%lu page reads, %lu page writes\n",
mp->pageread, mp->pagewrite);
sep = "";
cnt = 0;
2000-12-29 20:25:01 +00:00
TAILQ_FOREACH(bp, &mp->lqh, q) {
1996-02-27 19:42:00 +00:00
(void)fprintf(stderr, "%s%d", sep, bp->pgno);
if (bp->flags & MPOOL_DIRTY)
1994-05-27 05:00:24 +00:00
(void)fprintf(stderr, "d");
1996-02-27 19:42:00 +00:00
if (bp->flags & MPOOL_PINNED)
1994-05-27 05:00:24 +00:00
(void)fprintf(stderr, "P");
if (++cnt == 10) {
sep = "\n";
cnt = 0;
} else
sep = ", ";
1996-02-27 19:42:00 +00:00
1994-05-27 05:00:24 +00:00
}
(void)fprintf(stderr, "\n");
}
#endif