ab9eda578a9a206e5ca243531097ab092ac37459
[prosody.git] / plugins / mod_proxy65.lua
1 -- Copyright (C) 2009 Thilo Cestonaro
2 -- 
3 -- This project is MIT/X11 licensed. Please see the
4 -- COPYING file in the source package for more information.
5 --
6 --[[
7 * to restart the proxy in the console: e.g.
8 module:unload("proxy65");
9 > server.removeserver(<proxy65_port>);
10 module:load("proxy65", <proxy65_jid>);
11 ]]--
12
13 if module:get_host_type() ~= "component" then
14         error("proxy65 should be loaded as a component, please see http://prosody.im/doc/components", 0);
15 end
16
17 local jid_split, jid_join = require "util.jid".split, require "util.jid".join;
18 local st = require "util.stanza";
19 local componentmanager = require "core.componentmanager";
20 local config_get = require "core.configmanager".get;
21 local connlisteners = require "net.connlisteners";
22 local sha1 = require "util.hashes".sha1;
23
24 local host, name = module:get_host(), "SOCKS5 Bytestreams Service";
25 local sessions, transfers, component, replies_cache = {}, {}, nil, {};
26
27 local proxy_port = config_get(host, "core", "proxy65_port") or 5000;
28 local proxy_interface = config_get(host, "core", "proxy65_interface") or "*";
29 local proxy_address = config_get(host, "core", "proxy65_address") or (proxy_interface ~= "*" and proxy_interface) or host;
30 local proxy_acl = config_get(host, "core", "proxy65_acl");
31
32 local connlistener = { default_port = proxy_port, default_interface = proxy_interface, default_mode = "*a" };
33
34 function connlistener.onincoming(conn, data)
35         local session = sessions[conn] or {};
36         
37         if session.setup == nil and data ~= nil and data:sub(1):byte() == 0x05 and data:len() > 2 then
38                 local nmethods = data:sub(2):byte();
39                 local methods = data:sub(3);
40                 local supported = false;
41                 for i=1, nmethods, 1 do
42                         if(methods:sub(i):byte() == 0x00) then -- 0x00 == method: NO AUTH
43                                 supported = true;
44                                 break;
45                         end
46                 end
47                 if(supported) then
48                         module:log("debug", "new session found ... ")
49                         session.setup = true;
50                         sessions[conn] = session;
51                         conn:write(string.char(5, 0));
52                 end
53                 return;
54         end
55         if session.setup then
56                 if session.sha ~= nil and transfers[session.sha] ~= nil then
57                         local sha = session.sha;
58                         if transfers[sha].activated == true and transfers[sha].target ~= nil then
59                                 if  transfers[sha].initiator == conn then
60                                         transfers[sha].target:write(data);
61                                 else
62                                         transfers[sha].initiator:write(data);
63                                 end
64                                 return;
65                         end
66                 end
67                 if data ~= nil and data:len() == 0x2F and  -- 40 == length of SHA1 HASH, and 7 other bytes => 47 => 0x2F
68                         data:sub(1):byte() == 0x05 and -- SOCKS5 has 5 in first byte
69                         data:sub(2):byte() == 0x01 and -- CMD must be 1
70                         data:sub(3):byte() == 0x00 and -- RSV must be 0
71                         data:sub(4):byte() == 0x03 and -- ATYP must be 3
72                         data:sub(5):byte() == 40 and -- SHA1 HASH length must be 40 (0x28)
73                         data:sub(-2):byte() == 0x00 and -- PORT must be 0, size 2 byte
74                         data:sub(-1):byte() == 0x00
75                 then
76                         local sha = data:sub(6, 45); -- second param is not count! it's the ending index (included!)
77                         if transfers[sha] == nil then
78                                 transfers[sha] = {};
79                                 transfers[sha].activated = false;
80                                 transfers[sha].target = conn;
81                                 session.sha = sha;
82                                 module:log("debug", "target connected ... ");
83                         elseif transfers[sha].target ~= nil then
84                                 transfers[sha].initiator = conn;
85                                 session.sha = sha;
86                                 module:log("debug", "initiator connected ... ");
87                                 throttle_sending(conn, transfers[sha].target);          
88                                 throttle_sending(transfers[sha].target, conn);          
89                         end
90                         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)
91                 else
92                         module:log("warn", "Neither data transfer nor initial connect of a participator of a transfer.")
93                         conn.close();
94                 end
95         else
96                 if data ~= nil then
97                         module:log("warn", "unknown connection with no authentication data -> closing it");
98                         conn.close();
99                 end
100         end
101 end
102
103 function connlistener.ondisconnect(conn, err)
104         local session = sessions[conn];
105         if session then
106                 if session.sha and transfers[session.sha] then
107                         local initiator, target = transfers[session.sha].initiator, transfers[session.sha].target;
108                         if initiator == conn and target ~= nil then
109                                 target.close();
110                         elseif target == conn and initiator ~= nil then
111                                 initiator.close();
112                         end
113                         transfers[session.sha] = nil;
114                 end
115                 -- Clean up any session-related stuff here
116                 sessions[conn] = nil;
117         end
118 end
119
120 local function get_disco_info(stanza)
121         local reply = replies_cache.disco_info;
122         if reply == nil then
123                 reply = st.iq({type='result', from=host}):query("http://jabber.org/protocol/disco#info")
124                         :tag("identity", {category='proxy', type='bytestreams', name=name}):up()
125                         :tag("feature", {var="http://jabber.org/protocol/bytestreams"});
126                 replies_cache.disco_info = reply;
127         end
128
129         reply.attr.id = stanza.attr.id;
130         reply.attr.to = stanza.attr.from;
131         return reply;
132 end
133
134 local function get_disco_items(stanza)
135         local reply = replies_cache.disco_items;
136         if reply == nil then
137                 reply = st.iq({type='result', from=host}):query("http://jabber.org/protocol/disco#items");
138                 replies_cache.disco_items = reply;
139         end
140         
141         reply.attr.id = stanza.attr.id;
142         reply.attr.to = stanza.attr.from;
143         return reply;
144 end
145
146 local function get_stream_host(origin, stanza)
147         local reply = replies_cache.stream_host;
148         local err_reply = replies_cache.stream_host_err;
149         local sid = stanza.tags[1].attr.sid;
150         local allow = false;
151         local jid_node, jid_host, jid_resource = jid_split(stanza.attr.from);
152         
153         if stanza.attr.from == nil then
154                 jid_node = origin.username;
155                 jid_host = origin.host;
156                 jid_resource = origin.resource;
157         end
158         
159         if proxy_acl and #proxy_acl > 0 then
160                 if host ~= nil then -- at least a domain is needed.
161                         for _, acl in ipairs(proxy_acl) do
162                                 local acl_node, acl_host, acl_resource = jid_split(acl);
163                                 if ((acl_node ~= nil and acl_node == jid_node) or acl_node == nil) and
164                                    ((acl_host ~= nil and acl_host == jid_host) or acl_host == nil) and
165                                    ((acl_resource ~= nil and acl_resource == jid_resource) or acl_resource == nil) then
166                                         allow = true;
167                                 end
168                         end
169                 end
170         else
171                 allow = true;
172         end
173         if allow == true then
174                 if reply == nil then
175                         reply = st.iq({type="result", from=host})
176                                 :query("http://jabber.org/protocol/bytestreams")
177                                 :tag("streamhost", {jid=host, host=proxy_address, port=proxy_port});
178                         replies_cache.stream_host = reply;
179                 end
180         else
181                 module:log("warn", "Denying use of proxy for %s", tostring(jid_join(jid_node, jid_host, jid_resource)));
182                 if err_reply == nil then
183                         err_reply = st.iq({type="error", from=host})
184                                 :query("http://jabber.org/protocol/bytestreams")
185                                 :tag("error", {code='403', type='auth'})
186                                 :tag("forbidden", {xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'});
187                         replies_cache.stream_host_err = err_reply;
188                 end
189                 reply = err_reply;
190         end
191         reply.attr.id = stanza.attr.id;
192         reply.attr.to = stanza.attr.from;
193         reply.tags[1].attr.sid = sid;
194         return reply;
195 end
196
197 module.unload = function()
198         componentmanager.deregister_component(host);
199         connlisteners.deregister(module.host .. ':proxy65');
200 end
201
202 local function set_activation(stanza)
203         local from, to, sid, reply = nil;
204         from = stanza.attr.from;
205         if stanza.tags[1] ~= nil and tostring(stanza.tags[1].name) == "query" then
206                 if stanza.tags[1].attr ~= nil then
207                         sid = stanza.tags[1].attr.sid;
208                 end
209                 if stanza.tags[1].tags[1] ~= nil and tostring(stanza.tags[1].tags[1].name) == "activate" then
210                         to = stanza.tags[1].tags[1][1];
211                 end
212         end
213         if from ~= nil and to ~= nil and sid ~= nil then
214                 reply = st.iq({type="result", from=host, to=from});
215                 reply.attr.id = stanza.attr.id;
216         end
217         return reply, from, to, sid;
218 end
219
220 function handle_to_domain(origin, stanza)
221         local to_node, to_host, to_resource = jid_split(stanza.attr.to);
222         if to_node == nil then
223                 local type = stanza.attr.type;
224                 if type == "error" or type == "result" then return; end
225                 if stanza.name == "iq" and type == "get" then
226                         local xmlns = stanza.tags[1].attr.xmlns
227                         if xmlns == "http://jabber.org/protocol/disco#info" then
228                                 origin.send(get_disco_info(stanza));
229                                 return true;
230                         elseif xmlns == "http://jabber.org/protocol/disco#items" then
231                                 origin.send(get_disco_items(stanza));
232                                 return true;
233                         elseif xmlns == "http://jabber.org/protocol/bytestreams" then
234                                 origin.send(get_stream_host(origin, stanza));
235                                 return true;
236                         end
237                 elseif stanza.name == "iq" and type == "set" then
238                         local reply, from, to, sid = set_activation(stanza);
239                         if reply ~= nil and from ~= nil and to ~= nil and sid ~= nil then
240                                 local sha = sha1(sid .. from .. to, true);
241                                 if transfers[sha] == nil then
242                                         module:log("error", "transfers[sha]: nil");
243                                 elseif(transfers[sha] ~= nil and transfers[sha].initiator ~= nil and transfers[sha].target ~= nil) then
244                                         origin.send(reply);
245                                         transfers[sha].activated = true;
246                                 end
247                         else
248                                 module:log("error", "activation failed: sid: %s, initiator: %s, target: %s", tostring(sid), tostring(from), tostring(to));
249                         end
250                 end
251         end
252         return;
253 end
254
255 if not connlisteners.register(module.host .. ':proxy65', connlistener) then
256         module:log("error", "mod_proxy65: Could not establish a connection listener. Check your configuration please.");
257         module:log("error", "Possibly two proxy65 components are configured to share the same port.");
258 end
259
260 connlisteners.start(module.host .. ':proxy65');
261 component = componentmanager.register_component(host, handle_to_domain);
262 local sender_lock_threshold = 4096;
263 function throttle_sending(sender, receiver)
264         sender:pattern(sender_lock_threshold);
265         local sender_locked;
266         local _sendbuffer = receiver.sendbuffer;
267         function receiver.sendbuffer()
268                 _sendbuffer();
269                 if sender_locked and receiver.bufferlen() < sender_lock_threshold then
270                         sender:lock_read(false); -- Unlock now
271                         sender_locked = nil;
272                 end
273         end
274         
275         local _readbuffer = sender.readbuffer;
276         function sender.readbuffer()
277                 _readbuffer();
278                 if not sender_locked and receiver.bufferlen() >= sender_lock_threshold then
279                         sender_locked = true;
280                         sender:lock_read(true);
281                 end
282         end
283 end