pgsql: Detect integer overflow while computing new array dimensions.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Detect integer overflow while computing new array dimensions.
Дата
Msg-id E1r01z8-004CBA-Dc@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Detect integer overflow while computing new array dimensions.

array_set_element() and related functions allow an array to be
enlarged by assigning to subscripts outside the current array bounds.
While these places were careful to check that the new bounds are
allowable, they neglected to consider the risk of integer overflow
in computing the new bounds.  In edge cases, we could compute new
bounds that are invalid but get past the subsequent checks,
allowing bad things to happen.  Memory stomps that are potentially
exploitable for arbitrary code execution are possible, and so is
disclosure of server memory.

To fix, perform the hazardous computations using overflow-detecting
arithmetic routines, which fortunately exist in all still-supported
branches.

The test cases added for this generate (after patching) errors that
mention the value of MaxArraySize, which is platform-dependent.
Rather than introduce multiple expected-files, use psql's VERBOSITY
parameter to suppress the printing of the message text.  v11 psql
lacks that parameter, so omit the tests in that branch.

Our thanks to Pedro Gallegos for reporting this problem.

Security: CVE-2023-5869

Branch
------
REL_14_STABLE

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

Modified Files
--------------
src/backend/utils/adt/arrayfuncs.c   | 85 ++++++++++++++++++++++++++++--------
src/backend/utils/adt/arrayutils.c   |  6 ---
src/include/utils/array.h            |  7 +++
src/test/regress/expected/arrays.out | 17 ++++++++
src/test/regress/sql/arrays.sql      | 19 ++++++++
5 files changed, 110 insertions(+), 24 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Compute aggregate argument types correctly in transformAggregate
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Last-minute updates for release notes.