X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=plugins%2Fmod_tls.lua;h=706b42c948429d279b48220e7f570f9402bda0f8;hb=b0f948eaa5c166121d8b5754c708a38f624b415d;hp=61b8d6d96c5b771403cac771ad4185d67bb06f55;hpb=049dddf5d1b9fbf49dfce0f24413501d22633be5;p=prosody.git diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua index 61b8d6d9..706b42c9 100644 --- a/plugins/mod_tls.lua +++ b/plugins/mod_tls.lua @@ -11,15 +11,18 @@ local st = require "util.stanza"; local xmlns_stream = 'http://etherx.jabber.org/streams'; local xmlns_starttls = 'urn:ietf:params:xml:ns:xmpp-tls'; -local secure_auth_only = module:get_option("require_encryption"); -local secure_s2s_only = module:get_option("require_s2s_encryption"); +local secure_auth_only = module:get_option("c2s_require_encryption") or module:get_option("require_encryption"); +local secure_s2s_only = module:get_option("s2s_require_encryption"); module:add_handler("c2s_unauthed", "starttls", xmlns_starttls, function (session, stanza) if session.conn.starttls then session.send(st.stanza("proceed", { xmlns = xmlns_starttls })); session:reset_stream(); - session.conn.starttls(); + if session.host and hosts[session.host].ssl_ctx_in then + session.conn:set_sslctx(hosts[session.host].ssl_ctx_in); + end + session.conn:starttls(); session.log("info", "TLS negotiation started..."); session.secure = false; else @@ -33,7 +36,10 @@ module:add_handler("s2sin_unauthed", "starttls", xmlns_starttls, if session.conn.starttls then session.sends2s(st.stanza("proceed", { xmlns = xmlns_starttls })); session:reset_stream(); - session.conn.starttls(); + if session.to_host and hosts[session.to_host].ssl_ctx_in then + session.conn:set_sslctx(hosts[session.to_host].ssl_ctx_in); + end + session.conn:starttls(); session.log("info", "TLS negotiation started for incoming s2s..."); session.secure = false; else @@ -56,11 +62,10 @@ module:add_event_hook("stream-features", end end); -module:add_event_hook("s2s-stream-features", - function (session, features) - -- This hook is possibly called once per host (at least if the - -- remote server does not specify a to/from. - if session.to_host and session.conn.starttls and not features:child_with_ns(xmlns_starttls) then +module:hook("s2s-stream-features", + function (data) + local session, features = data.session, data.features; + if session.to_host and session.conn.starttls then features:tag("starttls", starttls_attr):up(); if secure_s2s_only then features:tag("required"):up():up(); @@ -74,7 +79,7 @@ module:add_event_hook("s2s-stream-features", module:hook_stanza(xmlns_stream, "features", function (session, stanza) module:log("debug", "Received features element"); - if stanza:child_with_ns(xmlns_starttls) then + if session.conn.starttls and stanza:child_with_ns(xmlns_starttls) then module:log("%s is offering TLS, taking up the offer...", session.to_host); session.sends2s(""); return true; @@ -86,6 +91,7 @@ module:hook_stanza(xmlns_starttls, "proceed", module:log("debug", "Proceeding with TLS on s2sout..."); local format, to_host, from_host = string.format, session.to_host, session.from_host; session:reset_stream(); - session.conn.starttls(true); + session.conn:starttls(true); + session.secure = false; return true; end);