pgsql: Disable ssl renegotiation by default.

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: Disable ssl renegotiation by default.
Дата
Msg-id E1ZKBA0-00051a-Qy@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Disable ssl renegotiation by default.

While postgres' use of SSL renegotiation is a good idea in theory, it
turned out to not work well in practice. The specification and openssl's
implementation of it have lead to several security issues. Postgres' use
of renegotiation also had its share of bugs.

Additionally OpenSSL has a bunch of bugs around renegotiation, reported
and open for years, that regularly lead to connections breaking with
obscure error messages. We tried increasingly complex workarounds to get
around these bugs, but we didn't find anything complete.

Since these connection breakages often lead to hard to debug problems,
e.g. spuriously failing base backups and significant latency spikes when
synchronous replication is used, we have decided to change the default
setting for ssl renegotiation to 0 (disabled) in the released
backbranches and remove it entirely in 9.5 and master..

Author: Michael Paquier, with changes by me
Discussion: 20150624144148.GQ4797@alap3.anarazel.de
Backpatch: 9.0-9.4; 9.5 and master get a different patch

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/444b2ebee97fdbabbb32ec7b4ebd1b6f40638ec5

Modified Files
--------------
doc/src/sgml/config.sgml                      |   10 +++++++++-
src/backend/utils/misc/guc.c                  |    2 +-
src/backend/utils/misc/postgresql.conf.sample |    2 +-
3 files changed, 11 insertions(+), 3 deletions(-)


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

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: Disable ssl renegotiation by default.
Следующее
От: Joe Conway
Дата:
Сообщение: pgsql: Plug RLS related information leak in pg_stats view.