pgsql: Fix crash caused by EPQ happening with a before update trigger p

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: Fix crash caused by EPQ happening with a before update trigger p
Дата
Msg-id E1iGVFy-0001Jb-GT@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix crash caused by EPQ happening with a before update trigger present.

When ExecBRUpdateTriggers()'s GetTupleForTrigger() follows an EPQ
chain the former needs to run the result tuple through the junkfilter
again, and update the slot containing the new version of the tuple to
contain that new version. The input tuple may already be in the
junkfilter's output slot, which used to be OK - we don't need the
previous version anymore. Unfortunately ff11e7f4b9ae started to use
ExecCopySlot() to update newslot, and ExecCopySlot() doesn't support
copying a slot into itself, leading to a slot in a corrupt
state, which then can cause crashes or other symptoms.

Fix this by skipping the ExecCopySlot() when copying into itself.

While we could have easily made ExecCopySlot() handle that case, it
seems better to add an assert forbidding doing so instead. As the goal
of copying might be to make the contents of one slot independent from
another, it seems failure prone to handle doing so silently.

A follow-up commit will add tests for the obviously under-covered
combination of EPQ and triggers. Done as a separate commit as it might
make sense to backpatch them further than this bug.

Also remove confusion with confusing variable names for slots in
ExecBRDeleteTriggers() and ExecBRUpdateTriggers().

Bug: #16036
Reported-By: Антон Власов
Author: Andres Freund
Discussion: https://postgr.es/m/16036-28184c90d952fb7f@postgresql.org
Backpatch: 12-, where ff11e7f4b9ae was merged

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/d986d4e87f61c68f52c68ebc274960dc664b7b4e

Modified Files
--------------
src/backend/commands/trigger.c  | 44 +++++++++++++++++++++--------------------
src/include/executor/tuptable.h |  1 +
2 files changed, 24 insertions(+), 21 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: Use a fd opened for read/write when syncing slots during startup
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: Fix crash caused by EPQ happening with a before update trigger p