2022-02-10 01:19:39 -05:00
|
|
|
local secure_interfaces = module:get_option_set("secure_interfaces", { "127.0.0.1", "::1" });
|
|
|
|
|
|
|
|
local function mark_secure(event, expected_type)
|
|
|
|
local session = event.origin;
|
|
|
|
if session.type ~= expected_type then return; end
|
|
|
|
local socket = session.conn:socket();
|
|
|
|
if not socket.getsockname then
|
|
|
|
module:log("debug", "Unable to determine local address of incoming connection");
|
|
|
|
return;
|
|
|
|
end
|
|
|
|
local localip = socket:getsockname();
|
|
|
|
if secure_interfaces:contains(localip) then
|
|
|
|
module:log("debug", "Marking session from %s to %s as secure", session.ip or "[?]", localip);
|
|
|
|
session.secure = true;
|
|
|
|
session.conn.starttls = false;
|
|
|
|
else
|
|
|
|
module:log("debug", "Not marking session from %s to %s as secure", session.ip or "[?]", localip);
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module:hook("stream-features", function (event)
|
|
|
|
mark_secure(event, "c2s_unauthed");
|
2023-05-18 20:30:10 -04:00
|
|
|
end, 25000);
|
2022-02-10 01:19:39 -05:00
|
|
|
|
|
|
|
module:hook("s2s-stream-features", function (event)
|
|
|
|
mark_secure(event, "s2sin_unauthed");
|
2023-05-18 20:30:10 -04:00
|
|
|
end, 25000);
|
|
|
|
|
|
|
|
-- todo: is this the best place to do this hook?
|
|
|
|
-- this hook marks incoming s2s as secure so we offer SASL EXTERNAL on it
|
|
|
|
module:hook("s2s-stream-features", function(event)
|
|
|
|
local session, features = event.origin, event.features;
|
|
|
|
if session.type == "s2sin_unauthed" then
|
|
|
|
module:log("debug", "marking hook session.type '%s' secure with validated cert!", session.type);
|
|
|
|
session.secure = true;
|
|
|
|
session.cert_chain_status = "valid";
|
|
|
|
session.cert_identity_status = "valid";
|
|
|
|
end
|
|
|
|
end, 3000);
|