aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-12-05 02:02:57 +0000
committerMatthew Wild <mwild1@gmail.com>2008-12-05 02:02:57 +0000
commit7027c01125981f14eb4d117658036e20e0a8bccc (patch)
tree218b520b881b8cac75c206c8e1b58765066e7fa2 /core
parentd55671436960cebe411a500062319203d7fcdd5e (diff)
downloadprosody-7027c01125981f14eb4d117658036e20e0a8bccc.tar.gz
prosody-7027c01125981f14eb4d117658036e20e0a8bccc.zip
Disconnect with stream errors on bad XML, or invalid stream namespace
Diffstat (limited to 'core')
-rw-r--r--core/xmlhandlers.lua14
1 files changed, 8 insertions, 6 deletions
diff --git a/core/xmlhandlers.lua b/core/xmlhandlers.lua
index 2872a036..b4dd5479 100644
--- a/core/xmlhandlers.lua
+++ b/core/xmlhandlers.lua
@@ -57,9 +57,11 @@ function init_xmlhandlers(session, stream_callbacks)
local cb_streamopened = stream_callbacks.streamopened;
local cb_streamclosed = stream_callbacks.streamclosed;
- local cb_error = stream_callbacks.error or function (e) error("XML stream error: "..tostring(e)); end;
+ local cb_error = stream_callbacks.error or function (session, e) error("XML stream error: "..tostring(e)); end;
local cb_handlestanza = stream_callbacks.handlestanza;
+ local stream_ns = stream_callbacks.ns;
+
local stanza
function xml_handlers:StartElement(name, attr)
if stanza and #chardata > 0 then
@@ -89,18 +91,18 @@ function init_xmlhandlers(session, stream_callbacks)
if not stanza then --if we are not currently inside a stanza
if session.notopen then
- if name == "stream" then
+ if name == "stream" and curr_ns == stream_ns then
if cb_streamopened then
cb_streamopened(session, attr);
end
else
-- Garbage before stream?
- cb_error("no-stream");
+ cb_error(session, "no-stream");
end
return;
end
if curr_ns == "jabber:client" and name ~= "iq" and name ~= "presence" and name ~= "message" then
- cb_error("invalid-top-level-element");
+ cb_error(session, "invalid-top-level-element");
end
stanza = st.stanza(name, attr);
@@ -127,9 +129,9 @@ function init_xmlhandlers(session, stream_callbacks)
end
return;
elseif name == "error" then
- cb_error("stream-error", stanza);
+ cb_error(session, "stream-error", stanza);
else
- cb_error("parse-error", "unexpected-element-close", name);
+ cb_error(session, "parse-error", "unexpected-element-close", name);
end
end
if stanza and #chardata > 0 then