pgsql: Add stack-overflow guards in set-operation planning.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Add stack-overflow guards in set-operation planning.
Дата
Msg-id E1efrrX-0000fH-Tg@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Add stack-overflow guards in set-operation planning.

create_plan_recurse lacked any stack depth check.  This is not per
our normal coding rules, but I'd supposed it was safe because earlier
planner processing is more complex and presumably should eat more
stack.  But bug #15033 from Andrew Grossman shows this isn't true,
at least not for queries having the form of a many-thousand-way
INTERSECT stack.

Further testing showed that recurse_set_operations is also capable
of being crashed in this way, since it likewise will recurse to the
bottom of a parsetree before calling any support functions that
might themselves contain any stack checks.  However, its stack
consumption is only perhaps a third of create_plan_recurse's.

It's possible that this particular problem with create_plan_recurse can
only manifest in 9.6 and later, since before that we didn't build a Path
tree for set operations.  But having seen this example, I now have no
faith in the proposition that create_plan_recurse doesn't need a stack
check, so back-patch to all supported branches.

Discussion: https://postgr.es/m/20180127050845.28812.58244@wrigleys.postgresql.org

Branch
------
REL_10_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/1b2a3860d3ea81825e9bbad2c7dbf66db87445c1

Modified Files
--------------
src/backend/optimizer/plan/createplan.c | 3 +++
src/backend/optimizer/prep/prepunion.c  | 3 +++
2 files changed, 6 insertions(+)


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

Предыдущее
От: Simon Riggs
Дата:
Сообщение: pgsql: Default monitoring roles - errata
Следующее
От: Amit Langote
Дата:
Сообщение: Re: pgsql: Local partitioned indexes