f790f91d1ddabb0420eef6e9fe0b1b80470636d6
[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
14 local module = module;
15 local tostring = tostring;
16 local jid_split, jid_join, jid_compare = require "util.jid".split, require "util.jid".join, require "util.jid".compare;
17 local st = require "util.stanza";
18 local connlisteners = require "net.connlisteners";
19 local sha1 = require "util.hashes".sha1;
20 local server = require "net.server";
21
22 local host, name = module:get_host(), "SOCKS5 Bytestreams Service";
23 local sessions, transfers, replies_cache = {}, {}, {};
24
25 local proxy_port = module:get_option("proxy65_port") or 5000;
26 local proxy_interface = module:get_option("proxy65_interface") or "*";
27 local proxy_address = module:get_option("proxy65_address") or (proxy_interface ~= "*" and proxy_interface) or host;
28 local proxy_acl = module:get_option("proxy65_acl");
29 local max_buffer_size = 4096;
30
31 local connlistener = { default_port = proxy_port, default_interface = proxy_interface, default_mode = "*a" };
32
33 function connlistener.onincoming(conn, data)
34         local session = sessions[conn] or {};
35         
36         if session.setup == nil and data ~= nil and data:byte(1) == 0x05 and data:len() > 2 then
37                 local nmethods = data:byte(2);
38                 local methods = data:sub(3);
39                 local supported = false;
40                 for i=1, nmethods, 1 do
41                         if(methods:byte(i) == 0x00) then -- 0x00 == method: NO AUTH
42                                 supported = true;
43                                 break;
44                         end
45                 end
46                 if(supported) then
47                         module:log("debug", "new session found ... ")
48                         session.setup = true;
49                         sessions[conn] = session;
50                         conn:write(string.char(5, 0));
51                 end
52                 return;
53         end
54         if session.setup then
55                 if session.sha ~= nil and transfers[session.sha] ~= nil then
56                         local sha = session.sha;
57                         if transfers[sha].activated == true and transfers[sha].target ~= nil then
58                                 if  transfers[sha].initiator == conn then
59                                         transfers[sha].target:write(data);
60                                 else
61                                         transfers[sha].initiator:write(data);
62                                 end
63                                 return;
64                         end
65                 end
66                 if data ~= nil and data:len() == 0x2F and  -- 40 == length of SHA1 HASH, and 7 other bytes => 47 => 0x2F
67                         data:byte(1) == 0x05 and -- SOCKS5 has 5 in first byte
68                         data:byte(2) == 0x01 and -- CMD must be 1
69                         data:byte(3) == 0x00 and -- RSV must be 0
70                         data:byte(4) == 0x03 and -- ATYP must be 3
71                         data:byte(5) == 40 and -- SHA1 HASH length must be 40 (0x28)
72                         data:byte(-2) == 0x00 and -- PORT must be 0, size 2 byte
73                         data:byte(-1) == 0x00
74                 then
75                         local sha = data:sub(6, 45); -- second param is not count! it's the ending index (included!)
76                         if transfers[sha] == nil then
77                                 transfers[sha] = {};
78                                 transfers[sha].activated = false;
79                                 transfers[sha].target = conn;
80                                 session.sha = sha;
81                                 module:log("debug", "target connected ... ");
82                         elseif transfers[sha].target ~= nil then
83                                 transfers[sha].initiator = conn;
84                                 session.sha = sha;
85                                 module:log("debug", "initiator connected ... ");
86                                 server.link(conn, transfers[sha].target, max_buffer_size);
87                                 server.link(transfers[sha].target, conn, max_buffer_size);
88                         end
89                         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)
90                         conn:lock_read(true)
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 module:hook("iq-get/host/http://jabber.org/protocol/disco#info:query", function(event)
121         local origin, stanza = event.origin, event.stanza;
122         local reply = replies_cache.disco_info;
123         if reply == nil then
124                 reply = st.iq({type='result', from=host}):query("http://jabber.org/protocol/disco#info")
125                         :tag("identity", {category='proxy', type='bytestreams', name=name}):up()
126                         :tag("feature", {var="http://jabber.org/protocol/bytestreams"});
127                 replies_cache.disco_info = reply;
128         end
129
130         reply.attr.id = stanza.attr.id;
131         reply.attr.to = stanza.attr.from;
132         origin.send(reply);
133         return true;
134 end, -1);
135
136 module:hook("iq-get/host/http://jabber.org/protocol/disco#items:query", function(event)
137         local origin, stanza = event.origin, event.stanza;
138         local reply = replies_cache.disco_items;
139         if reply == nil then
140                 reply = st.iq({type='result', from=host}):query("http://jabber.org/protocol/disco#items");
141                 replies_cache.disco_items = reply;
142         end
143         
144         reply.attr.id = stanza.attr.id;
145         reply.attr.to = stanza.attr.from;
146         origin.send(reply);
147         return true;
148 end, -1);
149
150 module:hook("iq-get/host/http://jabber.org/protocol/bytestreams:query", function(event)
151         local origin, stanza = event.origin, event.stanza;
152         local reply = replies_cache.stream_host;
153         local err_reply = replies_cache.stream_host_err;
154         local sid = stanza.tags[1].attr.sid;
155         local allow = false;
156         local jid = stanza.attr.from;
157         
158         if proxy_acl and #proxy_acl > 0 then
159                 for _, acl in ipairs(proxy_acl) do
160                         if jid_compare(jid, acl) then allow = true; end
161                 end
162         else
163                 allow = true;
164         end
165         if allow == true then
166                 if reply == nil then
167                         reply = st.iq({type="result", from=host})
168                                 :query("http://jabber.org/protocol/bytestreams")
169                                 :tag("streamhost", {jid=host, host=proxy_address, port=proxy_port});
170                         replies_cache.stream_host = reply;
171                 end
172         else
173                 module:log("warn", "Denying use of proxy for %s", tostring(jid));
174                 if err_reply == nil then
175                         err_reply = st.iq({type="error", from=host})
176                                 :query("http://jabber.org/protocol/bytestreams")
177                                 :tag("error", {code='403', type='auth'})
178                                 :tag("forbidden", {xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'});
179                         replies_cache.stream_host_err = err_reply;
180                 end
181                 reply = err_reply;
182         end
183         reply.attr.id = stanza.attr.id;
184         reply.attr.to = stanza.attr.from;
185         reply.tags[1].attr.sid = sid;
186         origin.send(reply);
187         return true;
188 end);
189
190 module.unload = function()
191         connlisteners.deregister(module.host .. ':proxy65');
192 end
193
194 local function set_activation(stanza)
195         local from, to, sid, reply = nil;
196         from = stanza.attr.from;
197         if stanza.tags[1] ~= nil and tostring(stanza.tags[1].name) == "query" then
198                 if stanza.tags[1].attr ~= nil then
199                         sid = stanza.tags[1].attr.sid;
200                 end
201                 if stanza.tags[1].tags[1] ~= nil and tostring(stanza.tags[1].tags[1].name) == "activate" then
202                         to = stanza.tags[1].tags[1][1];
203                 end
204         end
205         if from ~= nil and to ~= nil and sid ~= nil then
206                 reply = st.iq({type="result", from=host, to=from});
207                 reply.attr.id = stanza.attr.id;
208         end
209         return reply, from, to, sid;
210 end
211
212 module:hook("iq-set/host/http://jabber.org/protocol/bytestreams:query", function(event)
213         local origin, stanza = event.origin, event.stanza;
214
215         module:log("debug", "Received activation request from %s", stanza.attr.from);
216         local reply, from, to, sid = set_activation(stanza);
217         if reply ~= nil and from ~= nil and to ~= nil and sid ~= nil then
218                 local sha = sha1(sid .. from .. to, true);
219                 if transfers[sha] == nil then
220                         module:log("error", "transfers[sha]: nil");
221                 elseif(transfers[sha] ~= nil and transfers[sha].initiator ~= nil and transfers[sha].target ~= nil) then
222                         origin.send(reply);
223                         transfers[sha].activated = true;
224                         transfers[sha].target:lock_read(false);
225                         transfers[sha].initiator:lock_read(false);
226                 else
227                         module:log("debug", "Both parties were not yet connected");
228                         local message = "Neither party is connected to the proxy";
229                         if transfers[sha].initiator then
230                                 message = "The recipient is not connected to the proxy";
231                         elseif transfers[sha].target then
232                                 message = "The sender (you) is not connected to the proxy";
233                         end
234                         origin.send(st.error_reply(stanza, "cancel", "not-allowed", message));
235                 end
236                 return true;
237         else
238                 module:log("error", "activation failed: sid: %s, initiator: %s, target: %s", tostring(sid), tostring(from), tostring(to));
239         end
240 end);
241
242 if not connlisteners.register(module.host .. ':proxy65', connlistener) then
243         module:log("error", "mod_proxy65: Could not establish a connection listener. Check your configuration please.");
244         module:log("error", "Possibly two proxy65 components are configured to share the same port.");
245 end
246
247 connlisteners.start(module.host .. ':proxy65');