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