]> granicus.if.org Git - postgresql/commit
Fix SSL test for libpq connection parameter channel_binding
authorMichael Paquier <michael@paquier.xyz>
Mon, 30 Sep 2019 04:11:31 +0000 (13:11 +0900)
committerMichael Paquier <michael@paquier.xyz>
Mon, 30 Sep 2019 04:11:31 +0000 (13:11 +0900)
commita12c75a1048295f03cf85533d6dcab5072ba262b
tree8905b0152d6a5b53555aeb52c4f485670313b228
parent7acf8a876b7704ae162fc4f48ff97f4290fb0a61
Fix SSL test for libpq connection parameter channel_binding

When compiling Postgres with OpenSSL 1.0.1 or older versions, SCRAM's
channel binding cannot be supported as X509_get_signature_nid() is
needed, which causes a regression test with channel_binding='require' to
fail as the server cannot publish SCRAM-SHA-256-PLUS as SASL mechanism
over an SSL connection.

Fix the issue by using a method similar to c3d41cc, making the test
result conditional.  The test passes if X509_get_signature_nid() is
present, and when missing we test for a connection failure.  Testing a
connection failure is more useful than skipping the test as we should
fail the connection if channel binding is required by the client but the
server does not support it.

Reported-by: Tom Lane, Michael Paquier
Author: Michael Paquier
Discussion: https://postgr.es/m/20190927024457.GA8485@paquier.xyz
Discussion: https://postgr.es/m/24857.1569775891@sss.pgh.pa.us
src/test/ssl/t/002_scram.pl