Skip to content

Commit 637668f

Browse files
committed
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
1 parent b83dcf7 commit 637668f

File tree

1 file changed

+6
-1
lines changed
  • src/backend/storage/ipc

1 file changed

+6
-1
lines changed

src/backend/storage/ipc/dsm.c

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,8 +771,12 @@ dsm_detach(dsm_segment *seg)
771771
/*
772772
* Invoke registered callbacks. Just in case one of those callbacks
773773
* throws a further error that brings us back here, pop the callback
774-
* before invoking it, to avoid infinite error recursion.
774+
* before invoking it, to avoid infinite error recursion. Don't allow
775+
* interrupts while running the individual callbacks in non-error code
776+
* paths, to avoid leaving cleanup work unfinished if we're interrupted by
777+
* a statement timeout or similar.
775778
*/
779+
HOLD_INTERRUPTS();
776780
while (!slist_is_empty(&seg->on_detach))
777781
{
778782
slist_node *node;
@@ -788,6 +792,7 @@ dsm_detach(dsm_segment *seg)
788792

789793
function(seg, arg);
790794
}
795+
RESUME_INTERRUPTS();
791796

792797
/*
793798
* Try to remove the mapping, if one exists. Normally, there will be, but

0 commit comments

Comments
 (0)