4113ae608a661e8bab0c88fee8677d5fa45d191d
[prosody.git] / core / s2smanager.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2009 Matthew Wild
3 -- Copyright (C) 2008-2009 Waqas Hussain
4 -- 
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9
10
11 local hosts = hosts;
12 local sessions = sessions;
13 local core_process_stanza = function(a, b) core_process_stanza(a, b); end
14 local add_task = require "util.timer".add_task;
15 local socket = require "socket";
16 local format = string.format;
17 local t_insert, t_sort = table.insert, table.sort;
18 local get_traceback = debug.traceback;
19 local tostring, pairs, ipairs, getmetatable, newproxy, error, tonumber
20     = tostring, pairs, ipairs, getmetatable, newproxy, error, tonumber;
21
22 local idna_to_ascii = require "util.encodings".idna.to_ascii;
23 local connlisteners_get = require "net.connlisteners".get;
24 local wrapclient = require "net.server".wrapclient;
25 local modulemanager = require "core.modulemanager";
26 local st = require "stanza";
27 local stanza = st.stanza;
28 local nameprep = require "util.encodings".stringprep.nameprep;
29
30 local uuid_gen = require "util.uuid".generate;
31
32 local logger_init = require "util.logger".init;
33
34 local log = logger_init("s2smanager");
35
36 local sha256_hash = require "util.hashes".sha256;
37
38 local dialback_secret = uuid_gen();
39
40 local adns, dns = require "net.adns", require "net.dns";
41
42 local dns_timeout = config.get("*", "core", "dns_timeout") or 60;
43
44 incoming_s2s = {};
45 local incoming_s2s = incoming_s2s;
46
47 module "s2smanager"
48
49 local function compare_srv_priorities(a,b) return a.priority < b.priority or a.weight < b.weight; end
50
51 local function bounce_sendq(session)
52         local sendq = session.sendq;
53         if sendq then
54                 session.log("info", "sending error replies for "..#sendq.." queued stanzas because of failed outgoing connection to "..tostring(session.to_host));
55                 local dummy = {
56                         type = "s2sin";
57                         send = function(s)
58                                 (session.log or log)("error", "Replying to to an s2s error reply, please report this! Traceback: %s", get_traceback());
59                         end;
60                         dummy = true;
61                 };
62                 for i, data in ipairs(sendq) do
63                         local reply = data[2];
64                         local xmlns = reply.attr.xmlns;
65                         if not xmlns or xmlns == "jabber:client" or xmlns == "jabber:server" then
66                                 reply.attr.type = "error";
67                                 reply:tag("error", {type = "cancel"})
68                                         :tag("remote-server-not-found", {xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas"}):up();
69                                 core_process_stanza(dummy, reply);
70                         end
71                         sendq[i] = nil;
72                 end
73                 session.sendq = nil;
74         end
75 end
76
77 function send_to_host(from_host, to_host, data)
78         local host = hosts[from_host].s2sout[to_host];
79         if host then
80                 -- We have a connection to this host already
81                 if host.type == "s2sout_unauthed" and data.name ~= "db:verify" and ((not data.xmlns) or data.xmlns == "jabber:client" or data.xmlns == "jabber:server") then
82                         (host.log or log)("debug", "trying to send over unauthed s2sout to "..to_host);
83                         if not host.notopen and not host.dialback_key and host.sends2s then
84                                 host.log("debug", "dialback had not been initiated");
85                                 initiate_dialback(host);
86                         end
87                         
88                         -- Queue stanza until we are able to send it
89                         if host.sendq then t_insert(host.sendq, {tostring(data), st.reply(data)});
90                         else host.sendq = { {tostring(data), st.reply(data)} }; end
91                         host.log("debug", "stanza [%s] queued ", data.name);
92                 elseif host.type == "local" or host.type == "component" then
93                         log("error", "Trying to send a stanza to ourselves??")
94                         log("error", "Traceback: %s", get_traceback());
95                         log("error", "Stanza: %s", tostring(data));
96                 else
97                         (host.log or log)("debug", "going to send stanza to "..to_host.." from "..from_host);
98                         -- FIXME
99                         if host.from_host ~= from_host then
100                                 log("error", "WARNING! This might, possibly, be a bug, but it might not...");
101                                 log("error", "We are going to send from %s instead of %s", tostring(host.from_host), tostring(from_host));
102                         end
103                         host.sends2s(data);
104                         host.log("debug", "stanza sent over "..host.type);
105                 end
106         else
107                 log("debug", "opening a new outgoing connection for this stanza");
108                 local host_session = new_outgoing(from_host, to_host);
109                 -- Store in buffer
110                 host_session.sendq = { {tostring(data), st.reply(data)} };
111                 log("debug", "stanza [%s] queued until connection complete", tostring(data.name));
112                 if (not host_session.connecting) and (not host_session.conn) then
113                         log("warn", "Connection to %s failed already, destroying session...", to_host);
114                         destroy_session(host_session);
115                 end
116         end
117 end
118
119 local open_sessions = 0;
120
121 function new_incoming(conn)
122         local session = { conn = conn, type = "s2sin_unauthed", direction = "incoming", hosts = {} };
123         if true then
124                 session.trace = newproxy(true);
125                 getmetatable(session.trace).__gc = function () open_sessions = open_sessions - 1; end;
126         end
127         open_sessions = open_sessions + 1;
128         local w, log = conn.write, logger_init("s2sin"..tostring(conn):match("[a-f0-9]+$"));
129         session.sends2s = function (t) log("debug", "sending: %s", tostring(t)); w(tostring(t)); end
130         incoming_s2s[session] = true;
131         return session;
132 end
133
134 function new_outgoing(from_host, to_host)
135                 local host_session = { to_host = to_host, from_host = from_host, notopen = true, type = "s2sout_unauthed", direction = "outgoing" };
136                 hosts[from_host].s2sout[to_host] = host_session;
137                 
138                 local log;
139                 do
140                         local conn_name = "s2sout"..tostring(host_session):match("[a-f0-9]*$");
141                         log = logger_init(conn_name);
142                         host_session.log = log;
143                 end
144                 
145                 -- This is the first call, can't fail (the first step is DNS lookup)
146                 attempt_connection(host_session);
147                 
148                 if not host_session.sends2s then                
149                         -- A sends2s which buffers data (until the stream is opened)
150                         -- note that data in this buffer will be sent before the stream is authed
151                         -- and will not be ack'd in any way, successful or otherwise
152                         local buffer;
153                         function host_session.sends2s(data)
154                                 if not buffer then
155                                         buffer = {};
156                                         host_session.send_buffer = buffer;
157                                 end
158                                 log("debug", "Buffering data on unconnected s2sout to %s", to_host);
159                                 buffer[#buffer+1] = data;
160                                 log("debug", "Buffered item %d: %s", #buffer, tostring(data));
161                         end
162                         
163                 end
164
165                 return host_session;
166 end
167
168
169 function attempt_connection(host_session, err)
170         local from_host, to_host = host_session.from_host, host_session.to_host;
171         local connect_host, connect_port = idna_to_ascii(to_host), 5269;
172         
173         if not err then -- This is our first attempt
174                 log("debug", "First attempt to connect to %s, starting with SRV lookup...", to_host);
175                 host_session.connecting = true;
176                 local handle;
177                 handle = adns.lookup(function (answer)
178                         handle = nil;
179                         host_session.connecting = nil;
180                         if answer then
181                                 log("debug", to_host.." has SRV records, handling...");
182                                 local srv_hosts = {};
183                                 host_session.srv_hosts = srv_hosts;
184                                 for _, record in ipairs(answer) do
185                                         t_insert(srv_hosts, record.srv);
186                                 end
187                                 t_sort(srv_hosts, compare_srv_priorities);
188                                 
189                                 local srv_choice = srv_hosts[1];
190                                 host_session.srv_choice = 1;
191                                 if srv_choice then
192                                         connect_host, connect_port = srv_choice.target or to_host, srv_choice.port or connect_port;
193                                         log("debug", "Best record found, will connect to %s:%d", connect_host, connect_port);
194                                 end
195                         else
196                                 log("debug", to_host.." has no SRV records, falling back to A");
197                         end
198                         -- Try with SRV, or just the plain hostname if no SRV
199                         local ok, err = try_connect(host_session, connect_host, connect_port);
200                         if not ok then
201                                 if not attempt_connection(host_session, err) then
202                                         -- No more attempts will be made
203                                         destroy_session(host_session);
204                                 end
205                         end
206                 end, "_xmpp-server._tcp."..connect_host..".", "SRV");
207                 
208                 -- Set handler for DNS timeout
209                 add_task(dns_timeout, function ()
210                         if handle then
211                                 adns.cancel(handle, true);
212                         end
213                 end);
214                 
215                 log("debug", "DNS lookup for %s sent, waiting for response before we can connect", to_host);
216                 return true; -- Attempt in progress
217         elseif host_session.srv_hosts and #host_session.srv_hosts > host_session.srv_choice then -- Not our first attempt, and we also have SRV
218                 host_session.srv_choice = host_session.srv_choice + 1;
219                 local srv_choice = host_session.srv_hosts[host_session.srv_choice];
220                 connect_host, connect_port = srv_choice.target or to_host, srv_choice.port or connect_port;
221                 host_session.log("info", "Connection failed (%s). Attempt #%d: This time to %s:%d", tostring(err), host_session.srv_choice, connect_host, connect_port);
222         else
223                 host_session.log("info", "Out of connection options, can't connect to %s", tostring(host_session.to_host));
224                 -- We're out of options
225                 return false;
226         end
227         
228         if not (connect_host and connect_port) then
229                 -- Likely we couldn't resolve DNS
230                 log("warn", "Hmm, we're without a host (%s) and port (%s) to connect to for %s, giving up :(", tostring(connect_host), tostring(connect_port), tostring(to_host));
231                 return false;
232         end
233         
234         return try_connect(host_session, connect_host, connect_port);
235 end
236
237 function try_connect(host_session, connect_host, connect_port)
238         host_session.connecting = true;
239         local handle;
240         handle = adns.lookup(function (reply)
241                 handle = nil;
242                 host_session.connecting = nil;
243                 
244                 -- COMPAT: This is a compromise for all you CNAME-(ab)users :)
245                 if not (reply and reply[1] and reply[1].a) then
246                         reply = dns.peek(connect_host, "CNAME", "IN");
247                         while reply and reply[1] and not reply[1].a and reply[1].cname do
248                                 reply = dns.peek(reply[1].cname, "A", "IN") or dns.peek(reply[1].cname, "CNAME", "IN");
249                         end
250                 end
251                 -- end of CNAME resolving
252                 
253                 if reply and reply[1] and reply[1].a then
254                         log("debug", "DNS reply for %s gives us %s", connect_host, reply[1].a);
255                         return make_connect(host_session, reply[1].a, connect_port);
256                 else
257                         log("debug", "DNS lookup failed to get a response for %s", connect_host);
258                         if not attempt_connection(host_session, "name resolution failed") then -- Retry if we can
259                                 log("debug", "No other records to try for %s - destroying", host_session.to_host);
260                                 destroy_session(host_session); -- End of the line, we can't
261                         end
262                 end
263         end, connect_host, "A", "IN");
264
265         -- Set handler for DNS timeout
266         add_task(dns_timeout, function ()
267                 if handle then
268                         adns.cancel(handle, true);
269                 end
270         end);
271                 
272         return true;
273 end
274
275 function make_connect(host_session, connect_host, connect_port)
276         host_session.log("info", "Beginning new connection attempt to %s (%s:%d)", host_session.to_host, connect_host, connect_port);
277         -- Ok, we're going to try to connect
278         
279         local from_host, to_host = host_session.from_host, host_session.to_host;
280         
281         local conn, handler = socket.tcp()
282
283         conn:settimeout(0);
284         local success, err = conn:connect(connect_host, connect_port);
285         if not success and err ~= "timeout" then
286                 log("warn", "s2s connect() to %s (%s:%d) failed: %s", host_session.to_host, connect_host, connect_port, err);
287                 return false, err;
288         end
289         
290         local cl = connlisteners_get("xmppserver");
291         conn = wrapclient(conn, connect_host, connect_port, cl, cl.default_mode or 1, hosts[from_host].ssl_ctx, false );
292         host_session.conn = conn;
293         
294         -- Register this outgoing connection so that xmppserver_listener knows about it
295         -- otherwise it will assume it is a new incoming connection
296         cl.register_outgoing(conn, host_session);
297         
298         local w = conn.write;
299         host_session.sends2s = function (t) log("debug", "sending: %s", tostring(t)); w(tostring(t)); end
300         
301         conn.write(format([[<stream:stream xmlns='jabber:server' xmlns:db='jabber:server:dialback' xmlns:stream='http://etherx.jabber.org/streams' from='%s' to='%s' version='1.0' xml:lang='en'>]], from_host, to_host));
302         log("debug", "Connection attempt in progress...");
303         return true;
304 end
305
306 function streamopened(session, attr)
307         local send = session.sends2s;
308         
309         -- TODO: #29: SASL/TLS on s2s streams
310         session.version = 0; --tonumber(attr.version) or 0;
311         
312         if session.version >= 1.0 and not (attr.to and attr.from) then
313                 log("warn", (session.to_host or "(unknown)").." failed to specify 'to' or 'from' hostname as per RFC");
314         end
315         
316         if session.direction == "incoming" then
317                 -- Send a reply stream header
318                 session.to_host = attr.to and nameprep(attr.to);
319                 session.from_host = attr.from and nameprep(attr.from);
320         
321                 session.streamid = uuid_gen();
322                 (session.log or log)("debug", "incoming s2s received <stream:stream>");
323                 send("<?xml version='1.0'?>");
324                 send(stanza("stream:stream", { xmlns='jabber:server', ["xmlns:db"]='jabber:server:dialback', 
325                                 ["xmlns:stream"]='http://etherx.jabber.org/streams', id=session.streamid, from=session.to_host }):top_tag());
326                 if session.to_host and not hosts[session.to_host] then
327                         -- Attempting to connect to a host we don't serve
328                         session:close({ condition = "host-unknown"; text = "This host does not serve "..session.to_host });
329                         return;
330                 end
331                 if session.version >= 1.0 then
332                         send(st.stanza("stream:features")
333                                         :tag("dialback", { xmlns='urn:xmpp:features:dialback' }):tag("optional"):up():up());
334                 end
335         elseif session.direction == "outgoing" then
336                 -- If we are just using the connection for verifying dialback keys, we won't try and auth it
337                 if not attr.id then error("stream response did not give us a streamid!!!"); end
338                 session.streamid = attr.id;
339         
340                 -- Send unauthed buffer
341                 -- (stanzas which are fine to send before dialback)
342                 -- Note that this is *not* the stanza queue (which 
343                 -- we can only send if auth succeeds) :)
344                 local send_buffer = session.send_buffer;
345                 if send_buffer and #send_buffer > 0 then
346                         log("debug", "Sending s2s send_buffer now...");
347                         for i, data in ipairs(send_buffer) do
348                                 session.sends2s(tostring(data));
349                                 send_buffer[i] = nil;
350                         end
351                 end
352                 session.send_buffer = nil;
353         
354                 if not session.dialback_verifying then
355                         initiate_dialback(session);
356                 else
357                         mark_connected(session);
358                 end
359         end
360
361         session.notopen = nil;
362 end
363
364 function streamclosed(session)
365         (session.log or log)("debug", "</stream:stream>");
366         if session.sends2s then
367                 session.sends2s("</stream:stream>");
368         end
369         session.notopen = true;
370 end
371
372 function initiate_dialback(session)
373         -- generate dialback key
374         session.dialback_key = generate_dialback(session.streamid, session.to_host, session.from_host);
375         session.sends2s(format("<db:result from='%s' to='%s'>%s</db:result>", session.from_host, session.to_host, session.dialback_key));
376         session.log("info", "sent dialback key on outgoing s2s stream");
377 end
378
379 function generate_dialback(id, to, from)
380         return sha256_hash(id..to..from..dialback_secret, true);
381 end
382
383 function verify_dialback(id, to, from, key)
384         return key == generate_dialback(id, to, from);
385 end
386
387 function make_authenticated(session, host)
388         if session.type == "s2sout_unauthed" then
389                 session.type = "s2sout";
390         elseif session.type == "s2sin_unauthed" then
391                 session.type = "s2sin";
392                 if host then
393                         session.hosts[host].authed = true;
394                 end
395         elseif session.type == "s2sin" and host then
396                 session.hosts[host].authed = true;
397         else
398                 return false;
399         end
400         session.log("debug", "connection %s->%s is now authenticated", session.from_host or "(unknown)", session.to_host or "(unknown)");
401         
402         mark_connected(session);
403         
404         return true;
405 end
406
407 function mark_connected(session)
408         local sendq, send = session.sendq, session.sends2s;
409         
410         local from, to = session.from_host, session.to_host;
411         
412         session.log("info", session.direction.." s2s connection "..from.."->"..to.." complete");
413         
414         local send_to_host = send_to_host;
415         function session.send(data) send_to_host(to, from, data); end
416         
417         
418         if session.direction == "outgoing" then
419                 if sendq then
420                         session.log("debug", "sending "..#sendq.." queued stanzas across new outgoing connection to "..session.to_host);
421                         for i, data in ipairs(sendq) do
422                                 send(data[1]);
423                                 sendq[i] = nil;
424                         end
425                         session.sendq = nil;
426                 end
427                 
428                 session.srv_hosts = nil;
429         end
430 end
431
432 function destroy_session(session)
433         (session.log or log)("info", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host));
434         
435         if session.direction == "outgoing" then
436                 hosts[session.from_host].s2sout[session.to_host] = nil;
437                 bounce_sendq(session);
438         elseif session.direction == "incoming" then
439                 incoming_s2s[session] = nil;
440         end
441         
442         for k in pairs(session) do
443                 if k ~= "trace" then
444                         session[k] = nil;
445                 end
446         end
447 end
448
449 return _M;