mod_console: Add host:* commands to help (thanks Zash)
[prosody.git] / plugins / mod_proxy65.lua
index ab9eda578a9a206e5ca243531097ab092ac37459..613594440a43940d88ffa79d7c11fc598e6871bf 100644 (file)
@@ -14,12 +14,13 @@ 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 = require "util.jid".split, require "util.jid".join;
+local jid_split, jid_join, jid_compare = require "util.jid".split, require "util.jid".join, require "util.jid".compare;
 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";
 
 local host, name = module:get_host(), "SOCKS5 Bytestreams Service";
 local sessions, transfers, component, replies_cache = {}, {}, nil, {};
@@ -28,6 +29,7 @@ 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" };
 
@@ -84,18 +86,19 @@ function connlistener.onincoming(conn, data)
                                transfers[sha].initiator = conn;
                                session.sha = sha;
                                module:log("debug", "initiator connected ... ");
-                               throttle_sending(conn, transfers[sha].target);          
-                               throttle_sending(transfers[sha].target, conn);          
+                               server.link(conn, transfers[sha].target, max_buffer_size);
+                               server.link(transfers[sha].target, conn, max_buffer_size);
                        end
                        conn:write(string.char(5, 0, 0, 3, sha:len()) .. sha .. string.char(0, 0)); -- VER, REP, RSV, ATYP, BND.ADDR (sha), BND.PORT (2 Byte)
+                       conn:lock_read(true)
                else
                        module:log("warn", "Neither data transfer nor initial connect of a participator of a transfer.")
-                       conn.close();
+                       conn:close();
                end
        else
                if data ~= nil then
                        module:log("warn", "unknown connection with no authentication data -> closing it");
-                       conn.close();
+                       conn:close();
                end
        end
 end
@@ -106,9 +109,9 @@ function connlistener.ondisconnect(conn, err)
                if session.sha and transfers[session.sha] then
                        local initiator, target = transfers[session.sha].initiator, transfers[session.sha].target;
                        if initiator == conn and target ~= nil then
-                               target.close();
+                               target:close();
                        elseif target == conn and initiator ~= nil then
-                               initiator.close();
+                               initiator:close();
                        end
                        transfers[session.sha] = nil;
                end
@@ -148,24 +151,11 @@ local function get_stream_host(origin, stanza)
        local err_reply = replies_cache.stream_host_err;
        local sid = stanza.tags[1].attr.sid;
        local allow = false;
-       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
+       local jid = stanza.attr.from;
        
        if proxy_acl and #proxy_acl > 0 then
-               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
+               for _, acl in ipairs(proxy_acl) do
+                       if jid_compare(jid, acl) then allow = true; end
                end
        else
                allow = true;
@@ -178,7 +168,7 @@ local function get_stream_host(origin, stanza)
                        replies_cache.stream_host = reply;
                end
        else
-               module:log("warn", "Denying use of proxy for %s", tostring(jid_join(jid_node, jid_host, jid_resource)));
+               module:log("warn", "Denying use of proxy for %s", tostring(jid));
                if err_reply == nil then
                        err_reply = st.iq({type="error", from=host})
                                :query("http://jabber.org/protocol/bytestreams")
@@ -233,8 +223,12 @@ function handle_to_domain(origin, stanza)
                        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);
@@ -243,6 +237,17 @@ function handle_to_domain(origin, stanza)
                                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));
@@ -259,25 +264,3 @@ end
 
 connlisteners.start(module.host .. ':proxy65');
 component = componentmanager.register_component(host, handle_to_domain);
-local sender_lock_threshold = 4096;
-function throttle_sending(sender, receiver)
-       sender:pattern(sender_lock_threshold);
-       local sender_locked;
-       local _sendbuffer = receiver.sendbuffer;
-       function receiver.sendbuffer()
-               _sendbuffer();
-               if sender_locked and receiver.bufferlen() < sender_lock_threshold then
-                       sender:lock_read(false); -- Unlock now
-                       sender_locked = nil;
-               end
-       end
-       
-       local _readbuffer = sender.readbuffer;
-       function sender.readbuffer()
-               _readbuffer();
-               if not sender_locked and receiver.bufferlen() >= sender_lock_threshold then
-                       sender_locked = true;
-                       sender:lock_read(true);
-               end
-       end
-end