prosody: Read list of possible config extensions from configmanager, removes old...
[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, connect)
152                 local host_session = { to_host = to_host, from_host = from_host, host = from_host,
153                                        notopen = true, type = "s2sout_unauthed", direction = "outgoing",
154                                        open_stream = session_open_stream };
155                 
156                 hosts[from_host].s2sout[to_host] = host_session;
157                 
158                 local log;
159                 do
160                         local conn_name = "s2sout"..tostring(host_session):match("[a-f0-9]*$");
161                         log = logger_init(conn_name);
162                         host_session.log = log;
163                 end
164                 
165                 if connect ~= false then
166                         -- Kick the connection attempting machine into life
167                         attempt_connection(host_session);
168                 end
169                 
170                 if not host_session.sends2s then
171                         -- A sends2s which buffers data (until the stream is opened)
172                         -- note that data in this buffer will be sent before the stream is authed
173                         -- and will not be ack'd in any way, successful or otherwise
174                         local buffer;
175                         function host_session.sends2s(data)
176                                 if not buffer then
177                                         buffer = {};
178                                         host_session.send_buffer = buffer;
179                                 end
180                                 log("debug", "Buffering data on unconnected s2sout to %s", to_host);
181                                 buffer[#buffer+1] = data;
182                                 log("debug", "Buffered item %d: %s", #buffer, tostring(data));
183                         end
184                         
185                 end
186
187                 return host_session;
188 end
189
190
191 function attempt_connection(host_session, err)
192         local from_host, to_host = host_session.from_host, host_session.to_host;
193         local connect_host, connect_port = idna_to_ascii(to_host), 5269;
194         
195         if not connect_host then
196                 return false;
197         end
198         
199         if not err then -- This is our first attempt
200                 log("debug", "First attempt to connect to %s, starting with SRV lookup...", to_host);
201                 host_session.connecting = true;
202                 local handle;
203                 handle = adns.lookup(function (answer)
204                         handle = nil;
205                         host_session.connecting = nil;
206                         if answer then
207                                 log("debug", to_host.." has SRV records, handling...");
208                                 local srv_hosts = {};
209                                 host_session.srv_hosts = srv_hosts;
210                                 for _, record in ipairs(answer) do
211                                         t_insert(srv_hosts, record.srv);
212                                 end
213                                 t_sort(srv_hosts, compare_srv_priorities);
214                                 
215                                 local srv_choice = srv_hosts[1];
216                                 host_session.srv_choice = 1;
217                                 if srv_choice then
218                                         connect_host, connect_port = srv_choice.target or to_host, srv_choice.port or connect_port;
219                                         log("debug", "Best record found, will connect to %s:%d", connect_host, connect_port);
220                                 end
221                         else
222                                 log("debug", to_host.." has no SRV records, falling back to A");
223                         end
224                         -- Try with SRV, or just the plain hostname if no SRV
225                         local ok, err = try_connect(host_session, connect_host, connect_port);
226                         if not ok then
227                                 if not attempt_connection(host_session, err) then
228                                         -- No more attempts will be made
229                                         destroy_session(host_session, err);
230                                 end
231                         end
232                 end, "_xmpp-server._tcp."..connect_host..".", "SRV");
233                 
234                 -- Set handler for DNS timeout
235                 add_task(dns_timeout, function ()
236                         if handle then
237                                 adns.cancel(handle, true);
238                         end
239                 end);
240                 
241                 log("debug", "DNS lookup for %s sent, waiting for response before we can connect", to_host);
242                 return true; -- Attempt in progress
243         elseif host_session.srv_hosts and #host_session.srv_hosts > host_session.srv_choice then -- Not our first attempt, and we also have SRV
244                 host_session.srv_choice = host_session.srv_choice + 1;
245                 local srv_choice = host_session.srv_hosts[host_session.srv_choice];
246                 connect_host, connect_port = srv_choice.target or to_host, srv_choice.port or connect_port;
247                 host_session.log("info", "Connection failed (%s). Attempt #%d: This time to %s:%d", tostring(err), host_session.srv_choice, connect_host, connect_port);
248         else
249                 host_session.log("info", "Out of connection options, can't connect to %s", tostring(host_session.to_host));
250                 -- We're out of options
251                 return false;
252         end
253         
254         if not (connect_host and connect_port) then
255                 -- Likely we couldn't resolve DNS
256                 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));
257                 return false;
258         end
259         
260         return try_connect(host_session, connect_host, connect_port);
261 end
262
263 function try_connect(host_session, connect_host, connect_port)
264         host_session.connecting = true;
265         local handle;
266         handle = adns.lookup(function (reply)
267                 handle = nil;
268                 host_session.connecting = nil;
269                 
270                 -- COMPAT: This is a compromise for all you CNAME-(ab)users :)
271                 if not (reply and reply[#reply] and reply[#reply].a) then
272                         local count = max_dns_depth;
273                         reply = dns.peek(connect_host, "CNAME", "IN");
274                         while count > 0 and reply and reply[#reply] and not reply[#reply].a and reply[#reply].cname do
275                                 log("debug", "Looking up %s (DNS depth is %d)", tostring(reply[#reply].cname), count);
276                                 reply = dns.peek(reply[#reply].cname, "A", "IN") or dns.peek(reply[#reply].cname, "CNAME", "IN");
277                                 count = count - 1;
278                         end
279                 end
280                 -- end of CNAME resolving
281                 
282                 if reply and reply[#reply] and reply[#reply].a then
283                         log("debug", "DNS reply for %s gives us %s", connect_host, reply[#reply].a);
284                         return make_connect(host_session, reply[#reply].a, connect_port);
285                 else
286                         log("debug", "DNS lookup failed to get a response for %s", connect_host);
287                         if not attempt_connection(host_session, "name resolution failed") then -- Retry if we can
288                                 log("debug", "No other records to try for %s - destroying", host_session.to_host);
289                                 destroy_session(host_session, "DNS resolution failed"); -- End of the line, we can't
290                         end
291                 end
292         end, connect_host, "A", "IN");
293
294         -- Set handler for DNS timeout
295         add_task(dns_timeout, function ()
296                 if handle then
297                         adns.cancel(handle, true);
298                 end
299         end);
300         
301         return true;
302 end
303
304 function make_connect(host_session, connect_host, connect_port)
305         host_session.log("info", "Beginning new connection attempt to %s (%s:%d)", host_session.to_host, connect_host, connect_port);
306         -- Ok, we're going to try to connect
307         
308         local from_host, to_host = host_session.from_host, host_session.to_host;
309         
310         local conn, handler = socket.tcp()
311
312         conn:settimeout(0);
313         local success, err = conn:connect(connect_host, connect_port);
314         if not success and err ~= "timeout" then
315                 log("warn", "s2s connect() to %s (%s:%d) failed: %s", host_session.to_host, connect_host, connect_port, err);
316                 return false, err;
317         end
318         
319         local cl = connlisteners_get("xmppserver");
320         conn = wrapclient(conn, connect_host, connect_port, cl, cl.default_mode or 1, hosts[from_host].ssl_ctx, false );
321         host_session.conn = conn;
322         
323         -- Register this outgoing connection so that xmppserver_listener knows about it
324         -- otherwise it will assume it is a new incoming connection
325         cl.register_outgoing(conn, host_session);
326         
327         local w, log = conn.write, host_session.log;
328         host_session.sends2s = function (t) log("debug", "sending: %s", (t.top_tag and t:top_tag()) or t:match("^[^>]*>?")); w(conn, tostring(t)); end
329         
330         host_session:open_stream();
331         
332         log("debug", "Connection attempt in progress...");
333         add_task(connect_timeout, function ()
334                 if host_session.conn ~= conn or
335                    host_session.type == "s2sout" or
336                    host_session.connecting then
337                         return; -- Ok, we're connect[ed|ing]
338                 end
339                 -- Not connected, need to close session and clean up
340                 (host_session.log or log)("warn", "Destroying incomplete session %s->%s due to inactivity",
341                     host_session.from_host or "(unknown)", host_session.to_host or "(unknown)");
342                 host_session:close("connection-timeout");
343         end);
344         return true;
345 end
346
347 function session_open_stream(session, from, to)
348         session.sends2s(st.stanza("stream:stream", {
349                 xmlns='jabber:server', ["xmlns:db"]='jabber:server:dialback',
350                 ["xmlns:stream"]='http://etherx.jabber.org/streams',
351                 from=from, to=to, version='1.0', ["xml:lang"]='en'}):top_tag());
352 end
353
354 function streamopened(session, attr)
355         local send = session.sends2s;
356         
357         -- TODO: #29: SASL/TLS on s2s streams
358         session.version = tonumber(attr.version) or 0;
359         
360         if session.secure == false then
361                 session.secure = true;
362         end
363         
364         if session.version >= 1.0 and not (attr.to and attr.from) then
365                 (session.log or log)("warn", "Remote of stream "..(session.from_host or "(unknown)").."->"..(session.to_host or "(unknown)")
366                         .." failed to specify to (%s) and/or from (%s) hostname as per RFC", tostring(attr.to), tostring(attr.from));
367         end
368         
369         if session.direction == "incoming" then
370                 -- Send a reply stream header
371                 session.to_host = attr.to and nameprep(attr.to);
372                 session.from_host = attr.from and nameprep(attr.from);
373         
374                 session.streamid = uuid_gen();
375                 (session.log or log)("debug", "incoming s2s received <stream:stream>");
376                 if session.to_host and not hosts[session.to_host] then
377                         -- Attempting to connect to a host we don't serve
378                         session:close({ condition = "host-unknown"; text = "This host does not serve "..session.to_host });
379                         return;
380                 end
381                 send("<?xml version='1.0'?>");
382                 send(stanza("stream:stream", { xmlns='jabber:server', ["xmlns:db"]='jabber:server:dialback',
383                                 ["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());
384                 if session.version >= 1.0 then
385                         local features = st.stanza("stream:features");
386                         
387                         if session.to_host then
388                                 hosts[session.to_host].events.fire_event("s2s-stream-features", { session = session, features = features });
389                         else
390                                 (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");
391                         end
392                         
393                         log("debug", "Sending stream features: %s", tostring(features));
394                         send(features);
395                 end
396         elseif session.direction == "outgoing" then
397                 -- If we are just using the connection for verifying dialback keys, we won't try and auth it
398                 if not attr.id then error("stream response did not give us a streamid!!!"); end
399                 session.streamid = attr.id;
400         
401                 -- Send unauthed buffer
402                 -- (stanzas which are fine to send before dialback)
403                 -- Note that this is *not* the stanza queue (which
404                 -- we can only send if auth succeeds) :)
405                 local send_buffer = session.send_buffer;
406                 if send_buffer and #send_buffer > 0 then
407                         log("debug", "Sending s2s send_buffer now...");
408                         for i, data in ipairs(send_buffer) do
409                                 session.sends2s(tostring(data));
410                                 send_buffer[i] = nil;
411                         end
412                 end
413                 session.send_buffer = nil;
414         
415                 -- If server is pre-1.0, don't wait for features, just do dialback
416                 if session.version < 1.0 then
417                         if not session.dialback_verifying then
418                                 log("debug", "Initiating dialback...");
419                                 initiate_dialback(session);
420                         else
421                                 mark_connected(session);
422                         end
423                 end
424         end
425         session.notopen = nil;
426 end
427
428 function streamclosed(session)
429         (session.log or log)("debug", "</stream:stream>");
430         if session.sends2s then
431                 session.sends2s("</stream:stream>");
432         end
433         session.notopen = true;
434 end
435
436 function initiate_dialback(session)
437         -- generate dialback key
438         session.dialback_key = generate_dialback(session.streamid, session.to_host, session.from_host);
439         session.sends2s(format("<db:result from='%s' to='%s'>%s</db:result>", session.from_host, session.to_host, session.dialback_key));
440         session.log("info", "sent dialback key on outgoing s2s stream");
441 end
442
443 function generate_dialback(id, to, from)
444         return sha256_hash(id..to..from..hosts[from].dialback_secret, true);
445 end
446
447 function verify_dialback(id, to, from, key)
448         return key == generate_dialback(id, to, from);
449 end
450
451 function make_authenticated(session, host)
452         if session.type == "s2sout_unauthed" then
453                 session.type = "s2sout";
454         elseif session.type == "s2sin_unauthed" then
455                 session.type = "s2sin";
456                 if host then
457                         session.hosts[host].authed = true;
458                 end
459         elseif session.type == "s2sin" and host then
460                 session.hosts[host].authed = true;
461         else
462                 return false;
463         end
464         session.log("debug", "connection %s->%s is now authenticated", session.from_host or "(unknown)", session.to_host or "(unknown)");
465         
466         mark_connected(session);
467         
468         return true;
469 end
470
471 -- Stream is authorised, and ready for normal stanzas
472 function mark_connected(session)
473         local sendq, send = session.sendq, session.sends2s;
474         
475         local from, to = session.from_host, session.to_host;
476         
477         session.log("info", session.direction.." s2s connection "..from.."->"..to.." complete");
478         
479         local send_to_host = send_to_host;
480         function session.send(data) send_to_host(to, from, data); end
481         
482         
483         if session.direction == "outgoing" then
484                 if sendq then
485                         session.log("debug", "sending "..#sendq.." queued stanzas across new outgoing connection to "..session.to_host);
486                         for i, data in ipairs(sendq) do
487                                 send(data[1]);
488                                 sendq[i] = nil;
489                         end
490                         session.sendq = nil;
491                 end
492                 
493                 session.srv_hosts = nil;
494         end
495 end
496
497 function destroy_session(session, reason)
498         (session.log or log)("info", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host));
499         
500         if session.direction == "outgoing" then
501                 hosts[session.from_host].s2sout[session.to_host] = nil;
502                 bounce_sendq(session, reason);
503         elseif session.direction == "incoming" then
504                 incoming_s2s[session] = nil;
505         end
506         
507         for k in pairs(session) do
508                 if k ~= "trace" then
509                         session[k] = nil;
510                 end
511         end
512 end
513
514 return _M;