aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-05-04 19:57:05 +0100
committerMatthew Wild <mwild1@gmail.com>2009-05-04 19:57:05 +0100
commit2fff09895975e5b2fb3d0aee38c2f652c6029e15 (patch)
treef0e16c01357473480d90a6d4726094fbb3aa30ec /net
parent9817a326507ae8127365578adfac7a9074fe48c1 (diff)
parentef5e994b1f4303d7940194fc980f5b5e94654c76 (diff)
downloadprosody-2fff09895975e5b2fb3d0aee38c2f652c6029e15.tar.gz
prosody-2fff09895975e5b2fb3d0aee38c2f652c6029e15.zip
Merge with 0.4
Diffstat (limited to 'net')
-rw-r--r--net/http.lua1
-rw-r--r--net/httpserver.lua3
-rw-r--r--net/xmppcomponent_listener.lua171
3 files changed, 172 insertions, 3 deletions
diff --git a/net/http.lua b/net/http.lua
index 24828ffe..b39cc6fb 100644
--- a/net/http.lua
+++ b/net/http.lua
@@ -15,7 +15,6 @@ local tonumber, tostring, pairs, xpcall, select, debug_traceback, char =
local log = require "util.logger".init("http");
local print = function () end
-local urlcodes = setmetatable({}, { __index = function (t, k) t[k] = char(tonumber("0x"..k)); return t[k]; end });
local urlencode = function (s) return s and (s:gsub("%W", function (c) return string.format("%%%02x", c:byte()); end)); end
module "http"
diff --git a/net/httpserver.lua b/net/httpserver.lua
index 0ecf84ea..12328b29 100644
--- a/net/httpserver.lua
+++ b/net/httpserver.lua
@@ -8,10 +8,9 @@ local connlisteners_get = require "net.connlisteners".get;
local listener;
local t_insert, t_concat = table.insert, table.concat;
-local s_match, s_gmatch, s_char = string.match, string.gmatch;
+local s_match, s_gmatch = string.match, string.gmatch;
local tonumber, tostring, pairs = tonumber, tostring, pairs;
-local urlcodes = setmetatable({}, { __index = function (t, k) t[k] = s_char(tonumber("0x"..k)); return t[k]; end });
local urlencode = function (s) return s and (s:gsub("%W", function (c) return string.format("%%%x", c:byte()); end)); end
local log = require "util.logger".init("httpserver");
diff --git a/net/xmppcomponent_listener.lua b/net/xmppcomponent_listener.lua
new file mode 100644
index 00000000..03675e19
--- /dev/null
+++ b/net/xmppcomponent_listener.lua
@@ -0,0 +1,171 @@
+-- Prosody IM v0.4
+-- Copyright (C) 2008-2009 Matthew Wild
+-- Copyright (C) 2008-2009 Waqas Hussain
+--
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
+
+
+local hosts = _G.hosts;
+
+local t_concat = table.concat;
+
+local lxp = require "lxp";
+local logger = require "util.logger";
+local config = require "core.configmanager";
+local eventmanager = require "core.eventmanager";
+local connlisteners = require "net.connlisteners";
+local cm_register_component = require "core.componentmanager".register_component;
+local cm_deregister_component = require "core.componentmanager".deregister_component;
+local uuid_gen = require "util.uuid".generate;
+local sha1 = require "util.hashes".sha1;
+local st = require "util.stanza";
+local init_xmlhandlers = require "core.xmlhandlers";
+
+local sessions = {};
+
+local log = logger.init("componentlistener");
+
+local component_listener = { default_port = 5347; default_mode = "*a"; default_interface = config.get("*", "core", "component_interface") or "127.0.0.1" };
+
+local xmlns_component = 'jabber:component:accept';
+
+--- Callbacks/data for xmlhandlers to handle streams for us ---
+
+local stream_callbacks = { stream_tag = "http://etherx.jabber.org/streams|stream", default_ns = xmlns_component };
+
+function stream_callbacks.error(session, error, data, data2)
+ log("warn", "Error processing component stream: "..tostring(error));
+ if error == "no-stream" then
+ session:close("invalid-namespace");
+ elseif error == "xml-parse-error" and data == "unexpected-element-close" then
+ session.log("warn", "Unexpected close of '%s' tag", data2);
+ session:close("xml-not-well-formed");
+ else
+ session.log("warn", "External component %s XML parse error: %s", tostring(session.host), tostring(error));
+ session:close("xml-not-well-formed");
+ 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
+ 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.streamid = uuid_gen();
+ session.notopen = nil;
+
+ 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.send("</stream:stream>");
+ session.notopen = true;
+end
+
+local core_process_stanza = core_process_stanza;
+
+function stream_callbacks.handlestanza(session, stanza)
+ -- Namespaces are icky.
+ if not stanza.attr.xmlns and stanza.name == "handshake" then
+ stanza.attr.xmlns = xmlns_component;
+ end
+ return core_process_stanza(session, stanza);
+end
+
+--- Closing a component connection
+local stream_xmlns_attr = {xmlns='urn:ietf:params:xml:ns:xmpp-streams'};
+local function session_close(session, reason)
+ local log = session.log or log;
+ if session.conn then
+ if reason then
+ if type(reason) == "string" then -- assume stream error
+ 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
+ local stanza = st.stanza("stream:error"):tag(reason.condition, stream_xmlns_attr):up();
+ if reason.text then
+ stanza:tag("text", stream_xmlns_attr):text(reason.text):up();
+ end
+ if reason.extra then
+ stanza:add_child(reason.extra);
+ end
+ 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));
+ session.send(reason);
+ end
+ end
+ end
+ session.send("</stream:stream>");
+ session.conn.close();
+ component_listener.disconnect(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 = "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 parser = lxp.new(init_xmlhandlers(session, stream_callbacks), "|");
+ session.parser = parser;
+
+ 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;
+
+ end
+ if data then
+ session.data(conn, data);
+ end
+end
+
+function component_listener.disconnect(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
+ log("debug", "Deregistering component");
+ cm_deregister_component(session.host);
+ hosts[session.host].connected = nil;
+ end
+ sessions[conn] = nil;
+ session = nil;
+ collectgarbage("collect");
+ end
+end
+
+connlisteners.register('xmppcomponent', component_listener);