aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2010-08-16 17:33:12 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2010-08-16 17:33:12 +0000
commitf7f92b3fa45f309cf545783bd0a32af0709f1357 (patch)
tree0b640414e688f84be436045070a962362e49d378
parentc22e53d010b83119f6d7d46c1c8a187de5e3fe89 (diff)
downloadpostgresql-f7f92b3fa45f309cf545783bd0a32af0709f1357.tar.gz
postgresql-f7f92b3fa45f309cf545783bd0a32af0709f1357.zip
Arrange to fsync the contents of lockfiles (both postmaster.pid and the
socket lockfile) when writing them. The lack of an fsync here may well explain two different reports we've seen of corrupted lockfile contents, which doesn't particularly bother the running server but can prevent a new server from starting if the old one crashes. Per suggestion from Alvaro. Back-patch to all supported versions.
-rw-r--r--src/backend/utils/init/miscinit.c27
1 files changed, 24 insertions, 3 deletions
diff --git a/src/backend/utils/init/miscinit.c b/src/backend/utils/init/miscinit.c
index 36518212104..e488f5d05e2 100644
--- a/src/backend/utils/init/miscinit.c
+++ b/src/backend/utils/init/miscinit.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/init/miscinit.c,v 1.159.2.2 2009/12/09 21:58:29 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/init/miscinit.c,v 1.159.2.3 2010/08/16 17:33:12 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -873,6 +873,9 @@ CreateLockFile(const char *filename, bool amPostmaster,
* admin) but has left orphan backends behind. Check for this by
* looking to see if there is an associated shmem segment that is
* still in use.
+ *
+ * Note: because postmaster.pid is written in two steps, we might not
+ * find the shmem ID values in it; we can't treat that as an error.
*/
if (isDDLock)
{
@@ -937,7 +940,18 @@ CreateLockFile(const char *filename, bool amPostmaster,
(errcode_for_file_access(),
errmsg("could not write lock file \"%s\": %m", filename)));
}
- if (close(fd))
+ if (pg_fsync(fd) != 0)
+ {
+ int save_errno = errno;
+
+ close(fd);
+ unlink(filename);
+ errno = save_errno;
+ ereport(FATAL,
+ (errcode_for_file_access(),
+ errmsg("could not write lock file \"%s\": %m", filename)));
+ }
+ if (close(fd) != 0)
{
int save_errno = errno;
@@ -1098,7 +1112,14 @@ RecordSharedMemoryInLockFile(unsigned long id1, unsigned long id2)
close(fd);
return;
}
- if (close(fd))
+ if (pg_fsync(fd) != 0)
+ {
+ ereport(LOG,
+ (errcode_for_file_access(),
+ errmsg("could not write to file \"%s\": %m",
+ DIRECTORY_LOCK_FILE)));
+ }
+ if (close(fd) != 0)
{
ereport(LOG,
(errcode_for_file_access(),