diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-05-11 01:53:32 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-05-11 01:53:32 +0100 |
commit | 703e7dde18717b1f0adc4891d39d288aa4258444 (patch) | |
tree | c6d3dd80f6be503871411f837d01ca82f344457e | |
parent | 0b4567a6f194544d51d8574cf94f2f06056e83d3 (diff) | |
parent | bbf9d411b846c78408bb4429ebe2dcf3f71d27b2 (diff) | |
download | prosody-703e7dde18717b1f0adc4891d39d288aa4258444.tar.gz prosody-703e7dde18717b1f0adc4891d39d288aa4258444.zip |
Merge with Maranda
-rw-r--r-- | plugins/mod_dialback.lua | 18 | ||||
-rw-r--r-- | plugins/muc/muc.lib.lua | 6 |
2 files changed, 21 insertions, 3 deletions
diff --git a/plugins/mod_dialback.lua b/plugins/mod_dialback.lua index 8f69b55a..c2392502 100644 --- a/plugins/mod_dialback.lua +++ b/plugins/mod_dialback.lua @@ -15,6 +15,7 @@ local log = module._log; local st = require "util.stanza"; local sha256_hash = require "util.hashes".sha256; +local nameprep = require "util.encodings".stringprep.nameprep; local xmlns_stream = "http://etherx.jabber.org/streams"; @@ -79,8 +80,21 @@ module:hook("stanza/jabber:server:dialback:result", function(event) -- COMPAT: ejabberd, gmail and perhaps others do not always set 'to' and 'from' -- on streams. We fill in the session's to/from here instead. - if not origin.from_host then origin.from_host = from; end - if not origin.to_host then origin.to_host = to; end + if not origin.from_host then + origin.from_host = nameprep(attr.from); + if not origin.from_host then + origin.log("debug", "We need to know where to connect but remote server blindly refuses to tell us and to comply to specs, closing connection."); + origin:close("invalid-from"); + end + end + if not origin.to_host then + origin.to_host = nameprep(attr.to); + end + + if not origin.from_host and not origin.to_host then + origin.log("debug", "Improper addressing supplied, no to or from?"); + origin:close("improper-addressing"); + end origin.log("debug", "asking %s if key %s belongs to them", from, stanza[1]); module:fire_event("route/remote", { diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index 9be1736f..0203df26 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -744,7 +744,11 @@ function room_mt:handle_to_room(origin, stanza) -- presence changes and groupcha local xmlns = stanza.tags[1] and stanza.tags[1].attr.xmlns; if stanza.name == "iq" then if xmlns == "http://jabber.org/protocol/disco#info" and type == "get" then - origin.send(self:get_disco_info(stanza)); + if stanza.tags[1].attr.node then + origin.send(st.error_reply(stanza, "cancel", "feature-not-implemented")); + else + origin.send(self:get_disco_info(stanza)); + end elseif xmlns == "http://jabber.org/protocol/disco#items" and type == "get" then origin.send(self:get_disco_items(stanza)); elseif xmlns == "http://jabber.org/protocol/muc#admin" then |