pgsql: Harden Memoization code against broken data types

Поиск
Список
Период
Сортировка
От David Rowley
Тема pgsql: Harden Memoization code against broken data types
Дата
Msg-id E1nyjjy-003DjR-93@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Harden Memoization code against broken data types

Bug #17512 highlighted that a suitably broken data type could cause the
backend to crash if either the hash function or equality function were in
someway non-deterministic based on their input values.  Such a data type
could cause a crash of the backend due to some code which assumes that
we'll always find a hash table entry corresponding to an item in the
Memoize LRU list.

Here we remove the assumption that we'll always find the entry
corresponding to the given LRU list item and add run-time checks to verify
we have found the given item in the cache.

This is not a fix for bug #17512, but it will turn the crash reported by
that bug report into an internal ERROR.

Reported-by: Ales Zeleny
Reviewed-by: Tom Lane
Discussion: https://postgr.es/m/CAApHDvpxFSTwvoYWT7kmFVSZ9zLAeHb=S9vrz=RExMgSkQNWqw@mail.gmail.com
Backpatch-through: 14, where Memoize was added.

Branch
------
REL_14_STABLE

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

Modified Files
--------------
src/backend/executor/nodeMemoize.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)


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

Предыдущее
От: David Rowley
Дата:
Сообщение: pgsql: Harden Memoization code against broken data types
Следующее
От: Michael Paquier
Дата:
Сообщение: pgsql: Restructure pg_upgrade output directories for better idempotence