]> granicus.if.org Git - postgresql/commit
Fix race in dsm_attach() when handles are reused.
authorThomas Munro <tmunro@postgresql.org>
Thu, 14 Feb 2019 21:19:11 +0000 (10:19 +1300)
committerThomas Munro <tmunro@postgresql.org>
Fri, 15 Feb 2019 00:54:27 +0000 (13:54 +1300)
commitbd195071fd2be49392bf1993397f638d96315ee0
tree97189f6c705221dfe6d9b3956a18876cc6775d86
parent350cdcd5e6dd505454435af8d7640a4b5042fcfd
Fix race in dsm_attach() when handles are reused.

DSM handle values can be reused as soon as the underlying shared memory
object has been destroyed.  That means that for a brief moment we
might have two DSM slots with the same handle.  While trying to attach,
if we encounter a slot with refcnt == 1, meaning that it is currently
being destroyed, we should continue our search in case the same handle
exists in another slot.

The race manifested as a rare "dsa_area could not attach to segment"
error, and was more likely in 10 and 11 due to the lack of distinct
seed for random() in parallel workers.  It was made very unlikely in
in master by commit 197e4af9, and older releases don't usually create
new DSM segments in background workers so it was also unlikely there.

This fixes the root cause of bug report #15585, in which the error
could also sometimes result in a self-deadlock in the error path.
It's not yet clear if further changes are needed to avoid that failure
mode.

Back-patch to 9.4, where dsm.c arrived.

Author: Thomas Munro
Reported-by: Justin Pryzby, Sergei Kornilov
Discussion: https://postgr.es/m/20190207014719.GJ29720@telsasoft.com
Discussion: https://postgr.es/m/15585-324ff6a93a18da46@postgresql.org
src/backend/storage/ipc/dsm.c