md.c 50.5 KB
Newer Older
1 2
/*-------------------------------------------------------------------------
 *
3
 * md.c
4
 *	  This code manages relations that reside on magnetic disk.
5
 *
B
Bruce Momjian 已提交
6
 * Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
B
Add:  
Bruce Momjian 已提交
7
 * Portions Copyright (c) 1994, Regents of the University of California
8 9 10
 *
 *
 * IDENTIFICATION
11
 *	  src/backend/storage/smgr/md.c
12 13 14
 *
 *-------------------------------------------------------------------------
 */
15 16
#include "postgres.h"

B
Bruce Momjian 已提交
17
#include <unistd.h>
B
Bruce Momjian 已提交
18
#include <fcntl.h>
19 20
#include <sys/file.h>

B
Bruce Momjian 已提交
21
#include "miscadmin.h"
22 23
#include "access/xlog.h"
#include "catalog/catalog.h"
R
Robert Haas 已提交
24
#include "portability/instr_time.h"
25
#include "postmaster/bgwriter.h"
26
#include "storage/fd.h"
27
#include "storage/bufmgr.h"
28
#include "storage/relfilenode.h"
B
Bruce Momjian 已提交
29
#include "storage/smgr.h"
30
#include "utils/hsearch.h"
31
#include "utils/memutils.h"
32
#include "pg_trace.h"
33

34

35 36 37
/* interval for calling AbsorbFsyncRequests in mdsync */
#define FSYNCS_PER_ABSORB		10

38 39 40
/*
 * Special values for the segno arg to RememberFsyncRequest.
 *
41
 * Note that CompactcheckpointerRequestQueue assumes that it's OK to remove an
42 43 44
 * fsync request from the queue if an identical, subsequent request is found.
 * See comments there before making changes here.
 */
45 46
#define FORGET_RELATION_FSYNC	(InvalidBlockNumber)
#define FORGET_DATABASE_FSYNC	(InvalidBlockNumber-1)
B
Bruce Momjian 已提交
47
#define UNLINK_RELATION_REQUEST (InvalidBlockNumber-2)
48

49 50 51 52 53 54 55 56
/*
 * On Windows, we have to interpret EACCES as possibly meaning the same as
 * ENOENT, because if a file is unlinked-but-not-yet-gone on that platform,
 * that's what you get.  Ugh.  This code is designed so that we don't
 * actually believe these cases are okay without further evidence (namely,
 * a pending fsync request getting revoked ... see mdsync).
 */
#ifndef WIN32
B
Bruce Momjian 已提交
57
#define FILE_POSSIBLY_DELETED(err)	((err) == ENOENT)
58
#else
B
Bruce Momjian 已提交
59
#define FILE_POSSIBLY_DELETED(err)	((err) == ENOENT || (err) == EACCES)
60 61
#endif

62
/*
N
Neil Conway 已提交
63 64 65
 *	The magnetic disk storage manager keeps track of open file
 *	descriptors in its own descriptor pool.  This is done to make it
 *	easier to support relations that are larger than the operating
66
 *	system's file size limit (often 2GBytes).  In order to do that,
67 68
 *	we break relations up into "segment" files that are each shorter than
 *	the OS file size limit.  The segment size is set by the RELSEG_SIZE
69
 *	configuration constant in pg_config.h.
70 71 72 73 74 75 76 77 78 79
 *
 *	On disk, a relation must consist of consecutively numbered segment
 *	files in the pattern
 *		-- Zero or more full segments of exactly RELSEG_SIZE blocks each
 *		-- Exactly one partial segment of size 0 <= size < RELSEG_SIZE blocks
 *		-- Optionally, any number of inactive segments of size 0 blocks.
 *	The full and partial segments are collectively the "active" segments.
 *	Inactive segments are those that once contained data but are currently
 *	not needed because of an mdtruncate() operation.  The reason for leaving
 *	them present at size zero, rather than unlinking them, is that other
80
 *	backends and/or the checkpointer might be holding open file references to
B
Bruce Momjian 已提交
81
 *	such segments.	If the relation expands again after mdtruncate(), such
82 83 84 85
 *	that a deactivated segment becomes active again, it is important that
 *	such file references still be valid --- else data might get written
 *	out to an unlinked old copy of a segment file that will eventually
 *	disappear.
86
 *
87
 *	The file descriptor pointer (md_fd field) stored in the SMgrRelation
88 89 90
 *	cache is, therefore, just the head of a list of MdfdVec objects, one
 *	per segment.  But note the md_fd pointer can be NULL, indicating
 *	relation not open.
91
 *
92
 *	Also note that mdfd_chain == NULL does not necessarily mean the relation
93 94 95
 *	doesn't have another segment after this one; we may just not have
 *	opened the next segment yet.  (We could not have "all segments are
 *	in the chain" as an invariant anyway, since another backend could
96 97 98
 *	extend the relation when we weren't looking.)  We do not make chain
 *	entries for inactive segments, however; as soon as we find a partial
 *	segment, we assume that any subsequent segments are inactive.
99
 *
100
 *	All MdfdVec objects are palloc'd in the MdCxt memory context.
101 102
 */

103 104
typedef struct _MdfdVec
{
B
Bruce Momjian 已提交
105 106
	File		mdfd_vfd;		/* fd number in fd.c's pool */
	BlockNumber mdfd_segno;		/* segment number, from 0 */
107
	struct _MdfdVec *mdfd_chain;	/* next segment, or NULL */
108
} MdfdVec;
109

N
Neil Conway 已提交
110
static MemoryContext MdCxt;		/* context for all md.c allocations */
111

112

113
/*
114
 * In some contexts (currently, standalone backends and the checkpointer process)
115 116 117
 * we keep track of pending fsync operations: we need to remember all relation
 * segments that have been written since the last checkpoint, so that we can
 * fsync them down to disk before completing the next checkpoint.  This hash
118 119
 * table remembers the pending operations.	We use a hash table mostly as
 * a convenient way of eliminating duplicate requests.
120
 *
121 122 123 124
 * We use a similar mechanism to remember no-longer-needed files that can
 * be deleted after the next checkpoint, but we use a linked list instead of
 * a hash table, because we don't expect there to be any duplicate requests.
 *
125
 * (Regular backends do not track pending operations locally, but forward
126
 * them to the checkpointer.)
127 128 129
 */
typedef struct
{
130
	RelFileNodeBackend rnode;	/* the targeted relation */
131
	ForkNumber	forknum;
B
Bruce Momjian 已提交
132
	BlockNumber segno;			/* which segment */
133
} PendingOperationTag;
134

135 136
typedef uint16 CycleCtr;		/* can be any convenient integer size */

137 138 139
typedef struct
{
	PendingOperationTag tag;	/* hash table key (must be first!) */
140 141
	bool		canceled;		/* T => request canceled, not yet removed */
	CycleCtr	cycle_ctr;		/* mdsync_cycle_ctr when request was made */
142 143
} PendingOperationEntry;

144 145
typedef struct
{
146
	RelFileNodeBackend rnode;	/* the dead relation to delete */
B
Bruce Momjian 已提交
147
	CycleCtr	cycle_ctr;		/* mdckpt_cycle_ctr when request was made */
148
} PendingUnlinkEntry;
149

150
static HTAB *pendingOpsTable = NULL;
151
static List *pendingUnlinks = NIL;
152

153
static CycleCtr mdsync_cycle_ctr = 0;
154
static CycleCtr mdckpt_cycle_ctr = 0;
155

156

157 158 159 160 161
typedef enum					/* behavior for mdopen & _mdfd_getseg */
{
	EXTENSION_FAIL,				/* ereport if segment not present */
	EXTENSION_RETURN_NULL,		/* return NULL if not present */
	EXTENSION_CREATE			/* create new segments as needed */
162
} ExtensionBehavior;
163

164
/* local routines */
165 166
static MdfdVec *mdopen(SMgrRelation reln, ForkNumber forknum,
	   ExtensionBehavior behavior);
167
static void register_dirty_segment(SMgrRelation reln, ForkNumber forknum,
168
					   MdfdVec *seg);
169
static void register_unlink(RelFileNodeBackend rnode);
170
static MdfdVec *_fdvec_alloc(void);
171
static char *_mdfd_segpath(SMgrRelation reln, ForkNumber forknum,
B
Bruce Momjian 已提交
172
			  BlockNumber segno);
173
static MdfdVec *_mdfd_openseg(SMgrRelation reln, ForkNumber forkno,
174
			  BlockNumber segno, int oflags);
175
static MdfdVec *_mdfd_getseg(SMgrRelation reln, ForkNumber forkno,
176
			 BlockNumber blkno, bool skipFsync, ExtensionBehavior behavior);
177
static BlockNumber _mdnblocks(SMgrRelation reln, ForkNumber forknum,
178
		   MdfdVec *seg);
179

180

181
/*
182
 *	mdinit() -- Initialize private state for magnetic disk storage manager.
183
 */
184
void
185
mdinit(void)
186
{
187 188 189 190 191
	MdCxt = AllocSetContextCreate(TopMemoryContext,
								  "MdSmgr",
								  ALLOCSET_DEFAULT_MINSIZE,
								  ALLOCSET_DEFAULT_INITSIZE,
								  ALLOCSET_DEFAULT_MAXSIZE);
192

193
	/*
B
Bruce Momjian 已提交
194 195 196
	 * Create pending-operations hashtable if we need it.  Currently, we need
	 * it if we are standalone (not under a postmaster) OR if we are a
	 * bootstrap-mode subprocess of a postmaster (that is, a startup or
197
	 * checkpointer process).
198 199 200 201 202 203
	 */
	if (!IsUnderPostmaster || IsBootstrapProcessingMode())
	{
		HASHCTL		hash_ctl;

		MemSet(&hash_ctl, 0, sizeof(hash_ctl));
204
		hash_ctl.keysize = sizeof(PendingOperationTag);
205 206 207 208 209 210
		hash_ctl.entrysize = sizeof(PendingOperationEntry);
		hash_ctl.hash = tag_hash;
		hash_ctl.hcxt = MdCxt;
		pendingOpsTable = hash_create("Pending Ops Table",
									  100L,
									  &hash_ctl,
B
Bruce Momjian 已提交
211
								   HASH_ELEM | HASH_FUNCTION | HASH_CONTEXT);
212
		pendingUnlinks = NIL;
213
	}
214 215
}

216
/*
217
 * In archive recovery, we rely on checkpointer to do fsyncs, but we will have
218 219
 * already created the pendingOpsTable during initialization of the startup
 * process.  Calling this function drops the local pendingOpsTable so that
220
 * subsequent requests will be forwarded to checkpointer.
221 222 223 224 225 226 227 228 229 230
 */
void
SetForwardFsyncRequests(void)
{
	/* Perform any pending ops we may have queued up */
	if (pendingOpsTable)
		mdsync();
	pendingOpsTable = NULL;
}

231
/*
232
 *	mdexists() -- Does the physical file exist?
233 234 235 236 237 238 239
 *
 * Note: this will return true for lingering files, with pending deletions
 */
bool
mdexists(SMgrRelation reln, ForkNumber forkNum)
{
	/*
240 241
	 * Close it first, to ensure that we notice if the fork has been unlinked
	 * since we opened it.
242 243 244 245 246 247
	 */
	mdclose(reln, forkNum);

	return (mdopen(reln, forkNum, EXTENSION_RETURN_NULL) != NULL);
}

248 249 250 251 252
/*
 *	mdcreate() -- Create a new relation on magnetic disk.
 *
 * If isRedo is true, it's okay for the relation to exist already.
 */
253
void
254
mdcreate(SMgrRelation reln, ForkNumber forkNum, bool isRedo)
255
{
256
	char	   *path;
257
	File		fd;
258

259
	if (isRedo && reln->md_fd[forkNum] != NULL)
260
		return;					/* created and opened already... */
261

262
	Assert(reln->md_fd[forkNum] == NULL);
263

264
	path = relpath(reln->smgr_rnode, forkNum);
265

266
	fd = PathNameOpenFile(path, O_RDWR | O_CREAT | O_EXCL | PG_BINARY, 0600);
267 268 269

	if (fd < 0)
	{
B
Bruce Momjian 已提交
270
		int			save_errno = errno;
271

272
		/*
B
Bruce Momjian 已提交
273 274 275 276
		 * During bootstrap, there are cases where a system relation will be
		 * accessed (by internal backend processes) before the bootstrap
		 * script nominally creates it.  Therefore, allow the file to exist
		 * already, even if isRedo is not set.	(See also mdopen)
277
		 */
278
		if (isRedo || IsBootstrapProcessingMode())
279
			fd = PathNameOpenFile(path, O_RDWR | PG_BINARY, 0600);
280
		if (fd < 0)
281
		{
282
			/* be sure to report the error reported by create, not open */
283
			errno = save_errno;
284 285
			ereport(ERROR,
					(errcode_for_file_access(),
286
					 errmsg("could not create file \"%s\": %m", path)));
287
		}
288
	}
289 290

	pfree(path);
291

292 293 294
	if (reln->smgr_transient)
		FileSetTransient(fd);

295
	reln->md_fd[forkNum] = _fdvec_alloc();
296

297 298 299
	reln->md_fd[forkNum]->mdfd_vfd = fd;
	reln->md_fd[forkNum]->mdfd_segno = 0;
	reln->md_fd[forkNum]->mdfd_chain = NULL;
300 301 302
}

/*
303
 *	mdunlink() -- Unlink a relation.
304 305 306 307
 *
 * Note that we're passed a RelFileNode --- by the time this is called,
 * there won't be an SMgrRelation hashtable entry anymore.
 *
308 309 310 311 312 313 314
 * Actually, we don't unlink the first segment file of the relation, but
 * just truncate it to zero length, and record a request to unlink it after
 * the next checkpoint.  Additional segments can be unlinked immediately,
 * however.  Leaving the empty file in place prevents that relfilenode
 * number from being reused.  The scenario this protects us from is:
 * 1. We delete a relation (and commit, and actually remove its file).
 * 2. We create a new relation, which by chance gets the same relfilenode as
B
Bruce Momjian 已提交
315
 *	  the just-deleted one (OIDs must've wrapped around for that to happen).
316 317 318 319 320
 * 3. We crash before another checkpoint occurs.
 * During replay, we would delete the file and then recreate it, which is fine
 * if the contents of the file were repopulated by subsequent WAL entries.
 * But if we didn't WAL-log insertions, but instead relied on fsyncing the
 * file after populating it (as for instance CLUSTER and CREATE INDEX do),
B
Bruce Momjian 已提交
321
 * the contents of the file would be lost forever.	By leaving the empty file
322 323 324 325
 * until after the next checkpoint, we prevent reassignment of the relfilenode
 * number until it's safe, because relfilenode assignment skips over any
 * existing file.
 *
326 327 328 329 330 331 332
 * All the above applies only to the relation's main fork; other forks can
 * just be removed immediately, since they are not needed to prevent the
 * relfilenode number from being recycled.  Also, we do not carefully
 * track whether other forks have been created or not, but just attempt to
 * unlink them unconditionally; so we should never complain about ENOENT.
 *
 * If isRedo is true, it's unsurprising for the relation to be already gone.
333 334 335 336 337
 * Also, we should remove the file immediately instead of queuing a request
 * for later, since during redo there's no possibility of creating a
 * conflicting relation.
 *
 * Note: any failure should be reported as WARNING not ERROR, because
338
 * we are usually not in a transaction anymore when this is called.
339
 */
340
void
341
mdunlink(RelFileNodeBackend rnode, ForkNumber forkNum, bool isRedo)
342
{
343
	char	   *path;
B
Bruce Momjian 已提交
344
	int			ret;
345

346
	/*
B
Bruce Momjian 已提交
347 348
	 * We have to clean out any pending fsync requests for the doomed
	 * relation, else the next mdsync() will fail.
349
	 */
350
	ForgetRelationFsyncRequests(rnode, forkNum);
351

352
	path = relpath(rnode, forkNum);
353

354
	/*
355
	 * Delete or truncate the first segment.
356
	 */
357
	if (isRedo || forkNum != MAIN_FORKNUM)
358
	{
359
		ret = unlink(path);
360 361 362 363
		if (ret < 0 && errno != ENOENT)
			ereport(WARNING,
					(errcode_for_file_access(),
					 errmsg("could not remove file \"%s\": %m", path)));
364
	}
365
	else
366 367
	{
		/* truncate(2) would be easier here, but Windows hasn't got it */
368
		int			fd;
369 370 371 372

		fd = BasicOpenFile(path, O_RDWR | PG_BINARY, 0);
		if (fd >= 0)
		{
373
			int			save_errno;
374 375 376 377 378 379 380 381

			ret = ftruncate(fd, 0);
			save_errno = errno;
			close(fd);
			errno = save_errno;
		}
		else
			ret = -1;
382
		if (ret < 0 && errno != ENOENT)
383 384
			ereport(WARNING,
					(errcode_for_file_access(),
385
					 errmsg("could not truncate file \"%s\": %m", path)));
386 387 388

		/* Register request to unlink first segment later */
		register_unlink(rnode);
389
	}
390

391 392 393
	/*
	 * Delete any additional segments.
	 */
394
	if (ret >= 0)
395
	{
396
		char	   *segpath = (char *) palloc(strlen(path) + 12);
397
		BlockNumber segno;
398

399
		/*
B
Bruce Momjian 已提交
400 401
		 * Note that because we loop until getting ENOENT, we will correctly
		 * remove all inactive segments as well as active ones.
402
		 */
B
Bruce Momjian 已提交
403
		for (segno = 1;; segno++)
404
		{
405
			sprintf(segpath, "%s.%u", path, segno);
406 407 408 409
			if (unlink(segpath) < 0)
			{
				/* ENOENT is expected after the last segment... */
				if (errno != ENOENT)
410 411
					ereport(WARNING,
							(errcode_for_file_access(),
B
Bruce Momjian 已提交
412
					   errmsg("could not remove file \"%s\": %m", segpath)));
413 414 415 416
				break;
			}
		}
		pfree(segpath);
417
	}
418

419
	pfree(path);
420 421 422
}

/*
423
 *	mdextend() -- Add a block to the specified relation.
424
 *
425 426 427 428 429
 *		The semantics are nearly the same as mdwrite(): write at the
 *		specified position.  However, this is to be used for the case of
 *		extending a relation (i.e., blocknum is at or beyond the current
 *		EOF).  Note that we assume writing a block beyond current EOF
 *		causes intervening file space to become filled with zeroes.
430
 */
431
void
432
mdextend(SMgrRelation reln, ForkNumber forknum, BlockNumber blocknum,
433
		 char *buffer, bool skipFsync)
434
{
435
	off_t		seekpos;
436
	int			nbytes;
437
	MdfdVec    *v;
438

439 440
	/* This assert is too expensive to have on normally ... */
#ifdef CHECK_WRITE_VS_EXTEND
441
	Assert(blocknum >= mdnblocks(reln, forknum));
442 443 444
#endif

	/*
B
Bruce Momjian 已提交
445 446 447
	 * If a relation manages to grow to 2^32-1 blocks, refuse to extend it any
	 * more --- we mustn't create a block whose number actually is
	 * InvalidBlockNumber.
448 449 450 451
	 */
	if (blocknum == InvalidBlockNumber)
		ereport(ERROR,
				(errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
452
				 errmsg("cannot extend file \"%s\" beyond %u blocks",
453
						relpath(reln->smgr_rnode, forknum),
454 455
						InvalidBlockNumber)));

456
	v = _mdfd_getseg(reln, forknum, blocknum, skipFsync, EXTENSION_CREATE);
457

458 459
	seekpos = (off_t) BLCKSZ *(blocknum % ((BlockNumber) RELSEG_SIZE));

460
	Assert(seekpos < (off_t) BLCKSZ * RELSEG_SIZE);
461

462
	/*
463 464
	 * Note: because caller usually obtained blocknum by calling mdnblocks,
	 * which did a seek(SEEK_END), this seek is often redundant and will be
B
Bruce Momjian 已提交
465
	 * optimized away by fd.c.	It's not redundant, however, if there is a
466 467 468 469
	 * partial page at the end of the file. In that case we want to try to
	 * overwrite the partial page with a full page.  It's also not redundant
	 * if bufmgr.c had to dump another buffer of the same file to make room
	 * for the new page's buffer.
470 471
	 */
	if (FileSeek(v->mdfd_vfd, seekpos, SEEK_SET) != seekpos)
472 473
		ereport(ERROR,
				(errcode_for_file_access(),
474 475
				 errmsg("could not seek to block %u in file \"%s\": %m",
						blocknum, FilePathName(v->mdfd_vfd))));
476 477 478

	if ((nbytes = FileWrite(v->mdfd_vfd, buffer, BLCKSZ)) != BLCKSZ)
	{
479 480 481
		if (nbytes < 0)
			ereport(ERROR,
					(errcode_for_file_access(),
482 483
					 errmsg("could not extend file \"%s\": %m",
							FilePathName(v->mdfd_vfd)),
484 485 486 487
					 errhint("Check free disk space.")));
		/* short write: complain appropriately */
		ereport(ERROR,
				(errcode(ERRCODE_DISK_FULL),
488 489
				 errmsg("could not extend file \"%s\": wrote only %d of %d bytes at block %u",
						FilePathName(v->mdfd_vfd),
490 491
						nbytes, BLCKSZ, blocknum),
				 errhint("Check free disk space.")));
492
	}
493

494
	if (!skipFsync && !SmgrIsTemp(reln))
495
		register_dirty_segment(reln, forknum, v);
496

497
	Assert(_mdnblocks(reln, forknum, v) <= ((BlockNumber) RELSEG_SIZE));
498 499 500
}

/*
501
 *	mdopen() -- Open the specified relation.
502 503
 *
 * Note we only open the first segment, when there are multiple segments.
504 505 506 507 508
 *
 * If first segment is not present, either ereport or return NULL according
 * to "behavior".  We treat EXTENSION_CREATE the same as EXTENSION_FAIL;
 * EXTENSION_CREATE means it's OK to extend an existing relation, not to
 * invent one out of whole cloth.
509
 */
510
static MdfdVec *
511
mdopen(SMgrRelation reln, ForkNumber forknum, ExtensionBehavior behavior)
512
{
B
Bruce Momjian 已提交
513
	MdfdVec    *mdfd;
514
	char	   *path;
515
	File		fd;
516

517
	/* No work if already open */
518 519
	if (reln->md_fd[forknum])
		return reln->md_fd[forknum];
520

521
	path = relpath(reln->smgr_rnode, forknum);
522

523
	fd = PathNameOpenFile(path, O_RDWR | PG_BINARY, 0600);
524

525
	if (fd < 0)
526
	{
527
		/*
B
Bruce Momjian 已提交
528 529 530 531
		 * During bootstrap, there are cases where a system relation will be
		 * accessed (by internal backend processes) before the bootstrap
		 * script nominally creates it.  Therefore, accept mdopen() as a
		 * substitute for mdcreate() in bootstrap mode only. (See mdcreate)
532
		 */
533
		if (IsBootstrapProcessingMode())
534
			fd = PathNameOpenFile(path, O_RDWR | O_CREAT | O_EXCL | PG_BINARY, 0600);
535 536
		if (fd < 0)
		{
537 538
			if (behavior == EXTENSION_RETURN_NULL &&
				FILE_POSSIBLY_DELETED(errno))
539 540
			{
				pfree(path);
541
				return NULL;
542
			}
543 544
			ereport(ERROR,
					(errcode_for_file_access(),
545
					 errmsg("could not open file \"%s\": %m", path)));
546 547
		}
	}
548 549

	pfree(path);
550

551 552 553
	if (reln->smgr_transient)
		FileSetTransient(fd);

554
	reln->md_fd[forknum] = mdfd = _fdvec_alloc();
V
Vadim B. Mikheev 已提交
555

556 557 558
	mdfd->mdfd_vfd = fd;
	mdfd->mdfd_segno = 0;
	mdfd->mdfd_chain = NULL;
559
	Assert(_mdnblocks(reln, forknum, mdfd) <= ((BlockNumber) RELSEG_SIZE));
560

561
	return mdfd;
562 563 564
}

/*
565
 *	mdclose() -- Close the specified relation, if it isn't closed already.
566
 */
567
void
568
mdclose(SMgrRelation reln, ForkNumber forknum)
569
{
570
	MdfdVec    *v = reln->md_fd[forknum];
571

572 573
	/* No work if already closed */
	if (v == NULL)
574
		return;
575

576
	reln->md_fd[forknum] = NULL;	/* prevent dangling pointer after error */
577

578
	while (v != NULL)
V
Vadim B. Mikheev 已提交
579
	{
580 581
		MdfdVec    *ov = v;

582 583 584 585 586
		/* if not closed already */
		if (v->mdfd_vfd >= 0)
			FileClose(v->mdfd_vfd);
		/* Now free vector */
		v = v->mdfd_chain;
587
		pfree(ov);
588
	}
589 590
}

591 592 593 594 595 596 597 598 599 600 601 602
/*
 *	mdprefetch() -- Initiate asynchronous read of the specified block of a relation
 */
void
mdprefetch(SMgrRelation reln, ForkNumber forknum, BlockNumber blocknum)
{
#ifdef USE_PREFETCH
	off_t		seekpos;
	MdfdVec    *v;

	v = _mdfd_getseg(reln, forknum, blocknum, false, EXTENSION_FAIL);

603 604
	seekpos = (off_t) BLCKSZ *(blocknum % ((BlockNumber) RELSEG_SIZE));

605 606 607
	Assert(seekpos < (off_t) BLCKSZ * RELSEG_SIZE);

	(void) FilePrefetch(v->mdfd_vfd, seekpos, BLCKSZ);
608
#endif   /* USE_PREFETCH */
609 610 611
}


612
/*
613
 *	mdread() -- Read the specified block from a relation.
614
 */
615
void
616 617
mdread(SMgrRelation reln, ForkNumber forknum, BlockNumber blocknum,
	   char *buffer)
618
{
619
	off_t		seekpos;
620 621
	int			nbytes;
	MdfdVec    *v;
622

623
	TRACE_POSTGRESQL_SMGR_MD_READ_START(forknum, blocknum,
624 625 626 627
										reln->smgr_rnode.node.spcNode,
										reln->smgr_rnode.node.dbNode,
										reln->smgr_rnode.node.relNode,
										reln->smgr_rnode.backend);
628

629
	v = _mdfd_getseg(reln, forknum, blocknum, false, EXTENSION_FAIL);
630

631 632
	seekpos = (off_t) BLCKSZ *(blocknum % ((BlockNumber) RELSEG_SIZE));

633
	Assert(seekpos < (off_t) BLCKSZ * RELSEG_SIZE);
634

635
	if (FileSeek(v->mdfd_vfd, seekpos, SEEK_SET) != seekpos)
636 637
		ereport(ERROR,
				(errcode_for_file_access(),
638 639
				 errmsg("could not seek to block %u in file \"%s\": %m",
						blocknum, FilePathName(v->mdfd_vfd))));
640

641 642
	nbytes = FileRead(v->mdfd_vfd, buffer, BLCKSZ);

643
	TRACE_POSTGRESQL_SMGR_MD_READ_DONE(forknum, blocknum,
644 645 646 647
									   reln->smgr_rnode.node.spcNode,
									   reln->smgr_rnode.node.dbNode,
									   reln->smgr_rnode.node.relNode,
									   reln->smgr_rnode.backend,
648 649
									   nbytes,
									   BLCKSZ);
650 651

	if (nbytes != BLCKSZ)
652
	{
653 654 655
		if (nbytes < 0)
			ereport(ERROR,
					(errcode_for_file_access(),
656 657
					 errmsg("could not read block %u in file \"%s\": %m",
							blocknum, FilePathName(v->mdfd_vfd))));
B
Bruce Momjian 已提交
658

659
		/*
660 661
		 * Short read: we are at or past EOF, or we read a partial block at
		 * EOF.  Normally this is an error; upper levels should never try to
B
Bruce Momjian 已提交
662 663
		 * read a nonexistent block.  However, if zero_damaged_pages is ON or
		 * we are InRecovery, we should instead return zeroes without
664 665
		 * complaining.  This allows, for example, the case of trying to
		 * update a block that was later truncated away.
666
		 */
667
		if (zero_damaged_pages || InRecovery)
668
			MemSet(buffer, 0, BLCKSZ);
669
		else
670 671
			ereport(ERROR,
					(errcode(ERRCODE_DATA_CORRUPTED),
672 673
					 errmsg("could not read block %u in file \"%s\": read only %d of %d bytes",
							blocknum, FilePathName(v->mdfd_vfd),
674
							nbytes, BLCKSZ)));
675 676 677 678
	}
}

/*
679
 *	mdwrite() -- Write the supplied block at the appropriate location.
680 681 682 683
 *
 *		This is to be used only for updating already-existing blocks of a
 *		relation (ie, those before the current EOF).  To extend a relation,
 *		use mdextend().
684
 */
685
void
686
mdwrite(SMgrRelation reln, ForkNumber forknum, BlockNumber blocknum,
687
		char *buffer, bool skipFsync)
688
{
689
	off_t		seekpos;
690
	int			nbytes;
691
	MdfdVec    *v;
692

693 694
	/* This assert is too expensive to have on normally ... */
#ifdef CHECK_WRITE_VS_EXTEND
695
	Assert(blocknum < mdnblocks(reln, forknum));
696 697
#endif

698
	TRACE_POSTGRESQL_SMGR_MD_WRITE_START(forknum, blocknum,
699 700 701 702
										 reln->smgr_rnode.node.spcNode,
										 reln->smgr_rnode.node.dbNode,
										 reln->smgr_rnode.node.relNode,
										 reln->smgr_rnode.backend);
703

704
	v = _mdfd_getseg(reln, forknum, blocknum, skipFsync, EXTENSION_FAIL);
705

706 707
	seekpos = (off_t) BLCKSZ *(blocknum % ((BlockNumber) RELSEG_SIZE));

708
	Assert(seekpos < (off_t) BLCKSZ * RELSEG_SIZE);
709

710
	if (FileSeek(v->mdfd_vfd, seekpos, SEEK_SET) != seekpos)
711 712
		ereport(ERROR,
				(errcode_for_file_access(),
713 714
				 errmsg("could not seek to block %u in file \"%s\": %m",
						blocknum, FilePathName(v->mdfd_vfd))));
715

716 717
	nbytes = FileWrite(v->mdfd_vfd, buffer, BLCKSZ);

718
	TRACE_POSTGRESQL_SMGR_MD_WRITE_DONE(forknum, blocknum,
719 720 721 722
										reln->smgr_rnode.node.spcNode,
										reln->smgr_rnode.node.dbNode,
										reln->smgr_rnode.node.relNode,
										reln->smgr_rnode.backend,
723 724
										nbytes,
										BLCKSZ);
725 726

	if (nbytes != BLCKSZ)
727
	{
728 729 730
		if (nbytes < 0)
			ereport(ERROR,
					(errcode_for_file_access(),
731 732
					 errmsg("could not write block %u in file \"%s\": %m",
							blocknum, FilePathName(v->mdfd_vfd))));
733 734 735
		/* short write: complain appropriately */
		ereport(ERROR,
				(errcode(ERRCODE_DISK_FULL),
736
				 errmsg("could not write block %u in file \"%s\": wrote only %d of %d bytes",
737
						blocknum,
738
						FilePathName(v->mdfd_vfd),
739 740
						nbytes, BLCKSZ),
				 errhint("Check free disk space.")));
741
	}
742

743
	if (!skipFsync && !SmgrIsTemp(reln))
744
		register_dirty_segment(reln, forknum, v);
745
}
746 747

/*
748
 *	mdnblocks() -- Get the number of blocks stored in a relation.
749
 *
750
 *		Important side effect: all active segments of the relation are opened
751 752
 *		and added to the mdfd_chain list.  If this routine has not been
 *		called, then only segments up to the last one actually touched
753
 *		are present in the chain.
754
 */
755
BlockNumber
756
mdnblocks(SMgrRelation reln, ForkNumber forknum)
757
{
758
	MdfdVec    *v = mdopen(reln, forknum, EXTENSION_FAIL);
759
	BlockNumber nblocks;
760
	BlockNumber segno = 0;
761 762

	/*
B
Bruce Momjian 已提交
763 764 765
	 * Skip through any segments that aren't the last one, to avoid redundant
	 * seeks on them.  We have previously verified that these segments are
	 * exactly RELSEG_SIZE long, and it's useless to recheck that each time.
766 767
	 *
	 * NOTE: this assumption could only be wrong if another backend has
B
Bruce Momjian 已提交
768
	 * truncated the relation.	We rely on higher code levels to handle that
769
	 * scenario by closing and re-opening the md fd, which is handled via
770
	 * relcache flush.	(Since the checkpointer doesn't participate in relcache
771
	 * flush, it could have segment chain entries for inactive segments;
772
	 * that's OK because the checkpointer never needs to compute relation size.)
773
	 */
774
	while (v->mdfd_chain != NULL)
775 776 777 778 779
	{
		segno++;
		v = v->mdfd_chain;
	}

780 781
	for (;;)
	{
782
		nblocks = _mdnblocks(reln, forknum, v);
783
		if (nblocks > ((BlockNumber) RELSEG_SIZE))
784
			elog(FATAL, "segment too big");
785 786
		if (nblocks < ((BlockNumber) RELSEG_SIZE))
			return (segno * ((BlockNumber) RELSEG_SIZE)) + nblocks;
787

788 789 790 791
		/*
		 * If segment is exactly RELSEG_SIZE, advance to next one.
		 */
		segno++;
792

793
		if (v->mdfd_chain == NULL)
794 795
		{
			/*
B
Bruce Momjian 已提交
796 797
			 * Because we pass O_CREAT, we will create the next segment (with
			 * zero length) immediately, if the last segment is of length
798 799
			 * RELSEG_SIZE.  While perhaps not strictly necessary, this keeps
			 * the logic simple.
800
			 */
801
			v->mdfd_chain = _mdfd_openseg(reln, forknum, segno, O_CREAT);
802
			if (v->mdfd_chain == NULL)
803 804
				ereport(ERROR,
						(errcode_for_file_access(),
805 806
						 errmsg("could not open file \"%s\": %m",
								_mdfd_segpath(reln, forknum, segno))));
807
		}
808 809

		v = v->mdfd_chain;
810 811 812
	}
}

813
/*
814
 *	mdtruncate() -- Truncate relation to specified number of blocks.
815
 */
816
void
817
mdtruncate(SMgrRelation reln, ForkNumber forknum, BlockNumber nblocks)
818
{
819
	MdfdVec    *v;
820 821
	BlockNumber curnblk;
	BlockNumber priorblocks;
822

823
	/*
B
Bruce Momjian 已提交
824 825
	 * NOTE: mdnblocks makes sure we have opened all active segments, so that
	 * truncation loop will get them all!
826
	 */
827
	curnblk = mdnblocks(reln, forknum);
828
	if (nblocks > curnblk)
829 830 831 832 833
	{
		/* Bogus request ... but no complaint if InRecovery */
		if (InRecovery)
			return;
		ereport(ERROR,
834
				(errmsg("could not truncate file \"%s\" to %u blocks: it's only %u blocks now",
835
						relpath(reln->smgr_rnode, forknum),
836 837
						nblocks, curnblk)));
	}
838
	if (nblocks == curnblk)
839
		return;					/* no work */
840

841
	v = mdopen(reln, forknum, EXTENSION_FAIL);
842

843
	priorblocks = 0;
844
	while (v != NULL)
845
	{
846 847 848
		MdfdVec    *ov = v;

		if (priorblocks > nblocks)
849
		{
850
			/*
B
Bruce Momjian 已提交
851 852 853
			 * This segment is no longer active (and has already been unlinked
			 * from the mdfd_chain). We truncate the file, but do not delete
			 * it, for reasons explained in the header comments.
854
			 */
855
			if (FileTruncate(v->mdfd_vfd, 0) < 0)
856 857
				ereport(ERROR,
						(errcode_for_file_access(),
858 859 860
						 errmsg("could not truncate file \"%s\": %m",
								FilePathName(v->mdfd_vfd))));

861
			if (!SmgrIsTemp(reln))
862
				register_dirty_segment(reln, forknum, v);
863
			v = v->mdfd_chain;
864 865
			Assert(ov != reln->md_fd[forknum]); /* we never drop the 1st
												 * segment */
866
			pfree(ov);
867
		}
868
		else if (priorblocks + ((BlockNumber) RELSEG_SIZE) > nblocks)
869
		{
870
			/*
B
Bruce Momjian 已提交
871 872 873 874
			 * This is the last segment we want to keep. Truncate the file to
			 * the right length, and clear chain link that points to any
			 * remaining segments (which we shall zap). NOTE: if nblocks is
			 * exactly a multiple K of RELSEG_SIZE, we will truncate the K+1st
875 876
			 * segment to 0 length but keep it. This adheres to the invariant
			 * given in the header comments.
877
			 */
878
			BlockNumber lastsegblocks = nblocks - priorblocks;
879

880
			if (FileTruncate(v->mdfd_vfd, (off_t) lastsegblocks * BLCKSZ) < 0)
881 882
				ereport(ERROR,
						(errcode_for_file_access(),
883 884
					errmsg("could not truncate file \"%s\" to %u blocks: %m",
						   FilePathName(v->mdfd_vfd),
885
						   nblocks)));
886
			if (!SmgrIsTemp(reln))
887
				register_dirty_segment(reln, forknum, v);
888
			v = v->mdfd_chain;
889
			ov->mdfd_chain = NULL;
890 891 892
		}
		else
		{
893
			/*
B
Bruce Momjian 已提交
894 895
			 * We still need this segment and 0 or more blocks beyond it, so
			 * nothing to do here.
896 897 898 899
			 */
			v = v->mdfd_chain;
		}
		priorblocks += RELSEG_SIZE;
900
	}
901
}
902

903 904
/*
 *	mdimmedsync() -- Immediately sync a relation to stable storage.
905 906 907
 *
 * Note that only writes already issued are synced; this routine knows
 * nothing of dirty buffers that may exist inside the buffer manager.
908
 */
909
void
910
mdimmedsync(SMgrRelation reln, ForkNumber forknum)
911 912 913 914
{
	MdfdVec    *v;

	/*
B
Bruce Momjian 已提交
915 916
	 * NOTE: mdnblocks makes sure we have opened all active segments, so that
	 * fsync loop will get them all!
917
	 */
918
	mdnblocks(reln, forknum);
919

920
	v = mdopen(reln, forknum, EXTENSION_FAIL);
921 922 923 924

	while (v != NULL)
	{
		if (FileSync(v->mdfd_vfd) < 0)
925 926
			ereport(ERROR,
					(errcode_for_file_access(),
927 928
					 errmsg("could not fsync file \"%s\": %m",
							FilePathName(v->mdfd_vfd))));
929 930 931 932
		v = v->mdfd_chain;
	}
}

933
/*
934
 *	mdsync() -- Sync previous writes to stable storage.
935
 */
936
void
937
mdsync(void)
938
{
939 940 941 942 943
	static bool mdsync_in_progress = false;

	HASH_SEQ_STATUS hstat;
	PendingOperationEntry *entry;
	int			absorb_counter;
944

R
Robert Haas 已提交
945 946 947 948
	/* Statistics on sync times */
	int			processed = 0;
	instr_time	sync_start,
				sync_end,
949
				sync_diff;
R
Robert Haas 已提交
950 951 952 953
	uint64		elapsed;
	uint64		longest = 0;
	uint64		total_elapsed = 0;

954 955 956 957
	/*
	 * This is only called during checkpoints, and checkpoints should only
	 * occur in processes that have created a pendingOpsTable.
	 */
958
	if (!pendingOpsTable)
959
		elog(ERROR, "cannot sync without a pendingOpsTable");
960

961
	/*
962
	 * If we are in the checkpointer, the sync had better include all fsync
B
Bruce Momjian 已提交
963
	 * requests that were queued by backends up to this point.	The tightest
964
	 * race condition that could occur is that a buffer that must be written
B
Bruce Momjian 已提交
965 966 967 968
	 * and fsync'd for the checkpoint could have been dumped by a backend just
	 * before it was visited by BufferSync().  We know the backend will have
	 * queued an fsync request before clearing the buffer's dirtybit, so we
	 * are safe as long as we do an Absorb after completing BufferSync().
969
	 */
970 971 972 973 974 975 976 977 978 979
	AbsorbFsyncRequests();

	/*
	 * To avoid excess fsync'ing (in the worst case, maybe a never-terminating
	 * checkpoint), we want to ignore fsync requests that are entered into the
	 * hashtable after this point --- they should be processed next time,
	 * instead.  We use mdsync_cycle_ctr to tell old entries apart from new
	 * ones: new ones will have cycle_ctr equal to the incremented value of
	 * mdsync_cycle_ctr.
	 *
B
Bruce Momjian 已提交
980 981
	 * In normal circumstances, all entries present in the table at this point
	 * will have cycle_ctr exactly equal to the current (about to be old)
982 983 984 985 986
	 * value of mdsync_cycle_ctr.  However, if we fail partway through the
	 * fsync'ing loop, then older values of cycle_ctr might remain when we
	 * come back here to try again.  Repeated checkpoint failures would
	 * eventually wrap the counter around to the point where an old entry
	 * might appear new, causing us to skip it, possibly allowing a checkpoint
B
Bruce Momjian 已提交
987 988
	 * to succeed that should not have.  To forestall wraparound, any time the
	 * previous mdsync() failed to complete, run through the table and
989 990 991 992
	 * forcibly set cycle_ctr = mdsync_cycle_ctr.
	 *
	 * Think not to merge this loop with the main loop, as the problem is
	 * exactly that that loop may fail before having visited all the entries.
B
Bruce Momjian 已提交
993 994
	 * From a performance point of view it doesn't matter anyway, as this path
	 * will never be taken in a system that's functioning normally.
995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
	 */
	if (mdsync_in_progress)
	{
		/* prior try failed, so update any stale cycle_ctr values */
		hash_seq_init(&hstat, pendingOpsTable);
		while ((entry = (PendingOperationEntry *) hash_seq_search(&hstat)) != NULL)
		{
			entry->cycle_ctr = mdsync_cycle_ctr;
		}
	}

	/* Advance counter so that new hashtable entries are distinguishable */
	mdsync_cycle_ctr++;
1008

1009 1010
	/* Set flag to detect failure if we don't reach the end of the loop */
	mdsync_in_progress = true;
1011

1012 1013 1014 1015 1016
	/* Now scan the hashtable for fsync requests to process */
	absorb_counter = FSYNCS_PER_ABSORB;
	hash_seq_init(&hstat, pendingOpsTable);
	while ((entry = (PendingOperationEntry *) hash_seq_search(&hstat)) != NULL)
	{
1017
		/*
1018 1019
		 * If the entry is new then don't process it this time.  Note that
		 * "continue" bypasses the hash-remove call at the bottom of the loop.
1020
		 */
1021 1022
		if (entry->cycle_ctr == mdsync_cycle_ctr)
			continue;
1023

1024 1025 1026 1027
		/* Else assert we haven't missed it */
		Assert((CycleCtr) (entry->cycle_ctr + 1) == mdsync_cycle_ctr);

		/*
B
Bruce Momjian 已提交
1028 1029 1030 1031
		 * If fsync is off then we don't have to bother opening the file at
		 * all.  (We delay checking until this point so that changing fsync on
		 * the fly behaves sensibly.)  Also, if the entry is marked canceled,
		 * fall through to delete it.
1032 1033
		 */
		if (enableFsync && !entry->canceled)
1034
		{
1035 1036
			int			failures;

1037
			/*
1038
			 * If in checkpointer, we want to absorb pending requests every so
1039 1040 1041 1042
			 * often to prevent overflow of the fsync request queue.  It is
			 * unspecified whether newly-added entries will be visited by
			 * hash_seq_search, but we don't care since we don't need to
			 * process them anyway.
1043
			 */
1044 1045 1046 1047 1048 1049 1050 1051
			if (--absorb_counter <= 0)
			{
				AbsorbFsyncRequests();
				absorb_counter = FSYNCS_PER_ABSORB;
			}

			/*
			 * The fsync table could contain requests to fsync segments that
B
Bruce Momjian 已提交
1052 1053 1054 1055 1056 1057
			 * have been deleted (unlinked) by the time we get to them. Rather
			 * than just hoping an ENOENT (or EACCES on Windows) error can be
			 * ignored, what we do on error is absorb pending requests and
			 * then retry.	Since mdunlink() queues a "revoke" message before
			 * actually unlinking, the fsync request is guaranteed to be
			 * marked canceled after the absorb if it really was this case.
1058 1059 1060
			 * DROP DATABASE likewise has to tell us to forget fsync requests
			 * before it starts deletions.
			 */
B
Bruce Momjian 已提交
1061
			for (failures = 0;; failures++)		/* loop exits at "break" */
1062
			{
1063 1064
				SMgrRelation reln;
				MdfdVec    *seg;
1065
				char	   *path;
1066 1067 1068 1069 1070 1071 1072 1073 1074

				/*
				 * Find or create an smgr hash entry for this relation. This
				 * may seem a bit unclean -- md calling smgr?  But it's really
				 * the best solution.  It ensures that the open file reference
				 * isn't permanently leaked if we get an error here. (You may
				 * say "but an unreferenced SMgrRelation is still a leak!" Not
				 * really, because the only case in which a checkpoint is done
				 * by a process that isn't about to shut down is in the
1075
				 * checkpointer, and it will periodically do smgrcloseall(). This
1076
				 * fact justifies our not closing the reln in the success path
1077
				 * either, which is a good thing since in non-checkpointer cases
1078 1079 1080 1081
				 * we couldn't safely do that.)  Furthermore, in many cases
				 * the relation will have been dirtied through this same smgr
				 * relation, and so we can save a file open/close cycle.
				 */
1082 1083
				reln = smgropen(entry->tag.rnode.node,
								entry->tag.rnode.backend);
1084 1085 1086 1087

				/*
				 * It is possible that the relation has been dropped or
				 * truncated since the fsync request was entered.  Therefore,
B
Bruce Momjian 已提交
1088 1089 1090 1091
				 * allow ENOENT, but only if we didn't fail already on this
				 * file.  This applies both during _mdfd_getseg() and during
				 * FileSync, since fd.c might have closed the file behind our
				 * back.
1092
				 */
1093
				seg = _mdfd_getseg(reln, entry->tag.forknum,
B
Bruce Momjian 已提交
1094
							  entry->tag.segno * ((BlockNumber) RELSEG_SIZE),
1095
								   false, EXTENSION_RETURN_NULL);
R
Robert Haas 已提交
1096 1097 1098 1099 1100 1101

				if (log_checkpoints)
					INSTR_TIME_SET_CURRENT(sync_start);
				else
					INSTR_TIME_SET_ZERO(sync_start);

1102 1103
				if (seg != NULL &&
					FileSync(seg->mdfd_vfd) >= 0)
R
Robert Haas 已提交
1104
				{
1105
					if (log_checkpoints && (!INSTR_TIME_IS_ZERO(sync_start)))
R
Robert Haas 已提交
1106 1107 1108 1109 1110 1111 1112 1113 1114
					{
						INSTR_TIME_SET_CURRENT(sync_end);
						sync_diff = sync_end;
						INSTR_TIME_SUBTRACT(sync_diff, sync_start);
						elapsed = INSTR_TIME_GET_MICROSEC(sync_diff);
						if (elapsed > longest)
							longest = elapsed;
						total_elapsed += elapsed;
						processed++;
1115 1116
						elog(DEBUG1, "checkpoint sync: number=%d file=%s time=%.3f msec",
							 processed, FilePathName(seg->mdfd_vfd), (double) elapsed / 1000);
R
Robert Haas 已提交
1117 1118
					}

1119
					break;		/* success; break out of retry loop */
R
Robert Haas 已提交
1120
				}
1121 1122 1123

				/*
				 * XXX is there any point in allowing more than one retry?
B
Bruce Momjian 已提交
1124 1125
				 * Don't see one at the moment, but easy to change the test
				 * here if so.
1126
				 */
1127 1128
				path = _mdfd_segpath(reln, entry->tag.forknum,
									 entry->tag.segno);
1129 1130 1131 1132
				if (!FILE_POSSIBLY_DELETED(errno) ||
					failures > 0)
					ereport(ERROR,
							(errcode_for_file_access(),
B
Bruce Momjian 已提交
1133
						   errmsg("could not fsync file \"%s\": %m", path)));
1134 1135 1136
				else
					ereport(DEBUG1,
							(errcode_for_file_access(),
B
Bruce Momjian 已提交
1137 1138
					   errmsg("could not fsync file \"%s\" but retrying: %m",
							  path)));
1139
				pfree(path);
1140

1141 1142 1143 1144
				/*
				 * Absorb incoming requests and check to see if canceled.
				 */
				AbsorbFsyncRequests();
B
Bruce Momjian 已提交
1145
				absorb_counter = FSYNCS_PER_ABSORB;		/* might as well... */
1146 1147 1148

				if (entry->canceled)
					break;
B
Bruce Momjian 已提交
1149
			}					/* end retry loop */
1150
		}
1151 1152

		/*
B
Bruce Momjian 已提交
1153 1154 1155
		 * If we get here, either we fsync'd successfully, or we don't have to
		 * because enableFsync is off, or the entry is (now) marked canceled.
		 * Okay to delete it.
1156 1157 1158 1159
		 */
		if (hash_search(pendingOpsTable, &entry->tag,
						HASH_REMOVE, NULL) == NULL)
			elog(ERROR, "pendingOpsTable corrupted");
B
Bruce Momjian 已提交
1160
	}							/* end loop over hashtable entries */
1161

R
Robert Haas 已提交
1162 1163 1164 1165 1166
	/* Return sync performance metrics for report at checkpoint end */
	CheckpointStats.ckpt_sync_rels = processed;
	CheckpointStats.ckpt_longest_sync = longest;
	CheckpointStats.ckpt_agg_sync_time = total_elapsed;

1167 1168
	/* Flag successful completion of mdsync */
	mdsync_in_progress = false;
1169 1170
}

1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
/*
 * mdpreckpt() -- Do pre-checkpoint work
 *
 * To distinguish unlink requests that arrived before this checkpoint
 * started from those that arrived during the checkpoint, we use a cycle
 * counter similar to the one we use for fsync requests. That cycle
 * counter is incremented here.
 *
 * This must be called *before* the checkpoint REDO point is determined.
 * That ensures that we won't delete files too soon.
 *
 * Note that we can't do anything here that depends on the assumption
 * that the checkpoint will be completed.
 */
void
mdpreckpt(void)
{
B
Bruce Momjian 已提交
1188
	ListCell   *cell;
1189 1190

	/*
B
Bruce Momjian 已提交
1191 1192 1193 1194
	 * In case the prior checkpoint wasn't completed, stamp all entries in the
	 * list with the current cycle counter.  Anything that's in the list at
	 * the start of checkpoint can surely be deleted after the checkpoint is
	 * finished, regardless of when the request was made.
1195 1196 1197 1198 1199 1200 1201 1202 1203
	 */
	foreach(cell, pendingUnlinks)
	{
		PendingUnlinkEntry *entry = (PendingUnlinkEntry *) lfirst(cell);

		entry->cycle_ctr = mdckpt_cycle_ctr;
	}

	/*
B
Bruce Momjian 已提交
1204 1205
	 * Any unlink requests arriving after this point will be assigned the next
	 * cycle counter, and won't be unlinked until next checkpoint.
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
	 */
	mdckpt_cycle_ctr++;
}

/*
 * mdpostckpt() -- Do post-checkpoint work
 *
 * Remove any lingering files that can now be safely removed.
 */
void
mdpostckpt(void)
{
	while (pendingUnlinks != NIL)
	{
		PendingUnlinkEntry *entry = (PendingUnlinkEntry *) linitial(pendingUnlinks);
B
Bruce Momjian 已提交
1221
		char	   *path;
1222 1223

		/*
B
Bruce Momjian 已提交
1224 1225
		 * New entries are appended to the end, so if the entry is new we've
		 * reached the end of old entries.
1226
		 */
1227
		if (entry->cycle_ctr == mdckpt_cycle_ctr)
1228 1229 1230 1231 1232 1233
			break;

		/* Else assert we haven't missed it */
		Assert((CycleCtr) (entry->cycle_ctr + 1) == mdckpt_cycle_ctr);

		/* Unlink the file */
1234
		path = relpath(entry->rnode, MAIN_FORKNUM);
1235 1236 1237
		if (unlink(path) < 0)
		{
			/*
1238 1239 1240 1241 1242
			 * There's a race condition, when the database is dropped at the
			 * same time that we process the pending unlink requests. If the
			 * DROP DATABASE deletes the file before we do, we will get ENOENT
			 * here. rmtree() also has to ignore ENOENT errors, to deal with
			 * the possibility that we delete the file first.
1243 1244 1245 1246
			 */
			if (errno != ENOENT)
				ereport(WARNING,
						(errcode_for_file_access(),
1247
						 errmsg("could not remove file \"%s\": %m", path)));
1248 1249 1250 1251 1252 1253 1254 1255
		}
		pfree(path);

		pendingUnlinks = list_delete_first(pendingUnlinks);
		pfree(entry);
	}
}

1256
/*
1257 1258 1259 1260 1261 1262 1263
 * register_dirty_segment() -- Mark a relation segment as needing fsync
 *
 * If there is a local pending-ops table, just make an entry in it for
 * mdsync to process later.  Otherwise, try to pass off the fsync request
 * to the background writer process.  If that fails, just do the fsync
 * locally before returning (we expect this will not happen often enough
 * to be a performance problem).
1264
 */
1265
static void
1266
register_dirty_segment(SMgrRelation reln, ForkNumber forknum, MdfdVec *seg)
1267
{
1268 1269
	if (pendingOpsTable)
	{
1270
		/* push it into local pending-ops table */
1271
		RememberFsyncRequest(reln->smgr_rnode, forknum, seg->mdfd_segno);
1272 1273 1274
	}
	else
	{
1275
		if (ForwardFsyncRequest(reln->smgr_rnode, forknum, seg->mdfd_segno))
1276
			return;				/* passed it off successfully */
1277

1278
		ereport(DEBUG1,
1279
				(errmsg("could not forward fsync request because request queue is full")));
1280

1281 1282 1283
		if (FileSync(seg->mdfd_vfd) < 0)
			ereport(ERROR,
					(errcode_for_file_access(),
1284 1285
					 errmsg("could not fsync file \"%s\": %m",
							FilePathName(seg->mdfd_vfd))));
1286
	}
1287 1288
}

1289 1290 1291 1292 1293 1294 1295
/*
 * register_unlink() -- Schedule a file to be deleted after next checkpoint
 *
 * As with register_dirty_segment, this could involve either a local or
 * a remote pending-ops table.
 */
static void
1296
register_unlink(RelFileNodeBackend rnode)
1297 1298 1299 1300
{
	if (pendingOpsTable)
	{
		/* push it into local pending-ops table */
1301
		RememberFsyncRequest(rnode, MAIN_FORKNUM, UNLINK_RELATION_REQUEST);
1302 1303 1304 1305
	}
	else
	{
		/*
1306
		 * Notify the checkpointer about it.  If we fail to queue the request
1307 1308 1309 1310 1311 1312
		 * message, we have to sleep and try again, because we can't simply
		 * delete the file now.  Ugly, but hopefully won't happen often.
		 *
		 * XXX should we just leave the file orphaned instead?
		 */
		Assert(IsUnderPostmaster);
1313 1314
		while (!ForwardFsyncRequest(rnode, MAIN_FORKNUM,
									UNLINK_RELATION_REQUEST))
1315 1316 1317 1318
			pg_usleep(10000L);	/* 10 msec seems a good number */
	}
}

V
WAL  
Vadim B. Mikheev 已提交
1319
/*
1320
 * RememberFsyncRequest() -- callback from checkpointer side of fsync request
1321
 *
1322
 * We stuff most fsync requests into the local hash table for execution
1323
 * during the checkpointer's next checkpoint.  UNLINK requests go into a
1324
 * separate linked list, however, because they get processed separately.
1325
 *
1326 1327
 * The range of possible segment numbers is way less than the range of
 * BlockNumber, so we can reserve high values of segno for special purposes.
1328 1329 1330 1331
 * We define three:
 * - FORGET_RELATION_FSYNC means to cancel pending fsyncs for a relation
 * - FORGET_DATABASE_FSYNC means to cancel pending fsyncs for a whole database
 * - UNLINK_RELATION_REQUEST is a request to delete the file after the next
B
Bruce Momjian 已提交
1332
 *	 checkpoint.
1333 1334 1335 1336
 *
 * (Handling the FORGET_* requests is a tad slow because the hash table has
 * to be searched linearly, but it doesn't seem worth rethinking the table
 * structure for them.)
V
WAL  
Vadim B. Mikheev 已提交
1337
 */
1338
void
1339 1340
RememberFsyncRequest(RelFileNodeBackend rnode, ForkNumber forknum,
					 BlockNumber segno)
V
WAL  
Vadim B. Mikheev 已提交
1341
{
1342 1343
	Assert(pendingOpsTable);

1344 1345 1346 1347 1348 1349 1350 1351 1352
	if (segno == FORGET_RELATION_FSYNC)
	{
		/* Remove any pending requests for the entire relation */
		HASH_SEQ_STATUS hstat;
		PendingOperationEntry *entry;

		hash_seq_init(&hstat, pendingOpsTable);
		while ((entry = (PendingOperationEntry *) hash_seq_search(&hstat)) != NULL)
		{
1353
			if (RelFileNodeBackendEquals(entry->tag.rnode, rnode) &&
1354
				entry->tag.forknum == forknum)
1355
			{
1356 1357
				/* Okay, cancel this entry */
				entry->canceled = true;
1358 1359 1360 1361 1362 1363 1364 1365
			}
		}
	}
	else if (segno == FORGET_DATABASE_FSYNC)
	{
		/* Remove any pending requests for the entire database */
		HASH_SEQ_STATUS hstat;
		PendingOperationEntry *entry;
1366
		ListCell   *cell,
1367 1368
				   *prev,
				   *next;
1369

1370
		/* Remove fsync requests */
1371 1372 1373
		hash_seq_init(&hstat, pendingOpsTable);
		while ((entry = (PendingOperationEntry *) hash_seq_search(&hstat)) != NULL)
		{
1374
			if (entry->tag.rnode.node.dbNode == rnode.node.dbNode)
1375
			{
1376 1377
				/* Okay, cancel this entry */
				entry->canceled = true;
1378 1379
			}
		}
1380

1381 1382 1383 1384 1385 1386 1387
		/* Remove unlink requests */
		prev = NULL;
		for (cell = list_head(pendingUnlinks); cell; cell = next)
		{
			PendingUnlinkEntry *entry = (PendingUnlinkEntry *) lfirst(cell);

			next = lnext(cell);
1388
			if (entry->rnode.node.dbNode == rnode.node.dbNode)
1389 1390 1391 1392 1393 1394 1395
			{
				pendingUnlinks = list_delete_cell(pendingUnlinks, cell, prev);
				pfree(entry);
			}
			else
				prev = cell;
		}
1396
	}
1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
	else if (segno == UNLINK_RELATION_REQUEST)
	{
		/* Unlink request: put it in the linked list */
		MemoryContext oldcxt = MemoryContextSwitchTo(MdCxt);
		PendingUnlinkEntry *entry;

		entry = palloc(sizeof(PendingUnlinkEntry));
		entry->rnode = rnode;
		entry->cycle_ctr = mdckpt_cycle_ctr;

		pendingUnlinks = lappend(pendingUnlinks, entry);

		MemoryContextSwitchTo(oldcxt);
	}
1411
	else
1412
	{
1413
		/* Normal case: enter a request to fsync this segment */
1414 1415 1416 1417 1418 1419 1420
		PendingOperationTag key;
		PendingOperationEntry *entry;
		bool		found;

		/* ensure any pad bytes in the hash key are zeroed */
		MemSet(&key, 0, sizeof(key));
		key.rnode = rnode;
1421
		key.forknum = forknum;
1422 1423 1424 1425 1426 1427
		key.segno = segno;

		entry = (PendingOperationEntry *) hash_search(pendingOpsTable,
													  &key,
													  HASH_ENTER,
													  &found);
1428 1429 1430 1431 1432 1433
		/* if new or previously canceled entry, initialize it */
		if (!found || entry->canceled)
		{
			entry->canceled = false;
			entry->cycle_ctr = mdsync_cycle_ctr;
		}
B
Bruce Momjian 已提交
1434

1435 1436
		/*
		 * NB: it's intentional that we don't change cycle_ctr if the entry
B
Bruce Momjian 已提交
1437
		 * already exists.	The fsync request must be treated as old, even
1438 1439 1440 1441 1442 1443 1444
		 * though the new request will be satisfied too by any subsequent
		 * fsync.
		 *
		 * However, if the entry is present but is marked canceled, we should
		 * act just as though it wasn't there.  The only case where this could
		 * happen would be if a file had been deleted, we received but did not
		 * yet act on the cancel request, and the same relfilenode was then
B
Bruce Momjian 已提交
1445 1446
		 * assigned to a new file.	We mustn't lose the new request, but it
		 * should be considered new not old.
1447
		 */
1448
	}
1449 1450 1451
}

/*
1452
 * ForgetRelationFsyncRequests -- forget any fsyncs for a rel
1453 1454
 */
void
1455
ForgetRelationFsyncRequests(RelFileNodeBackend rnode, ForkNumber forknum)
1456 1457 1458 1459
{
	if (pendingOpsTable)
	{
		/* standalone backend or startup process: fsync state is local */
1460
		RememberFsyncRequest(rnode, forknum, FORGET_RELATION_FSYNC);
1461 1462
	}
	else if (IsUnderPostmaster)
1463 1464
	{
		/*
1465
		 * Notify the checkpointer about it.  If we fail to queue the revoke
1466 1467 1468
		 * message, we have to sleep and try again ... ugly, but hopefully
		 * won't happen often.
		 *
B
Bruce Momjian 已提交
1469 1470
		 * XXX should we CHECK_FOR_INTERRUPTS in this loop?  Escaping with an
		 * error would leave the no-longer-used file still present on disk,
1471
		 * which would be bad, so I'm inclined to assume that the checkpointer
B
Bruce Momjian 已提交
1472
		 * will always empty the queue soon.
1473
		 */
1474
		while (!ForwardFsyncRequest(rnode, forknum, FORGET_RELATION_FSYNC))
1475
			pg_usleep(10000L);	/* 10 msec seems a good number */
B
Bruce Momjian 已提交
1476

1477
		/*
1478
		 * Note we don't wait for the checkpointer to actually absorb the revoke
B
Bruce Momjian 已提交
1479
		 * message; see mdsync() for the implications.
1480 1481 1482
		 */
	}
}
1483

1484
/*
1485
 * ForgetDatabaseFsyncRequests -- forget any fsyncs and unlinks for a DB
1486 1487 1488 1489
 */
void
ForgetDatabaseFsyncRequests(Oid dbid)
{
1490
	RelFileNodeBackend rnode;
1491

1492 1493 1494 1495
	rnode.node.dbNode = dbid;
	rnode.node.spcNode = 0;
	rnode.node.relNode = 0;
	rnode.backend = InvalidBackendId;
1496 1497 1498 1499

	if (pendingOpsTable)
	{
		/* standalone backend or startup process: fsync state is local */
1500
		RememberFsyncRequest(rnode, InvalidForkNumber, FORGET_DATABASE_FSYNC);
1501 1502 1503 1504
	}
	else if (IsUnderPostmaster)
	{
		/* see notes in ForgetRelationFsyncRequests */
1505 1506
		while (!ForwardFsyncRequest(rnode, InvalidForkNumber,
									FORGET_DATABASE_FSYNC))
1507
			pg_usleep(10000L);	/* 10 msec seems a good number */
1508
	}
V
WAL  
Vadim B. Mikheev 已提交
1509 1510
}

1511

1512
/*
1513
 *	_fdvec_alloc() -- Make a MdfdVec object.
1514
 */
1515
static MdfdVec *
1516
_fdvec_alloc(void)
1517
{
1518
	return (MdfdVec *) MemoryContextAlloc(MdCxt, sizeof(MdfdVec));
V
Vadim B. Mikheev 已提交
1519 1520 1521
}

/*
1522 1523
 * Return the filename for the specified segment of the relation. The
 * returned string is palloc'd.
V
Vadim B. Mikheev 已提交
1524
 */
1525 1526
static char *
_mdfd_segpath(SMgrRelation reln, ForkNumber forknum, BlockNumber segno)
1527
{
B
Bruce Momjian 已提交
1528 1529
	char	   *path,
			   *fullpath;
1530

1531
	path = relpath(reln->smgr_rnode, forknum);
1532 1533 1534

	if (segno > 0)
	{
1535
		/* be sure we have enough space for the '.segno' */
1536
		fullpath = (char *) palloc(strlen(path) + 12);
1537
		sprintf(fullpath, "%s.%u", path, segno);
1538
		pfree(path);
1539 1540 1541 1542
	}
	else
		fullpath = path;

1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559
	return fullpath;
}

/*
 * Open the specified segment of the relation,
 * and make a MdfdVec object for it.  Returns NULL on failure.
 */
static MdfdVec *
_mdfd_openseg(SMgrRelation reln, ForkNumber forknum, BlockNumber segno,
			  int oflags)
{
	MdfdVec    *v;
	int			fd;
	char	   *fullpath;

	fullpath = _mdfd_segpath(reln, forknum, segno);

1560
	/* open the file */
1561
	fd = PathNameOpenFile(fullpath, O_RDWR | PG_BINARY | oflags, 0600);
1562

1563
	pfree(fullpath);
1564 1565

	if (fd < 0)
1566
		return NULL;
1567

1568 1569 1570
	if (reln->smgr_transient)
		FileSetTransient(fd);

1571
	/* allocate an mdfdvec entry for it */
1572
	v = _fdvec_alloc();
1573 1574 1575

	/* fill the entry */
	v->mdfd_vfd = fd;
1576
	v->mdfd_segno = segno;
1577
	v->mdfd_chain = NULL;
1578
	Assert(_mdnblocks(reln, forknum, v) <= ((BlockNumber) RELSEG_SIZE));
1579

1580
	/* all done */
1581
	return v;
1582
}
1583

N
Neil Conway 已提交
1584 1585
/*
 *	_mdfd_getseg() -- Find the segment of the relation holding the
1586 1587 1588
 *		specified block.
 *
 * If the segment doesn't exist, we ereport, return NULL, or create the
1589 1590
 * segment, according to "behavior".  Note: skipFsync is only used in the
 * EXTENSION_CREATE case.
N
Neil Conway 已提交
1591
 */
1592
static MdfdVec *
1593
_mdfd_getseg(SMgrRelation reln, ForkNumber forknum, BlockNumber blkno,
1594
			 bool skipFsync, ExtensionBehavior behavior)
1595
{
1596
	MdfdVec    *v = mdopen(reln, forknum, behavior);
1597
	BlockNumber targetseg;
1598
	BlockNumber nextsegno;
1599

1600
	if (!v)
1601
		return NULL;			/* only possible if EXTENSION_RETURN_NULL */
1602

1603 1604
	targetseg = blkno / ((BlockNumber) RELSEG_SIZE);
	for (nextsegno = 1; nextsegno <= targetseg; nextsegno++)
1605
	{
1606 1607
		Assert(nextsegno == v->mdfd_segno + 1);

1608
		if (v->mdfd_chain == NULL)
1609
		{
1610
			/*
B
Bruce Momjian 已提交
1611 1612 1613
			 * Normally we will create new segments only if authorized by the
			 * caller (i.e., we are doing mdextend()).	But when doing WAL
			 * recovery, create segments anyway; this allows cases such as
1614 1615 1616
			 * replaying WAL data that has a write into a high-numbered
			 * segment of a relation that was later deleted.  We want to go
			 * ahead and create the segments so we can finish out the replay.
1617
			 *
B
Bruce Momjian 已提交
1618 1619 1620 1621 1622
			 * We have to maintain the invariant that segments before the last
			 * active segment are of size RELSEG_SIZE; therefore, pad them out
			 * with zeroes if needed.  (This only matters if caller is
			 * extending the relation discontiguously, but that can happen in
			 * hash indexes.)
1623
			 */
1624 1625
			if (behavior == EXTENSION_CREATE || InRecovery)
			{
1626
				if (_mdnblocks(reln, forknum, v) < RELSEG_SIZE)
1627
				{
B
Bruce Momjian 已提交
1628
					char	   *zerobuf = palloc0(BLCKSZ);
1629

1630 1631
					mdextend(reln, forknum,
							 nextsegno * ((BlockNumber) RELSEG_SIZE) - 1,
1632
							 zerobuf, skipFsync);
1633 1634
					pfree(zerobuf);
				}
1635
				v->mdfd_chain = _mdfd_openseg(reln, forknum, +nextsegno, O_CREAT);
1636 1637 1638 1639
			}
			else
			{
				/* We won't create segment if not existent */
1640
				v->mdfd_chain = _mdfd_openseg(reln, forknum, nextsegno, 0);
1641
			}
1642
			if (v->mdfd_chain == NULL)
1643
			{
1644 1645
				if (behavior == EXTENSION_RETURN_NULL &&
					FILE_POSSIBLY_DELETED(errno))
1646
					return NULL;
1647 1648
				ereport(ERROR,
						(errcode_for_file_access(),
B
Bruce Momjian 已提交
1649 1650 1651
				   errmsg("could not open file \"%s\" (target block %u): %m",
						  _mdfd_segpath(reln, forknum, nextsegno),
						  blkno)));
1652
			}
1653 1654
		}
		v = v->mdfd_chain;
1655
	}
1656
	return v;
1657 1658
}

1659
/*
1660
 * Get number of blocks present in a single disk file
1661
 */
1662
static BlockNumber
1663
_mdnblocks(SMgrRelation reln, ForkNumber forknum, MdfdVec *seg)
1664
{
1665
	off_t		len;
1666

1667
	len = FileSeek(seg->mdfd_vfd, 0L, SEEK_END);
1668
	if (len < 0)
1669 1670
		ereport(ERROR,
				(errcode_for_file_access(),
1671 1672
				 errmsg("could not seek to end of file \"%s\": %m",
						FilePathName(seg->mdfd_vfd))));
1673 1674
	/* note that this calculation will ignore any partial block at EOF */
	return (BlockNumber) (len / BLCKSZ);
1675
}