diff options
author | Kim Alvefur <zash@zash.se> | 2016-12-13 18:15:17 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-12-13 18:15:17 +0100 |
commit | 57db768fd06598a62f156e8ce45afa798d8d5269 (patch) | |
tree | a9e59e3c8fba4c4967beb53eb5690135075ae802 | |
parent | ca89197fe9e68f0f37c50c1ff123b7b90d765aa5 (diff) | |
download | prosody-57db768fd06598a62f156e8ce45afa798d8d5269.tar.gz prosody-57db768fd06598a62f156e8ce45afa798d8d5269.zip |
core.sessionmanager, mod_saslauth: Introduce intermediate session type for authenticated but unbound sessions so that resource binding is not treated as a normal stanza
-rw-r--r-- | core/sessionmanager.lua | 5 | ||||
-rw-r--r-- | plugins/mod_saslauth.lua | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/core/sessionmanager.lua b/core/sessionmanager.lua index c8856634..75e54b4f 100644 --- a/core/sessionmanager.lua +++ b/core/sessionmanager.lua @@ -108,7 +108,7 @@ local function make_authenticated(session, username) if not username or #username == 0 then return nil, "Invalid username"; end session.username = username; if session.type == "c2s_unauthed" then - session.type = "c2s"; + session.type = "c2s_unbound"; end session.log("info", "Authenticated as %s@%s", username or "(unknown)", session.host or "(unknown)"); return true; @@ -176,6 +176,9 @@ local function bind_resource(session, resource) session.full_jid = session.username .. '@' .. session.host .. '/' .. resource; hosts[session.host].sessions[session.username].sessions[resource] = session; full_sessions[session.full_jid] = session; + if session.type == "c2s_unbound" then + session.type = "c2s"; + end local err; session.roster, err = rm_load_roster(session.username, session.host); diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua index bb36600b..9917c303 100644 --- a/plugins/mod_saslauth.lua +++ b/plugins/mod_saslauth.lua @@ -273,7 +273,7 @@ module:hook("s2s-stream-features", function(event) end end); -module:hook("iq/self/urn:ietf:params:xml:ns:xmpp-bind:bind", function(event) +module:hook("stanza/iq/urn:ietf:params:xml:ns:xmpp-bind:bind", function(event) local origin, stanza = event.origin, event.stanza; local resource; if stanza.attr.type == "set" then |