Merge 0.6->0.7
[prosody.git] / plugins / mod_proxy65.lua
index d71c3d99cb610394a2d418e6fd4eb2a44095cb31..190d30bef5a9d9fae1b41be3bf1c6c937b3e5776 100644 (file)
@@ -14,8 +14,10 @@ if module:get_host_type() ~= "component" then
        error("proxy65 should be loaded as a component, please see http://prosody.im/doc/components", 0);
 end
 
-local jid_split, jid_join, jid_compare = require "util.jid".split, require "util.jid".join, require "util.jid".compare;
+local jid_split, jid_join = require "util.jid".split, require "util.jid".join;
 local st = require "util.stanza";
+local componentmanager = require "core.componentmanager";
+local config_get = require "core.configmanager".get;
 local connlisteners = require "net.connlisteners";
 local sha1 = require "util.hashes".sha1;
 local server = require "net.server";
@@ -23,10 +25,10 @@ local server = require "net.server";
 local host, name = module:get_host(), "SOCKS5 Bytestreams Service";
 local sessions, transfers, component, replies_cache = {}, {}, nil, {};
 
-local proxy_port = module:get_option("proxy65_port") or 5000;
-local proxy_interface = module:get_option("proxy65_interface") or "*";
-local proxy_address = module:get_option("proxy65_address") or (proxy_interface ~= "*" and proxy_interface) or host;
-local proxy_acl = module:get_option("proxy65_acl");
+local proxy_port = config_get(host, "core", "proxy65_port") or 5000;
+local proxy_interface = config_get(host, "core", "proxy65_interface") or "*";
+local proxy_address = config_get(host, "core", "proxy65_address") or (proxy_interface ~= "*" and proxy_interface) or host;
+local proxy_acl = config_get(host, "core", "proxy65_acl");
 local max_buffer_size = 4096;
 
 local connlistener = { default_port = proxy_port, default_interface = proxy_interface, default_mode = "*a" };
@@ -118,8 +120,7 @@ function connlistener.ondisconnect(conn, err)
        end
 end
 
-module:hook("iq-get/host/http://jabber.org/protocol/disco#info:query", function(event)
-       local origin, stanza = event.origin, event.stanza;
+local function get_disco_info(stanza)
        local reply = replies_cache.disco_info;
        if reply == nil then
                reply = st.iq({type='result', from=host}):query("http://jabber.org/protocol/disco#info")
@@ -130,12 +131,10 @@ module:hook("iq-get/host/http://jabber.org/protocol/disco#info:query", function(
 
        reply.attr.id = stanza.attr.id;
        reply.attr.to = stanza.attr.from;
-       origin.send(reply);
-       return true;
-end, -1);
+       return reply;
+end
 
-module:hook("iq-get/host/http://jabber.org/protocol/disco#items:query", function(event)
-       local origin, stanza = event.origin, event.stanza;
+local function get_disco_items(stanza)
        local reply = replies_cache.disco_items;
        if reply == nil then
                reply = st.iq({type='result', from=host}):query("http://jabber.org/protocol/disco#items");
@@ -144,21 +143,32 @@ module:hook("iq-get/host/http://jabber.org/protocol/disco#items:query", function
        
        reply.attr.id = stanza.attr.id;
        reply.attr.to = stanza.attr.from;
-       origin.send(reply);
-       return true;
-end, -1);
+       return reply;
+end
 
-module:hook("iq-get/host/http://jabber.org/protocol/bytestreams:query", function(event)
-       local origin, stanza = event.origin, event.stanza;
+local function get_stream_host(origin, stanza)
        local reply = replies_cache.stream_host;
        local err_reply = replies_cache.stream_host_err;
        local sid = stanza.tags[1].attr.sid;
        local allow = false;
-       local jid = stanza.attr.from;
+       local jid_node, jid_host, jid_resource = jid_split(stanza.attr.from);
+       
+       if stanza.attr.from == nil then
+               jid_node = origin.username;
+               jid_host = origin.host;
+               jid_resource = origin.resource;
+       end
        
        if proxy_acl and #proxy_acl > 0 then
-               for _, acl in ipairs(proxy_acl) do
-                       if jid_compare(jid, acl) then allow = true; end
+               if host ~= nil then -- at least a domain is needed.
+                       for _, acl in ipairs(proxy_acl) do
+                               local acl_node, acl_host, acl_resource = jid_split(acl);
+                               if ((acl_node ~= nil and acl_node == jid_node) or acl_node == nil) and
+                                  ((acl_host ~= nil and acl_host == jid_host) or acl_host == nil) and
+                                  ((acl_resource ~= nil and acl_resource == jid_resource) or acl_resource == nil) then
+                                       allow = true;
+                               end
+                       end
                end
        else
                allow = true;
@@ -171,7 +181,7 @@ module:hook("iq-get/host/http://jabber.org/protocol/bytestreams:query", function
                        replies_cache.stream_host = reply;
                end
        else
-               module:log("warn", "Denying use of proxy for %s", tostring(jid));
+               module:log("warn", "Denying use of proxy for %s", tostring(jid_join(jid_node, jid_host, jid_resource)));
                if err_reply == nil then
                        err_reply = st.iq({type="error", from=host})
                                :query("http://jabber.org/protocol/bytestreams")
@@ -184,11 +194,11 @@ module:hook("iq-get/host/http://jabber.org/protocol/bytestreams:query", function
        reply.attr.id = stanza.attr.id;
        reply.attr.to = stanza.attr.from;
        reply.tags[1].attr.sid = sid;
-       origin.send(reply);
-       return true;
-end);
+       return reply;
+end
 
 module.unload = function()
+       componentmanager.deregister_component(host);
        connlisteners.deregister(module.host .. ':proxy65');
 end
 
@@ -210,35 +220,55 @@ local function set_activation(stanza)
        return reply, from, to, sid;
 end
 
-module:hook("iq-set/host/http://jabber.org/protocol/bytestreams:query", function(event)
-       local origin, stanza = event.origin, event.stanza;
-
-       module:log("debug", "Received activation request from %s", stanza.attr.from);
-       local reply, from, to, sid = set_activation(stanza);
-       if reply ~= nil and from ~= nil and to ~= nil and sid ~= nil then
-               local sha = sha1(sid .. from .. to, true);
-               if transfers[sha] == nil then
-                       module:log("error", "transfers[sha]: nil");
-               elseif(transfers[sha] ~= nil and transfers[sha].initiator ~= nil and transfers[sha].target ~= nil) then
-                       origin.send(reply);
-                       transfers[sha].activated = true;
-                       transfers[sha].target:lock_read(false);
-                       transfers[sha].initiator:lock_read(false);
-               else
-                       module:log("debug", "Both parties were not yet connected");
-                       local message = "Neither party is connected to the proxy";
-                       if transfers[sha].initiator then
-                               message = "The recipient is not connected to the proxy";
-                       elseif transfers[sha].target then
-                               message = "The sender (you) is not connected to the proxy";
+function handle_to_domain(origin, stanza)
+       local to_node, to_host, to_resource = jid_split(stanza.attr.to);
+       if to_node == nil then
+               local type = stanza.attr.type;
+               if type == "error" or type == "result" then return; end
+               if stanza.name == "iq" and type == "get" then
+                       local xmlns = stanza.tags[1].attr.xmlns
+                       if xmlns == "http://jabber.org/protocol/disco#info" then
+                               origin.send(get_disco_info(stanza));
+                               return true;
+                       elseif xmlns == "http://jabber.org/protocol/disco#items" then
+                               origin.send(get_disco_items(stanza));
+                               return true;
+                       elseif xmlns == "http://jabber.org/protocol/bytestreams" then
+                               origin.send(get_stream_host(origin, stanza));
+                               return true;
+                       else
+                               origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
+                               return true;
+                       end
+               elseif stanza.name == "iq" and type == "set" then
+                       module:log("debug", "Received activation request from %s", stanza.attr.from);
+                       local reply, from, to, sid = set_activation(stanza);
+                       if reply ~= nil and from ~= nil and to ~= nil and sid ~= nil then
+                               local sha = sha1(sid .. from .. to, true);
+                               if transfers[sha] == nil then
+                                       module:log("error", "transfers[sha]: nil");
+                               elseif(transfers[sha] ~= nil and transfers[sha].initiator ~= nil and transfers[sha].target ~= nil) then
+                                       origin.send(reply);
+                                       transfers[sha].activated = true;
+                                       transfers[sha].target:lock_read(false);
+                                       transfers[sha].initiator:lock_read(false);
+                               else
+                                       module:log("debug", "Both parties were not yet connected");
+                                       local message = "Neither party is connected to the proxy";
+                                       if transfers[sha].initiator then
+                                               message = "The recipient is not connected to the proxy";
+                                       elseif transfers[sha].target then
+                                               message = "The sender (you) is not connected to the proxy";
+                                       end
+                                       origin.send(st.error_reply(stanza, "cancel", "not-allowed", message));
+                               end
+                       else
+                               module:log("error", "activation failed: sid: %s, initiator: %s, target: %s", tostring(sid), tostring(from), tostring(to));
                        end
-                       origin.send(st.error_reply(stanza, "cancel", "not-allowed", message));
                end
-               return true;
-       else
-               module:log("error", "activation failed: sid: %s, initiator: %s, target: %s", tostring(sid), tostring(from), tostring(to));
        end
-end);
+       return;
+end
 
 if not connlisteners.register(module.host .. ':proxy65', connlistener) then
        module:log("error", "mod_proxy65: Could not establish a connection listener. Check your configuration please.");
@@ -246,3 +276,4 @@ if not connlisteners.register(module.host .. ':proxy65', connlistener) then
 end
 
 connlisteners.start(module.host .. ':proxy65');
+component = componentmanager.register_component(host, handle_to_domain);