pgsql: Make wal_compression PGC_SUSET rather than PGC_USERSET.

Поиск
Список
Период
Сортировка
От Fujii Masao
Тема pgsql: Make wal_compression PGC_SUSET rather than PGC_USERSET.
Дата
Msg-id E1ZDBvi-0003jK-JA@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Make wal_compression PGC_SUSET rather than PGC_USERSET.

When enabling wal_compression, there is a risk to leak data similarly to
the BREACH and CRIME attacks on SSL where the compression ratio of
a full page image gives a hint of what is the existing data of this page.
This vulnerability is quite cumbersome to exploit in practice, but doable.

So this patch makes wal_compression PGC_SUSET in order to prevent
non-superusers from enabling it and exploiting the vulnerability while
DBA thinks the risk very seriously and disables it in postgresql.conf.

Back-patch to 9.5 where wal_compression was introduced.

Branch
------
REL9_5_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/19a65458159ca5f46d8ac154e62273fa2a8cf13f

Modified Files
--------------
doc/src/sgml/config.sgml     |    1 +
src/backend/utils/misc/guc.c |    2 +-
2 files changed, 2 insertions(+), 1 deletion(-)


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

Предыдущее
От: Fujii Masao
Дата:
Сообщение: pgsql: Make wal_compression PGC_SUSET rather than PGC_USERSET.
Следующее
От: Fujii Masao
Дата:
Сообщение: pgsql: Fix obsolete comment regarding NOTICE message level.