pgsql: Use a fd opened for read/write when syncing slots during startup - Mailing list pgsql-committers

From Andres Freund
Subject pgsql: Use a fd opened for read/write when syncing slots during startup
Date
Msg-id E1YmrQ9-0007YZ-W7@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Use a fd opened for read/write when syncing slots during startup.

Some operating systems, including the reporter's windows, return EBADFD
or similar when fsync() is invoked on a O_RDONLY file descriptor.
Unfortunately RestoreSlotFromDisk() does exactly that; which causes
failures after restarts in at least some scenarios.

If you hit the bug the error message will be something like
ERROR: could not fsync file "pg_replslot/$name/state": Bad file descriptor

Simply use O_RDWR instead of O_RDONLY when opening the relevant file
descriptor to fix the bug.  Unfortunately I have no way of verifying the
fix, but we've seen similar problems in the past.

This bug goes back to 9.4 where slots were introduced. Backpatch
accordingly.

Reported-By: Patrice Drolet
Bug: #13143:
Discussion: 20150424101006.2556.60897@wrigleys.postgresql.org

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/dfbaed459754e71e01bb0cc90a12802bba3f9786

Modified Files
--------------
src/backend/replication/slot.c |    2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re: pgsql: Add transforms feature
Next
From: Andres Freund
Date:
Subject: pgsql: Use a fd opened for read/write when syncing slots during startup