]> granicus.if.org Git - postgresql/commit
Avoid testing tuple visibility without buffer lock in RI_FKey_check().
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 23 Oct 2016 19:01:24 +0000 (15:01 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 23 Oct 2016 19:01:24 +0000 (15:01 -0400)
commit5beb73b49598ff255c3d085d27d72bf28c8551b0
tree7045ba8c7231a7d0723010a54db3a7a47c75d39e
parentdc04be21d655c06ead19247c0240c684ce03b9d1
Avoid testing tuple visibility without buffer lock in RI_FKey_check().

Despite the argumentation I wrote in commit 7a2fe85b0, it's unsafe to do
this, because in corner cases it's possible for HeapTupleSatisfiesSelf
to try to set hint bits on the target tuple; and at least since 8.2 we
have required the buffer content lock to be held while setting hint bits.

The added regression test exercises one such corner case.  Unpatched, it
causes an assertion failure in assert-enabled builds, or otherwise would
cause a hint bit change in a buffer we don't hold lock on, which given
the right race condition could result in checksum failures or other data
consistency problems.  The odds of a problem in the field are probably
pretty small, but nonetheless back-patch to all supported branches.

Report: <19391.1477244876@sss.pgh.pa.us>
src/backend/utils/adt/ri_triggers.c
src/test/regress/expected/foreign_key.out
src/test/regress/sql/foreign_key.sql