⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 slru.c

📁 PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统
💻 C
📖 第 1 页 / 共 2 页
字号:
/*------------------------------------------------------------------------- * * slru.c *		Simple LRU buffering for transaction status logfiles * * We use a simple least-recently-used scheme to manage a pool of page * buffers.  Under ordinary circumstances we expect that write * traffic will occur mostly to the latest page (and to the just-prior * page, soon after a page transition).  Read traffic will probably touch * a larger span of pages, but in any case a fairly small number of page * buffers should be sufficient.  So, we just search the buffers using plain * linear search; there's no need for a hashtable or anything fancy. * The management algorithm is straight LRU except that we will never swap * out the latest page (since we know it's going to be hit again eventually). * * We use a control LWLock to protect the shared data structures, plus * per-buffer LWLocks that synchronize I/O for each buffer.  A process * that is reading in or writing out a page buffer does not hold the control * lock, only the per-buffer lock for the buffer it is working on. * * To change the page number or state of a buffer, one must hold * the control lock.  If the buffer's state is neither EMPTY nor * CLEAN, then there may be processes doing (or waiting to do) I/O on the * buffer, so the page number may not be changed, and the only allowed state * transition is to change WRITE_IN_PROGRESS to DIRTY after dirtying the page. * To do any other state transition involving a buffer with potential I/O * processes, one must hold both the per-buffer lock and the control lock. * (Note the control lock must be acquired second; do not wait on a buffer * lock while holding the control lock.)  A process wishing to read a page * marks the buffer state as READ_IN_PROGRESS, then drops the control lock, * acquires the per-buffer lock, and rechecks the state before proceeding. * This recheck takes care of the possibility that someone else already did * the read, while the early marking prevents someone else from trying to * read the same page into a different buffer. * * As with the regular buffer manager, it is possible for another process * to re-dirty a page that is currently being written out.	This is handled * by setting the page's state from WRITE_IN_PROGRESS to DIRTY.  The writing * process must notice this and not mark the page CLEAN when it's done. * * * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/backend/access/transam/slru.c,v 1.29.2.2 2006/01/21 04:38:27 tgl Exp $ * *------------------------------------------------------------------------- */#include "postgres.h"#include <fcntl.h>#include <sys/stat.h>#include <unistd.h>#include "access/slru.h"#include "access/xlog.h"#include "storage/fd.h"#include "storage/shmem.h"#include "miscadmin.h"/* * Define segment size.  A page is the same BLCKSZ as is used everywhere * else in Postgres.  The segment size can be chosen somewhat arbitrarily; * we make it 32 pages by default, or 256Kb, i.e. 1M transactions for CLOG * or 64K transactions for SUBTRANS. * * Note: because TransactionIds are 32 bits and wrap around at 0xFFFFFFFF, * page numbering also wraps around at 0xFFFFFFFF/xxxx_XACTS_PER_PAGE (where * xxxx is CLOG or SUBTRANS, respectively), and segment numbering at * 0xFFFFFFFF/xxxx_XACTS_PER_PAGE/SLRU_PAGES_PER_SEGMENT.  We need * take no explicit notice of that fact in this module, except when comparing * segment and page numbers in SimpleLruTruncate (see PagePrecedes()). * * Note: this file currently assumes that segment file names will be four * hex digits.	This sets a lower bound on the segment size (64K transactions * for 32-bit TransactionIds). */#define SLRU_PAGES_PER_SEGMENT	32#define SlruFileName(ctl, path, seg) \	snprintf(path, MAXPGPATH, "%s/%04X", (ctl)->Dir, seg)/* * During SimpleLruFlush(), we will usually not need to write/fsync more * than one or two physical files, but we may need to write several pages * per file.  We can consolidate the I/O requests by leaving files open * until control returns to SimpleLruFlush().  This data structure remembers * which files are open. */typedef struct SlruFlushData{	int			num_files;		/* # files actually open */	int			fd[NUM_SLRU_BUFFERS];	/* their FD's */	int			segno[NUM_SLRU_BUFFERS];		/* their log seg#s */} SlruFlushData;/* * Macro to mark a buffer slot "most recently used". */#define SlruRecentlyUsed(shared, slotno)	\	do { \		if ((shared)->page_lru_count[slotno] != 0) { \			int		iilru; \			for (iilru = 0; iilru < NUM_SLRU_BUFFERS; iilru++) \				(shared)->page_lru_count[iilru]++; \			(shared)->page_lru_count[slotno] = 0; \		} \	} while (0)/* Saved info for SlruReportIOError */typedef enum{	SLRU_OPEN_FAILED,	SLRU_SEEK_FAILED,	SLRU_READ_FAILED,	SLRU_WRITE_FAILED,	SLRU_FSYNC_FAILED,	SLRU_CLOSE_FAILED} SlruErrorCause;static SlruErrorCause slru_errcause;static int	slru_errno;static bool SlruPhysicalReadPage(SlruCtl ctl, int pageno, int slotno);static bool SlruPhysicalWritePage(SlruCtl ctl, int pageno, int slotno,					  SlruFlush fdata);static void SlruReportIOError(SlruCtl ctl, int pageno, TransactionId xid);static int	SlruSelectLRUPage(SlruCtl ctl, int pageno);/* * Initialization of shared memory */SizeSimpleLruShmemSize(void){	/* we assume NUM_SLRU_BUFFERS isn't so large as to risk overflow */	return BUFFERALIGN(sizeof(SlruSharedData)) + BLCKSZ * NUM_SLRU_BUFFERS;}voidSimpleLruInit(SlruCtl ctl, const char *name,			  LWLockId ctllock, const char *subdir){	SlruShared	shared;	bool		found;	shared = (SlruShared) ShmemInitStruct(name, SimpleLruShmemSize(), &found);	if (!IsUnderPostmaster)	{		/* Initialize locks and shared memory area */		char	   *bufptr;		int			slotno;		Assert(!found);		memset(shared, 0, sizeof(SlruSharedData));		shared->ControlLock = ctllock;		bufptr = (char *) shared + BUFFERALIGN(sizeof(SlruSharedData));		for (slotno = 0; slotno < NUM_SLRU_BUFFERS; slotno++)		{			shared->page_buffer[slotno] = bufptr;			shared->page_status[slotno] = SLRU_PAGE_EMPTY;			shared->page_lru_count[slotno] = 1;			shared->buffer_locks[slotno] = LWLockAssign();			bufptr += BLCKSZ;		}		/* shared->latest_page_number will be set later */	}	else		Assert(found);	/*	 * Initialize the unshared control struct, including directory path. We	 * assume caller set PagePrecedes.	 */	ctl->shared = shared;	ctl->do_fsync = true;		/* default behavior */	StrNCpy(ctl->Dir, subdir, sizeof(ctl->Dir));}/* * Initialize (or reinitialize) a page to zeroes. * * The page is not actually written, just set up in shared memory. * The slot number of the new page is returned. * * Control lock must be held at entry, and will be held at exit. */intSimpleLruZeroPage(SlruCtl ctl, int pageno){	SlruShared	shared = ctl->shared;	int			slotno;	/* Find a suitable buffer slot for the page */	slotno = SlruSelectLRUPage(ctl, pageno);	Assert(shared->page_status[slotno] == SLRU_PAGE_EMPTY ||		   shared->page_status[slotno] == SLRU_PAGE_CLEAN ||		   shared->page_number[slotno] == pageno);	/* Mark the slot as containing this page */	shared->page_number[slotno] = pageno;	shared->page_status[slotno] = SLRU_PAGE_DIRTY;	SlruRecentlyUsed(shared, slotno);	/* Set the buffer to zeroes */	MemSet(shared->page_buffer[slotno], 0, BLCKSZ);	/* Assume this page is now the latest active page */	shared->latest_page_number = pageno;	return slotno;}/* * Find a page in a shared buffer, reading it in if necessary. * The page number must correspond to an already-initialized page. * * The passed-in xid is used only for error reporting, and may be * InvalidTransactionId if no specific xid is associated with the action. * * Return value is the shared-buffer slot number now holding the page. * The buffer's LRU access info is updated. * * Control lock must be held at entry, and will be held at exit. */intSimpleLruReadPage(SlruCtl ctl, int pageno, TransactionId xid){	SlruShared	shared = ctl->shared;	/* Outer loop handles restart if we lose the buffer to someone else */	for (;;)	{		int			slotno;		bool		ok;		/* See if page already is in memory; if not, pick victim slot */		slotno = SlruSelectLRUPage(ctl, pageno);		/* Did we find the page in memory? */		if (shared->page_number[slotno] == pageno &&			shared->page_status[slotno] != SLRU_PAGE_EMPTY)		{			/* If page is still being read in, we cannot use it yet */			if (shared->page_status[slotno] != SLRU_PAGE_READ_IN_PROGRESS)			{				/* otherwise, it's ready to use */				SlruRecentlyUsed(shared, slotno);				return slotno;			}		}		else		{			/* We found no match; assert we selected a freeable slot */			Assert(shared->page_status[slotno] == SLRU_PAGE_EMPTY ||				   shared->page_status[slotno] == SLRU_PAGE_CLEAN);		}		/* Mark the slot read-busy (no-op if it already was) */		shared->page_number[slotno] = pageno;		shared->page_status[slotno] = SLRU_PAGE_READ_IN_PROGRESS;		/*		 * Temporarily mark page as recently-used to discourage		 * SlruSelectLRUPage from selecting it again for someone else.		 */		SlruRecentlyUsed(shared, slotno);		/*		 * We must grab the per-buffer lock to do I/O.	To avoid deadlock,		 * must release ControlLock while waiting for per-buffer lock.		 * Fortunately, most of the time the per-buffer lock shouldn't be		 * already held, so we can do this:		 */		if (!LWLockConditionalAcquire(shared->buffer_locks[slotno],									  LW_EXCLUSIVE))		{			LWLockRelease(shared->ControlLock);			LWLockAcquire(shared->buffer_locks[slotno], LW_EXCLUSIVE);			LWLockAcquire(shared->ControlLock, LW_EXCLUSIVE);		}		/*		 * Check to see if someone else already did the read, or took the		 * buffer away from us.  If so, restart from the top.		 */		if (shared->page_number[slotno] != pageno ||			shared->page_status[slotno] != SLRU_PAGE_READ_IN_PROGRESS)		{			LWLockRelease(shared->buffer_locks[slotno]);			continue;		}		/* Okay, release control lock and do the read */		LWLockRelease(shared->ControlLock);		ok = SlruPhysicalReadPage(ctl, pageno, slotno);		/* Re-acquire shared control lock and update page state */		LWLockAcquire(shared->ControlLock, LW_EXCLUSIVE);		Assert(shared->page_number[slotno] == pageno &&			   shared->page_status[slotno] == SLRU_PAGE_READ_IN_PROGRESS);		shared->page_status[slotno] = ok ? SLRU_PAGE_CLEAN : SLRU_PAGE_EMPTY;		LWLockRelease(shared->buffer_locks[slotno]);		/* Now it's okay to ereport if we failed */		if (!ok)			SlruReportIOError(ctl, pageno, xid);		SlruRecentlyUsed(shared, slotno);		return slotno;	}}/* * Write a page from a shared buffer, if necessary. * Does nothing if the specified slot is not dirty. * * NOTE: only one write attempt is made here.  Hence, it is possible that * the page is still dirty at exit (if someone else re-dirtied it during * the write).	However, we *do* attempt a fresh write even if the page * is already being written; this is for checkpoints. * * Control lock must be held at entry, and will be held at exit. */voidSimpleLruWritePage(SlruCtl ctl, int slotno, SlruFlush fdata){	SlruShared	shared = ctl->shared;	int			pageno;	bool		ok;	/* Do nothing if page does not need writing */	if (shared->page_status[slotno] != SLRU_PAGE_DIRTY &&		shared->page_status[slotno] != SLRU_PAGE_WRITE_IN_PROGRESS)		return;	pageno = shared->page_number[slotno];	/*	 * We must grab the per-buffer lock to do I/O.	To avoid deadlock, must	 * release ControlLock while waiting for per-buffer lock. Fortunately,	 * most of the time the per-buffer lock shouldn't be already held, so we	 * can do this:	 */	if (!LWLockConditionalAcquire(shared->buffer_locks[slotno],								  LW_EXCLUSIVE))	{		LWLockRelease(shared->ControlLock);		LWLockAcquire(shared->buffer_locks[slotno], LW_EXCLUSIVE);		LWLockAcquire(shared->ControlLock, LW_EXCLUSIVE);	}	/*	 * Check to see if someone else already did the write, or took the buffer	 * away from us.  If so, do nothing.  NOTE: we really should never see	 * WRITE_IN_PROGRESS here, since that state should only occur while the	 * writer is holding the buffer lock.  But accept it so that we have a	 * recovery path if a writer aborts.	 */	if (shared->page_number[slotno] != pageno ||		(shared->page_status[slotno] != SLRU_PAGE_DIRTY &&		 shared->page_status[slotno] != SLRU_PAGE_WRITE_IN_PROGRESS))	{		LWLockRelease(shared->buffer_locks[slotno]);		return;	}	/*	 * Mark the slot write-busy.  After this point, a transaction status	 * update on this page will mark it dirty again.	 */	shared->page_status[slotno] = SLRU_PAGE_WRITE_IN_PROGRESS;	/* Okay, release the control lock and do the write */	LWLockRelease(shared->ControlLock);	ok = SlruPhysicalWritePage(ctl, pageno, slotno, fdata);	/* If we failed, and we're in a flush, better close the files */	if (!ok && fdata)	{		int			i;		for (i = 0; i < fdata->num_files; i++)			close(fdata->fd[i]);	}	/* Re-acquire shared control lock and update page state */	LWLockAcquire(shared->ControlLock, LW_EXCLUSIVE);	Assert(shared->page_number[slotno] == pageno &&		   (shared->page_status[slotno] == SLRU_PAGE_WRITE_IN_PROGRESS ||			shared->page_status[slotno] == SLRU_PAGE_DIRTY));	/* Cannot set CLEAN if someone re-dirtied page since write started */	if (shared->page_status[slotno] == SLRU_PAGE_WRITE_IN_PROGRESS)		shared->page_status[slotno] = ok ? SLRU_PAGE_CLEAN : SLRU_PAGE_DIRTY;	LWLockRelease(shared->buffer_locks[slotno]);	/* Now it's okay to ereport if we failed */	if (!ok)		SlruReportIOError(ctl, pageno, InvalidTransactionId);}/* * Physical read of a (previously existing) page into a buffer slot * * On failure, we cannot just ereport(ERROR) since caller has put state in * shared memory that must be undone.  So, we return FALSE and save enough * info in static variables to let SlruReportIOError make the report. * * For now, assume it's not worth keeping a file pointer open across * read/write operations.  We could cache one virtual file pointer ... */static boolSlruPhysicalReadPage(SlruCtl ctl, int pageno, int slotno){	SlruShared	shared = ctl->shared;	int			segno = pageno / SLRU_PAGES_PER_SEGMENT;	int			rpageno = pageno % SLRU_PAGES_PER_SEGMENT;	int			offset = rpageno * BLCKSZ;	char		path[MAXPGPATH];	int			fd;	SlruFileName(ctl, path, segno);	/*	 * In a crash-and-restart situation, it's possible for us to receive	 * commands to set the commit status of transactions whose bits are in	 * already-truncated segments of the commit log (see notes in	 * SlruPhysicalWritePage).	Hence, if we are InRecovery, allow the case	 * where the file doesn't exist, and return zeroes instead.	 */	fd = BasicOpenFile(path, O_RDWR | PG_BINARY, S_IRUSR | S_IWUSR);	if (fd < 0)	{		if (errno != ENOENT || !InRecovery)		{			slru_errcause = SLRU_OPEN_FAILED;			slru_errno = errno;			return false;		}		ereport(LOG,				(errmsg("file \"%s\" doesn't exist, reading as zeroes",						path)));		MemSet(shared->page_buffer[slotno], 0, BLCKSZ);		return true;	}	if (lseek(fd, (off_t) offset, SEEK_SET) < 0)	{		slru_errcause = SLRU_SEEK_FAILED;		slru_errno = errno;		close(fd);		return false;	}	errno = 0;	if (read(fd, shared->page_buffer[slotno], BLCKSZ) != BLCKSZ)	{

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -