pgsql: Check for unbounded authentication exchanges in libpq.

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема pgsql: Check for unbounded authentication exchanges in libpq.
Дата
Msg-id E1pUv0m-000Bm9-GL@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Check for unbounded authentication exchanges in libpq.

A couple of code paths in CONNECTION_AWAITING_RESPONSE will eagerly read
bytes off a connection that should be closed. Don't let a misbehaving
server chew up client resources here; a v2 error can't be infinitely
long, and a v3 error should be bounded by its original message length.

For the existing error_return cases, I added some additional error
messages for symmetry with the new ones, and cleaned up some message
rot.

Author: Jacob Champion
Discussion: https://www.postgresql.org/message-id/8e729daf-7d71-6965-9687-8bc0630599b3%40timescale.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/5e044471a1aa8714d4fc59ea0d599009aaa05278

Modified Files
--------------
src/interfaces/libpq/fe-connect.c | 51 ++++++++++++++++++++++++++++++---------
1 file changed, 39 insertions(+), 12 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix some issues with wrong placement of pseudo-constant quals.
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: Add static assertion ensuring sizeof(ExprEvalStep) <= 64 bytes