diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-03-09 11:16:47 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-03-09 11:16:47 +0900 |
commit | f9264d1524baa19e4a0528f033681ef16f61b137 (patch) | |
tree | 846eccd93ae1cc4e88f72d8ceea447c1f71facc7 /doc/src | |
parent | d4545dc19b8ea670bf62e06d22b0e4e6fcb45153 (diff) | |
download | postgresql-f9264d1524baa19e4a0528f033681ef16f61b137.tar.gz postgresql-f9264d1524baa19e4a0528f033681ef16f61b137.zip |
Remove support for SSL compression
PostgreSQL disabled compression as of e3bdb2d and the documentation
recommends against using it since. Additionally, SSL compression has
been disabled in OpenSSL since version 1.1.0, and was disabled in many
distributions long before that. The most recent TLS version, TLSv1.3,
disallows compression at the protocol level.
This commit removes the feature itself, removing support for the libpq
parameter sslcompression (parameter still listed for compatibility
reasons with existing connection strings, just ignored), and removes
the equivalent field in pg_stat_ssl and de facto PgBackendSSLStatus.
Note that, on top of removing the ability to activate compression by
configuration, compression is actively disabled in both frontend and
backend to avoid overrides from local configurations.
A TAP test is added for deprecated SSL parameters to check after
backwards compatibility.
Bump catalog version.
Author: Daniel Gustafsson
Reviewed-by: Peter Eisentraut, Magnus Hagander, Michael Paquier
Discussion: https://postgr.es/m/7E384D48-11C5-441B-9EC3-F7DB1F8518F6@yesql.se
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/libpq.sgml | 33 | ||||
-rw-r--r-- | doc/src/sgml/monitoring.sgml | 10 |
2 files changed, 2 insertions, 41 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 05532793142..6d2e86a1f59 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -1635,24 +1635,7 @@ postgresql://%2Fvar%2Flib%2Fpostgresql/dbname <term><literal>sslcompression</literal></term> <listitem> <para> - If set to 1, data sent over SSL connections will be compressed. If - set to 0, compression will be disabled. The default is 0. This - parameter is ignored if a connection without SSL is made. - </para> - - <para> - SSL compression is nowadays considered insecure and its use is no - longer recommended. <productname>OpenSSL</productname> 1.1.0 disables - compression by default, and many operating system distributions - disable it in prior versions as well, so setting this parameter to on - will not have any effect if the server does not accept compression. - </para> - - <para> - If security is not a primary concern, compression can improve - throughput if the network is the bottleneck. Disabling compression - can improve response time and throughput if CPU performance is the - limiting factor. + Ignored (formerly, this specified whether to attempt SSL compression). </para> </listitem> </varlistentry> @@ -2545,9 +2528,7 @@ const char *PQsslAttribute(const PGconn *conn, const char *attribute_name); <term><literal>compression</literal></term> <listitem> <para> - If SSL compression is in use, returns the name of the compression - algorithm, or "on" if compression is used but the algorithm is - not known. If compression is not in use, returns "off". + SSL compression is no longer supported, always returns "off". </para> </listitem> </varlistentry> @@ -7185,16 +7166,6 @@ myEventProc(PGEventId evtId, void *evtInfo, void *passThrough) <listitem> <para> <indexterm> - <primary><envar>PGSSLCOMPRESSION</envar></primary> - </indexterm> - <envar>PGSSLCOMPRESSION</envar> behaves the same as the <xref - linkend="libpq-connect-sslcompression"/> connection parameter. - </para> - </listitem> - - <listitem> - <para> - <indexterm> <primary><envar>PGSSLCERT</envar></primary> </indexterm> <envar>PGSSLCERT</envar> behaves the same as the <xref diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 3513e127b78..53692c0020b 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -3067,16 +3067,6 @@ SELECT pid, wait_event_type, wait_event FROM pg_stat_activity WHERE wait_event i <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>compression</structfield> <type>boolean</type> - </para> - <para> - True if SSL compression is in use, false if not, - or NULL if SSL is not in use on this connection - </para></entry> - </row> - - <row> - <entry role="catalog_table_entry"><para role="column_definition"> <structfield>client_dn</structfield> <type>text</type> </para> <para> |