pgsql: Prevent stack overflow in container-type functions.

Поиск
Список
Период
Сортировка
От Noah Misch
Тема pgsql: Prevent stack overflow in container-type functions.
Дата
Msg-id E1Zj6Sb-0005dH-5M@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Prevent stack overflow in container-type functions.

A range type can name another range type as its subtype, and a record
type can bear a column of another record type.  Consequently, functions
like range_cmp() and record_recv() are recursive.  Functions at risk
include operator family members and referents of pg_type regproc
columns.  Treat as recursive any such function that looks up and calls
the same-purpose function for a record column type or the range subtype.
Back-patch to 9.0 (all supported versions).

An array type's element type is never itself an array type, so array
functions are unaffected.  Recursion depth proportional to array
dimensionality, found in array_dim_to_jsonb(), is fine thanks to MAXDIM.

Branch
------
REL9_4_STABLE

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

Modified Files
--------------
src/backend/utils/adt/rangetypes.c |   13 +++++++++++++
src/backend/utils/adt/rowtypes.c   |   13 +++++++++++++
2 files changed, 26 insertions(+)


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

Предыдущее
От: Noah Misch
Дата:
Сообщение: pgsql: Prevent stack overflow in container-type functions.
Следующее
От: Noah Misch
Дата:
Сообщение: pgsql: Prevent stack overflow in query-type functions.