aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-07-11 12:37:51 +0200
committerKim Alvefur <zash@zash.se>2021-07-11 12:37:51 +0200
commitaf9ecb24b8d4dff2dd44f9d8c222cf82d518a752 (patch)
treeb2ccf041bb45511a5f6aab9da350a0091a3c03b3 /plugins
parentf9912b0dd78b70d33b34a0a63e5ed245446a9f06 (diff)
downloadprosody-af9ecb24b8d4dff2dd44f9d8c222cf82d518a752.tar.gz
prosody-af9ecb24b8d4dff2dd44f9d8c222cf82d518a752.zip
mod_s2s: Drop level of indentation by inverting a condition and early return
Nicer to get rid of a conditional that covers such a large portion of a pretty big function.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_s2s.lua120
1 files changed, 61 insertions, 59 deletions
diff --git a/plugins/mod_s2s.lua b/plugins/mod_s2s.lua
index c39087e0..a9d8745c 100644
--- a/plugins/mod_s2s.lua
+++ b/plugins/mod_s2s.lua
@@ -552,75 +552,77 @@ local stream_xmlns_attr = {xmlns='urn:ietf:params:xml:ns:xmpp-streams'};
-- bounce_reason: stanza error to pass to bounce_sendq because stream- and stanza errors are different
local function session_close(session, reason, remote_reason, bounce_reason)
local log = session.log or log;
- if session.conn then
- local conn = session.conn;
- conn:pause_writes(); -- until :close
- if session.notopen then
- if session.direction == "incoming" then
- session:open_stream(session.to_host, session.from_host);
- else
- session:open_stream(session.from_host, session.to_host);
- end
+ if not session.conn then
+ return
+ end
+
+ local conn = session.conn;
+ conn:pause_writes(); -- until :close
+ if session.notopen then
+ if session.direction == "incoming" then
+ session:open_stream(session.to_host, session.from_host);
+ else
+ session:open_stream(session.from_host, session.to_host);
end
+ end
- local this_host = session.direction == "incoming" and session.to_host or session.from_host
+ local this_host = session.direction == "incoming" and session.to_host or session.from_host
- if reason then -- nil == no err, initiated by us, false == initiated by remote
- local stream_error;
- local condition, text, extra
- if type(reason) == "string" then -- assume stream error
- condition = reason
- elseif type(reason) == "table" and not st.is_stanza(reason) then
- condition = reason.condition or "undefined-condition"
- text = reason.text
- extra = reason.extra
- end
- if condition then
- stream_error = st.stanza("stream:error"):tag(condition, stream_xmlns_attr):up();
- if text then
- stream_error:tag("text", stream_xmlns_attr):text(text):up();
- end
- if extra then
- stream_error:add_child(extra);
- end
- end
- if this_host and condition then
- m_closed_connections:with_labels(this_host, session.direction, condition):add(1)
+ if reason then -- nil == no err, initiated by us, false == initiated by remote
+ local stream_error;
+ local condition, text, extra
+ if type(reason) == "string" then -- assume stream error
+ condition = reason
+ elseif type(reason) == "table" and not st.is_stanza(reason) then
+ condition = reason.condition or "undefined-condition"
+ text = reason.text
+ extra = reason.extra
+ end
+ if condition then
+ stream_error = st.stanza("stream:error"):tag(condition, stream_xmlns_attr):up();
+ if text then
+ stream_error:tag("text", stream_xmlns_attr):text(text):up();
end
- if st.is_stanza(stream_error) then
- -- to and from are never unknown on outgoing connections
- log("debug", "Disconnecting %s->%s[%s], <stream:error> is: %s",
- session.from_host or "(unknown host)" or session.ip, session.to_host or "(unknown host)", session.type, reason);
- session.sends2s(stream_error);
+ if extra then
+ stream_error:add_child(extra);
end
- else
- m_closed_connections:with_labels(this_host, session.direction, reason == false and ":remote-choice" or ":local-choice"):add(1)
end
+ if this_host and condition then
+ m_closed_connections:with_labels(this_host, session.direction, condition):add(1)
+ end
+ if st.is_stanza(stream_error) then
+ -- to and from are never unknown on outgoing connections
+ log("debug", "Disconnecting %s->%s[%s], <stream:error> is: %s",
+ session.from_host or "(unknown host)" or session.ip, session.to_host or "(unknown host)", session.type, reason);
+ session.sends2s(stream_error);
+ end
+ else
+ m_closed_connections:with_labels(this_host, session.direction, reason == false and ":remote-choice" or ":local-choice"):add(1)
+ end
- session.sends2s("</stream:stream>");
- function session.sends2s() return false; end
+ session.sends2s("</stream:stream>");
+ function session.sends2s() return false; end
- -- luacheck: ignore 422/reason
- -- FIXME reason should be managed in a place common to c2s, s2s, bosh, component etc
- local reason = remote_reason or (reason and (reason.text or reason.condition)) or reason;
- session.log("info", "%s s2s stream %s->%s closed: %s", session.direction:gsub("^.", string.upper),
- session.from_host or "(unknown host)", session.to_host or "(unknown host)", reason or "stream closed");
+ -- luacheck: ignore 422/reason 412/reason
+ -- FIXME reason should be managed in a place common to c2s, s2s, bosh, component etc
+ local reason = remote_reason or (reason and (reason.text or reason.condition)) or reason;
+ session.log("info", "%s s2s stream %s->%s closed: %s", session.direction:gsub("^.", string.upper),
+ session.from_host or "(unknown host)", session.to_host or "(unknown host)", reason or "stream closed");
- conn:resume_writes();
+ conn:resume_writes();
- -- Authenticated incoming stream may still be sending us stanzas, so wait for </stream:stream> from remote
- if reason == nil and not session.notopen and session.direction == "incoming" then
- add_task(stream_close_timeout, function ()
- if not session.destroyed then
- session.log("warn", "Failed to receive a stream close response, closing connection anyway...");
- s2s_destroy_session(session, reason, bounce_reason);
- conn:close();
- end
- end);
- else
- s2s_destroy_session(session, reason, bounce_reason);
- conn:close(); -- Close immediately, as this is an outgoing connection or is not authed
- end
+ -- Authenticated incoming stream may still be sending us stanzas, so wait for </stream:stream> from remote
+ if reason == nil and not session.notopen and session.direction == "incoming" then
+ add_task(stream_close_timeout, function ()
+ if not session.destroyed then
+ session.log("warn", "Failed to receive a stream close response, closing connection anyway...");
+ s2s_destroy_session(session, reason, bounce_reason);
+ conn:close();
+ end
+ end);
+ else
+ s2s_destroy_session(session, reason, bounce_reason);
+ conn:close(); -- Close immediately, as this is an outgoing connection or is not authed
end
end