]> granicus.if.org Git - postgresql/commit
Avoid crashing when we have problems unlinking files post-commit.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 20 Dec 2011 20:00:41 +0000 (15:00 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 20 Dec 2011 20:00:41 +0000 (15:00 -0500)
commita63a7a5b091f8b833169476e8de18100fb1cb73d
treeb20cbd133d894d84b14ba7b345e5fda5fd476205
parentbb4cfebd64cb43b9002e6a748dd8d2a2eed8204b
Avoid crashing when we have problems unlinking files post-commit.

smgrdounlink takes care to not throw an ERROR if it fails to unlink
something, but that caution was rendered useless by commit
3396000684b41e7e9467d1abc67152b39e697035, which put an smgrexists call in
front of it; smgrexists *does* throw error if anything looks funny, such
as getting a permissions error from trying to open the file.  If that
happens post-commit, you get a PANIC, and what's worse the same logic
appears in the WAL replay code, so the database even fails to restart.

Restore the intended behavior by removing the smgrexists call --- it isn't
accomplishing anything that we can't do better by adjusting mdunlink's
ideas of whether it ought to warn about ENOENT or not.

Per report from Joseph Shraibman of unrecoverable crash after trying to
drop a table whose FSM fork had somehow gotten chmod'd to 000 permissions.
Backpatch to 8.4, where the bogus coding was introduced.
src/backend/access/transam/twophase.c
src/backend/access/transam/xact.c
src/backend/catalog/storage.c
src/backend/storage/smgr/md.c