# HG changeset patch # User Matthew Wild # Date 1698329679 -3600 # Node ID 38c95544b7eec6b4a77e2856683013bc48d01562 # Parent 9a371b046e584f5d0736a341f032ad418016dcbf mod_saslauth, mod_c2s: Disable tls-server-end-point channel binding by default This channel binding method is now enabled when a hash is manually set in the config, or it attempts to discover the hash automatically if the value is the special string "auto". A related change to mod_c2s prevents complicated certificate lookups in the client connection hot path - this work now happens only when this channel binding method is used. I'm not aware of anything else that uses ssl_cfg (vs ssl_ctx). Rationale for disabling by default: - Minor performance impact in automatic cert detection - This method is weak against a leaked/stolen private key (other methods such as 'tls-exporter' would not be compromised in such a case) Rationale for keeping the implementation: - For some deployments, this may be the only method available (e.g. due to TLS offloading in another process/server). diff -r 9a371b046e58 -r 38c95544b7ee plugins/mod_c2s.lua --- a/plugins/mod_c2s.lua Thu Oct 26 14:40:48 2023 +0100 +++ b/plugins/mod_c2s.lua Thu Oct 26 15:14:39 2023 +0100 @@ -11,11 +11,9 @@ local add_task = require "prosody.util.timer".add_task; local new_xmpp_stream = require "prosody.util.xmppstream".new; local nameprep = require "prosody.util.encodings".stringprep.nameprep; -local certmanager = require "prosody.core.certmanager"; local sessionmanager = require "prosody.core.sessionmanager"; local statsmanager = require "prosody.core.statsmanager"; local st = require "prosody.util.stanza"; -local pm_get_tls_config_at = require "core.portmanager".get_tls_config_at; local sm_new_session, sm_destroy_session = sessionmanager.new_session, sessionmanager.destroy_session; local uuid_generate = require "prosody.util.uuid".generate; local async = require "prosody.util.async"; @@ -309,11 +307,6 @@ if conn:ssl() then session.secure = true; session.encrypted = true; - - local server = conn:server(); - local tls_config = pm_get_tls_config_at(server:ip(), server:serverport()); - local autocert = certmanager.find_host_cert(session.conn:socket():getsniname()); - session.ssl_cfg = autocert or tls_config; session.ssl_ctx = conn:sslctx(); -- Check if TLS compression is used diff -r 9a371b046e58 -r 38c95544b7ee plugins/mod_saslauth.lua --- a/plugins/mod_saslauth.lua Thu Oct 26 14:40:48 2023 +0100 +++ b/plugins/mod_saslauth.lua Thu Oct 26 15:14:39 2023 +0100 @@ -19,6 +19,8 @@ local hashes = require"util.hashes"; local ssl = require "ssl"; -- FIXME Isolate LuaSec from the rest of the code +local certmanager = require "core.certmanager"; +local pm_get_tls_config_at = require "prosody.core.portmanager".get_tls_config_at; local usermanager_get_sasl_handler = require "prosody.core.usermanager".get_sasl_handler; local secure_auth_only = module:get_option_boolean("c2s_require_encryption", module:get_option_boolean("require_encryption", true)); @@ -330,17 +332,31 @@ else log("debug", "Channel binding 'tls-unique' not supported (by LuaSec?)"); end - local certfile = origin.ssl_cfg and origin.ssl_cfg.certificate; - -- FIXME .ssl_cfg is set by mod_tls and thus only available with starttls - if tls_server_end_point_hash then + + local certfile; + if tls_server_end_point_hash == "auto" then + local ssl_cfg = origin.ssl_cfg; + if not ssl_cfg then + local server = origin.conn:server(); + local tls_config = pm_get_tls_config_at(server:ip(), server:serverport()); + local autocert = certmanager.find_host_cert(origin.conn:socket():getsniname()); + ssl_cfg = autocert or tls_config; + end + + certfile = ssl_cfg and ssl_cfg.certificate; + if certfile then + log("debug", "Channel binding 'tls-server-end-point' can be offered based on the certificate used"); + sasl_handler:add_cb_handler("tls-server-end-point", tls_server_end_point); + channel_bindings:add("tls-server-end-point"); + else + log("debug", "Channel binding 'tls-server-end-point' set to 'auto' but cannot determine cert"); + end + elseif tls_server_end_point_hash then log("debug", "Channel binding 'tls-server-end-point' can be offered with the configured certificate hash"); sasl_handler:add_cb_handler("tls-server-end-point", tls_server_end_point); channel_bindings:add("tls-server-end-point"); - elseif certfile then - log("debug", "Channel binding 'tls-server-end-point' can be offered based on the certificate used"); - sasl_handler:add_cb_handler("tls-server-end-point", tls_server_end_point); - channel_bindings:add("tls-server-end-point"); end + sasl_handler["userdata"] = { ["tls-unique"] = origin.conn; ["tls-exporter"] = origin.conn;