pgsql: Fix dangling-pointer problem in before-row update trigger proces

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix dangling-pointer problem in before-row update trigger proces
Дата
Msg-id E1PrhrS-0007uK-JZ@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix dangling-pointer problem in before-row update trigger processing.

ExecUpdate checked for whether ExecBRUpdateTriggers had returned a new
tuple value by seeing if the returned tuple was pointer-equal to the old
one.  But the "old one" was in estate->es_junkFilter's result slot, which
would be scribbled on if we had done an EvalPlanQual update in response to
a concurrent update of the target tuple; therefore we were comparing a
dangling pointer to a live one.  Given the right set of circumstances we
could get a false match, resulting in not forcing the tuple to be stored in
the slot we thought it was stored in.  In the case reported by Maxim Boguk
in bug #5798, this led to "cannot extract system attribute from virtual
tuple" failures when trying to do "RETURNING ctid".  I believe there is a
very-low-probability chance of more serious errors, such as generating
incorrect index entries based on the original rather than the
trigger-modified version of the row.

In HEAD, change all of ExecBRInsertTriggers, ExecIRInsertTriggers,
ExecBRUpdateTriggers, and ExecIRUpdateTriggers so that they continue to
have similar APIs.  In the back branches I just changed
ExecBRUpdateTriggers, since there is no bug in the ExecBRInsertTriggers
case.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/a210be772047575331fb6b0ab7b72043f81452ba

Modified Files
--------------
src/backend/commands/copy.c            |   29 +++---
src/backend/commands/trigger.c         |  155 ++++++++++++++++++++++++-------
src/backend/executor/nodeModifyTable.c |  103 ++++-----------------
src/include/commands/trigger.h         |   18 ++--
4 files changed, 161 insertions(+), 144 deletions(-)


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

Предыдущее
От: fxjr@pgfoundry.org (User Fxjr)
Дата:
Сообщение: npgsql - Npgsql2: NpgsqlConnector.CancelRequest leaks Connector.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix dangling-pointer problem in before-row update trigger proces