pgsql: Hold interrupts while running dsm_detach() callbacks. - Mailing list pgsql-committers

From Thomas Munro
Subject pgsql: Hold interrupts while running dsm_detach() callbacks.
Date
Msg-id E1lBShg-00068A-9D@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Hold interrupts while running dsm_detach() callbacks.

While cleaning up after a parallel query or parallel index creation that
created temporary files, we could be interrupted by a statement timeout.
The error handling path would then fail to clean up the files when it
ran dsm_detach() again, because the callback was already popped off the
list.  Prevent this hazard by holding interrupts while the cleanup code
runs.

Thanks to Heikki Linnakangas for this suggestion, and also to Kyotaro
Horiguchi, Masahiko Sawada, Justin Pryzby and Tom Lane for discussion of
this and earlier ideas on how to fix the problem.

Back-patch to all supported releases.

Reported-by: Justin Pryzby <pryzby@telsasoft.com>
Discussion: https://postgr.es/m/20191212180506.GR2082@telsasoft.com

Branch
------
REL_12_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/840eda04ebc99ce211ffd11946a59ad43c42bfa6

Modified Files
--------------
src/backend/storage/ipc/dsm.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Thomas Munro
Date:
Subject: pgsql: Hold interrupts while running dsm_detach() callbacks.
Next
From: Thomas Munro
Date:
Subject: pgsql: Hold interrupts while running dsm_detach() callbacks.