net.http.server: Properly handle persistent connections
[prosody.git] / plugins / mod_component.lua
index 5b59ca70eb659eee717c997c4ed542bf39e63b25..16084a78a69b08f8bf79221f67bfdaec85fba69b 100644 (file)
--- Prosody IM v0.4
--- Copyright (C) 2008-2009 Matthew Wild
--- Copyright (C) 2008-2009 Waqas Hussain
+-- Prosody IM
+-- Copyright (C) 2008-2010 Matthew Wild
+-- Copyright (C) 2008-2010 Waqas Hussain
 -- 
 -- This project is MIT/X11 licensed. Please see the
 -- COPYING file in the source package for more information.
 --
 
-if module:get_host_type() ~= "component" then
-       error("Don't load mod_component manually, it should be for a component, please see http://prosody.im/doc/components", 0);
-end
+module:set_global();
 
 local t_concat = table.concat;
 
-local connlisteners = require "net.connlisteners";
-local cm_register_component = require "core.componentmanager".register_component;
-local uuid_gen = require "util.uuid".generate;
+local logger = require "util.logger";
 local sha1 = require "util.hashes".sha1;
-local st = stanza;
-local init_xmlhandlers = require "core.xmlhandlers";
+local st = require "util.stanza";
+
+local jid_split = require "util.jid".split;
+local new_xmpp_stream = require "util.xmppstream".new;
+local uuid_gen = require "util.uuid".generate;
+
+local core_process_stanza = prosody.core_process_stanza;
 
-local sessions = {};
 
 local log = module._log;
 
-local component_listener = { default_port = 5347; default_mode = "*a"; default_interface = config.get("*", "core", "component_interface") or "127.0.0.1" };
+local sessions = module:shared("sessions");
+
+function module.add_host(module)
+       if module:get_host_type() ~= "component" then
+               error("Don't load mod_component manually, it should be for a component, please see http://prosody.im/doc/components", 0);
+       end
+       
+       local env = module.environment;
+       env.connected = false;
+
+       local send;
+
+       local function on_destroy(session, err)
+               env.connected = false;
+               send = nil;
+               session.on_destroy = nil;
+       end
+       
+       -- Handle authentication attempts by component
+       local function handle_component_auth(event)
+               local session, stanza = event.origin, event.stanza;
+               
+               if session.type ~= "component_unauthed" then return; end
+       
+               if (not session.host) or #stanza.tags > 0 then
+                       (session.log or log)("warn", "Invalid component handshake for host: %s", session.host);
+                       session:close("not-authorized");
+                       return true;
+               end
+               
+               local secret = module:get_option("component_secret");
+               if not secret then
+                       (session.log or log)("warn", "Component attempted to identify as %s, but component_secret is not set", session.host);
+                       session:close("not-authorized");
+                       return true;
+               end
+               
+               local supplied_token = t_concat(stanza);
+               local calculated_token = sha1(session.streamid..secret, true);
+               if supplied_token:lower() ~= calculated_token:lower() then
+                       module:log("info", "Component authentication failed for %s", session.host);
+                       session:close{ condition = "not-authorized", text = "Given token does not match calculated token" };
+                       return true;
+               end
+               
+               if env.connected then
+                       module:log("error", "Second component attempted to connect, denying connection");
+                       session:close{ condition = "conflict", text = "Component already connected" };
+                       return true;
+               end
+               
+               env.connected = true;
+               send = session.send;
+               session.on_destroy = on_destroy;
+               session.component_validate_from = module:get_option_boolean("validate_from_addresses", true);
+               session.type = "component";
+               module:log("info", "External component successfully authenticated");
+               session.send(st.stanza("handshake"));
+       
+               return true;
+       end
+       module:hook("stanza/jabber:component:accept:handshake", handle_component_auth);
+
+       -- Handle stanzas addressed to this component
+       local function handle_stanza(event)
+               local stanza = event.stanza;
+               if send then
+                       stanza.attr.xmlns = nil;
+                       send(stanza);
+               else
+                       if stanza.name == "iq" and stanza.attr.type == "get" and stanza.attr.to == module.host then
+                               local query = stanza.tags[1];
+                               local node = query.attr.node;
+                               if query.name == "query" and query.attr.xmlns == "http://jabber.org/protocol/disco#info" and (not node or node == "") then
+                                       local name = module:get_option_string("name");
+                                       if name then
+                                               event.origin.send(st.reply(stanza):tag("query", { xmlns = "http://jabber.org/protocol/disco#info" })
+                                                       :tag("identity", { category = "component", type = "generic", name = module:get_option_string("name", "Prosody") }))
+                                               return true;
+                                       end
+                               end
+                       end
+                       module:log("warn", "Component not connected, bouncing error for: %s", stanza:top_tag());
+                       if stanza.attr.type ~= "error" and stanza.attr.type ~= "result" then
+                               event.origin.send(st.error_reply(stanza, "wait", "service-unavailable", "Component unavailable"));
+                       end
+               end
+               return true;
+       end
+       
+       module:hook("iq/bare", handle_stanza, -1);
+       module:hook("message/bare", handle_stanza, -1);
+       module:hook("presence/bare", handle_stanza, -1);
+       module:hook("iq/full", handle_stanza, -1);
+       module:hook("message/full", handle_stanza, -1);
+       module:hook("presence/full", handle_stanza, -1);
+       module:hook("iq/host", handle_stanza, -1);
+       module:hook("message/host", handle_stanza, -1);
+       module:hook("presence/host", handle_stanza, -1);
+end
+
+--- Network and stream part ---
 
 local xmlns_component = 'jabber:component:accept';
 
---- Callbacks/data for xmlhandlers to handle streams for us ---
+local listener = {};
+
+--- Callbacks/data for xmppstream to handle streams for us ---
+
+local stream_callbacks = { default_ns = xmlns_component };
 
-local stream_callbacks = { stream_tag = "http://etherx.jabber.org/streams|stream", default_ns = xmlns_component };
+local xmlns_xmpp_streams = "urn:ietf:params:xml:ns:xmpp-streams";
 
 function stream_callbacks.error(session, error, data, data2)
-       log("warn", "Error processing component stream: "..tostring(error));
+       if session.destroyed then return; end
+       module:log("warn", "Error processing component stream: %s", tostring(error));
        if error == "no-stream" then
                session:close("invalid-namespace");
-       elseif error == "xml-parse-error" and data == "unexpected-element-close" then
-               session.log("debug", "Unexpected close of '%s' tag", data2);
-               session:close("xml-not-well-formed");
-       else
-               session.log("debug", "External component %s XML parse error: %s", tostring(session.host), tostring(error));
-               print(data, debug.traceback())
-               session:close("xml-not-well-formed");
+       elseif error == "parse-error" then
+               session.log("warn", "External component %s XML parse error: %s", tostring(session.host), tostring(data));
+               session:close("not-well-formed");
+       elseif error == "stream-error" then
+               local condition, text = "undefined-condition";
+               for child in data:children() do
+                       if child.attr.xmlns == xmlns_xmpp_streams then
+                               if child.name ~= "text" then
+                                       condition = child.name;
+                               else
+                                       text = child:get_text();
+                               end
+                               if condition ~= "undefined-condition" and text then
+                                       break;
+                               end
+                       end
+               end
+               text = condition .. (text and (" ("..text..")") or "");
+               session.log("info", "Session closed by remote with error: %s", text);
+               session:close(nil, text);
        end
 end
 
 function stream_callbacks.streamopened(session, attr)
-       if config.get(attr.to, "core", "component_module") ~= "component" then
-               -- Trying to act as a component domain which 
-               -- hasn't been configured
+       if not hosts[attr.to] or not hosts[attr.to].modules.component then
                session:close{ condition = "host-unknown", text = tostring(attr.to).." does not match any configured external components" };
                return;
        end
-       
-       -- Store the original host (this is used for config, etc.)
-       session.user = attr.to;
-       -- Set the host for future reference
-       session.host = config.get(attr.to, "core", "component_address") or attr.to;
-       -- Note that we don't create the internal component 
-       -- until after the external component auths successfully
-
+       session.host = attr.to;
        session.streamid = uuid_gen();
        session.notopen = nil;
-       
+       -- Return stream header
+       session.send("<?xml version='1.0'?>");
        session.send(st.stanza("stream:stream", { xmlns=xmlns_component,
                        ["xmlns:stream"]='http://etherx.jabber.org/streams', id=session.streamid, from=session.host }):top_tag());
-
 end
 
 function stream_callbacks.streamclosed(session)
+       session.log("debug", "Received </stream:stream>");
+       session:close();
 end
 
-local core_process_stanza = core_process_stanza;
-
 function stream_callbacks.handlestanza(session, stanza)
        -- Namespaces are icky.
-       log("warn", "Handing stanza with name %s", stanza.name);
-       if stanza.name ~= "handshake" then
-               return core_process_stanza(session, stanza);
-       else
-               handle_component_auth(session, stanza);
-       end
-end
-
---- Handle authentication attempts by components
-function handle_component_auth(session, stanza)
-       if (not session.host) or #stanza.tags > 0 then
-               session:close("not-authorized");
-               return;
-       end
-       
-       local secret = config.get(session.user, "core", "component_secret");
-       if not secret then
-               log("warn", "Component attempted to identify as %s, but component_password is not set", session.user);
-               session:close("not-authorized");
-               return;
-       end
-       
-       local supplied_token = t_concat(stanza);
-       local calculated_token = sha1(session.streamid..secret, true);
-       if supplied_token:lower() ~= calculated_token:lower() then
-               session:close{ condition = "not-authorized", text = "Given token does not match calculated token" };
-               return;
+       if not stanza.attr.xmlns and stanza.name == "handshake" then
+               stanza.attr.xmlns = xmlns_component;
        end
-       
-       
-       -- Authenticated now
-       
-       -- If component not already created for this host, create one now
-       if not hosts[session.host].connected then
-               local send = session.send;
-               session.component_session = cm_register_component(session.host, function (_, data) return send(data); end);
-               hosts[session.host].connected = true;
-       else
-               log("error", "Multiple components bound to the same address, first one wins (TODO: Implement stanza distribution)");
+       if not stanza.attr.xmlns or stanza.attr.xmlns == "jabber:client" then
+               local from = stanza.attr.from;
+               if from then
+                       if session.component_validate_from then
+                               local _, domain = jid_split(stanza.attr.from);
+                               if domain ~= session.host then
+                                       -- Return error
+                                       session.log("warn", "Component sent stanza with missing or invalid 'from' address");
+                                       session:close{
+                                               condition = "invalid-from";
+                                               text = "Component tried to send from address <"..tostring(from)
+                                                          .."> which is not in domain <"..tostring(session.host)..">";
+                                       };
+                                       return;
+                               end
+                       end
+               else
+                       stanza.attr.from = session.host; -- COMPAT: Strictly we shouldn't allow this
+               end
+               if not stanza.attr.to then
+                       session.log("warn", "Rejecting stanza with no 'to' address");
+                       session.send(st.error_reply(stanza, "modify", "bad-request", "Components MUST specify a 'to' address on stanzas"));
+                       return;
+               end
        end
-       
-       -- Signal successful authentication
-       session.send(st.stanza("handshake"));
+       return core_process_stanza(session, stanza);
 end
 
-module:add_handler("component", "handshake", xmlns_component, handle_component_auth);
-
 --- Closing a component connection
 local stream_xmlns_attr = {xmlns='urn:ietf:params:xml:ns:xmpp-streams'};
+local default_stream_attr = { ["xmlns:stream"] = "http://etherx.jabber.org/streams", xmlns = stream_callbacks.default_ns, version = "1.0", id = "" };
 local function session_close(session, reason)
-       local log = session.log or log;
+       if session.destroyed then return; end
        if session.conn then
+               if session.notopen then
+                       session.send("<?xml version='1.0'?>");
+                       session.send(st.stanza("stream:stream", default_stream_attr):top_tag());
+               end
                if reason then
                        if type(reason) == "string" then -- assume stream error
-                               log("info", "Disconnecting component, <stream:error> is: %s", reason);
+                               module:log("info", "Disconnecting component, <stream:error> is: %s", reason);
                                session.send(st.stanza("stream:error"):tag(reason, {xmlns = 'urn:ietf:params:xml:ns:xmpp-streams' }));
                        elseif type(reason) == "table" then
                                if reason.condition then
@@ -140,77 +239,80 @@ local function session_close(session, reason)
                                        if reason.extra then
                                                stanza:add_child(reason.extra);
                                        end
-                                       log("info", "Disconnecting component, <stream:error> is: %s", tostring(stanza));
+                                       module:log("info", "Disconnecting component, <stream:error> is: %s", tostring(stanza));
                                        session.send(stanza);
                                elseif reason.name then -- a stanza
-                                       log("info", "Disconnecting component, <stream:error> is: %s", tostring(reason));
+                                       module:log("info", "Disconnecting component, <stream:error> is: %s", tostring(reason));
                                        session.send(reason);
                                end
                        end
                end
                session.send("</stream:stream>");
-               session.conn.close();
-               component_listener.disconnect(session.conn, "stream error");
+               session.conn:close();
+               listener.ondisconnect(session.conn, "stream error");
        end
 end
 
 --- Component connlistener
-function component_listener.listener(conn, data)
-       local session = sessions[conn];
-       if not session then
-               local _send = conn.write;
-               session = { type = "component", conn = conn, send = function (data) return _send(tostring(data)); end };
-               sessions[conn] = session;
 
-               -- Logging functions --
-               
-               local conn_name = "xep114-"..tostring(conn):match("[a-f0-9]+$");
-               session.log = logger.init(conn_name);
-               session.close = session_close;
-               
-               session.log("info", "Incoming XEP-0114 connection");
-               
-               local parser = lxp.new(init_xmlhandlers(session, stream_callbacks), "|");
-               session.parser = parser;
-               
+function listener.onconnect(conn)
+       local _send = conn.write;
+       local session = { type = "component_unauthed", conn = conn, send = function (data) return _send(conn, tostring(data)); end };
+
+       -- Logging functions --
+       local conn_name = "jcp"..tostring(conn):match("[a-f0-9]+$");
+       session.log = logger.init(conn_name);
+       session.close = session_close;
+       
+       session.log("info", "Incoming Jabber component connection");
+       
+       local stream = new_xmpp_stream(session, stream_callbacks);
+       session.stream = stream;
+       
+       session.notopen = true;
+       
+       function session.reset_stream()
                session.notopen = true;
-               
-               function session.data(conn, data)
-                       local ok, err = parser:parse(data);
-                       if ok then return; end
-                       session:close("xml-not-well-formed");
-               end
-               
-               session.dispatch_stanza = stream_callbacks.handlestanza;
-               
+               session.stream:reset();
        end
-       if data then
-               session.data(conn, data);
+
+       function session.data(conn, data)
+               local ok, err = stream:feed(data);
+               if ok then return; end
+               module:log("debug", "Received invalid XML (%s) %d bytes: %s", tostring(err), #data, data:sub(1, 300):gsub("[\r\n]+", " "):gsub("[%z\1-\31]", "_"));
+               session:close("not-well-formed");
        end
-end
        
-function component_listener.disconnect(conn, err)
+       session.dispatch_stanza = stream_callbacks.handlestanza;
+
+       sessions[conn] = session;
+end
+function listener.onincoming(conn, data)
+       local session = sessions[conn];
+       session.data(conn, data);
+end
+function listener.ondisconnect(conn, err)
        local session = sessions[conn];
        if session then
                (session.log or log)("info", "component disconnected: %s (%s)", tostring(session.host), tostring(err));
-               if session.host then
-                       if session.component then
-                               deregister_component(session.host);
+               if session.on_destroy then session:on_destroy(err); end
+               sessions[conn] = nil;
+               for k in pairs(session) do
+                       if k ~= "log" and k ~= "close" then
+                               session[k] = nil;
                        end
                end
-               sessions[conn]  = nil;
+               session.destroyed = true;
                session = nil;
-               collectgarbage("collect");
        end
 end
 
-connlisteners.register('component', component_listener);
-
-module:add_event_hook("server-started", 
-       function ()
-               if net_activate_ports then
-                       net_activate_ports("component_ports", "component", {5437}, "tcp");
-               else
-                       error("No net_activate_ports: Using an incompatible version of Prosody?");
-               end
-       end);
+module:provides("net", {
+       name = "component";
+       private = true;
+       listener = listener;
+       default_port = 5347;
+       multiplex = {
+               pattern = "^<.*:stream.*%sxmlns%s*=%s*(['\"])jabber:component%1.*>";
+       };
+});