Fix possible cache invalidation failure in ReceiveSharedInvalidMessages.
authorTom Lane <[email protected]>
Mon, 5 May 2014 18:43:46 +0000 (14:43 -0400)
committerTom Lane <[email protected]>
Mon, 5 May 2014 18:43:46 +0000 (14:43 -0400)
commitc8fbeeb45ef835a5e513ad167fd984baa7dc00d8
tree4e3ecbdc1edaa437b48c6818625f9c9f8622b98c
parent5788052f3c6b2ac3d2bd761cbb333e50dad8670c
Fix possible cache invalidation failure in ReceiveSharedInvalidMessages.

Commit fad153ec45299bd4d4f29dec8d9e04e2f1c08148 modified sinval.c to reduce
the number of calls into sinvaladt.c (which require taking a shared lock)
by keeping a local buffer of collected-but-not-yet-processed messages.
However, if processing of the last message in a batch resulted in a
recursive call to ReceiveSharedInvalidMessages, we could overwrite that
message with a new one while the outer invalidation function was still
working on it.  This would be likely to lead to invalidation of the wrong
cache entry, allowing subsequent processing to use stale cache data.
The fix is just to make a local copy of each message while we're processing
it.

Spotted by Andres Freund.  Back-patch to 8.4 where the bug was introduced.
src/backend/storage/ipc/sinval.c