Comparison

core/s2smanager.lua @ 4555:3dce04129693

s2smanager, mod_s2s, mod_s2s/s2sout: Split connection handling out of s2smanager into mod_s2s, and further split connection logic for s2sout to a module lib, s2sout.lib.lua
author Matthew Wild <mwild1@gmail.com>
date Mon, 23 Jan 2012 16:28:20 +0000
parent 4461:a81d045e7d16
child 4566:afd09bfa0884
comparison
equal deleted inserted replaced
4554:6ceabde7af91 4555:3dce04129693
7 -- 7 --
8 8
9 9
10 10
11 local hosts = hosts; 11 local hosts = hosts;
12 local sessions = sessions;
13 local core_process_stanza = function(a, b) core_process_stanza(a, b); end 12 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; 13 local format = string.format;
17 local t_insert, t_sort = table.insert, table.sort; 14 local t_insert, t_sort = table.insert, table.sort;
18 local get_traceback = debug.traceback; 15 local get_traceback = debug.traceback;
19 local tostring, pairs, ipairs, getmetatable, newproxy, type, error, tonumber, setmetatable 16 local tostring, pairs, ipairs, getmetatable, newproxy, type, error, tonumber, setmetatable
20 = tostring, pairs, ipairs, getmetatable, newproxy, type, error, tonumber, setmetatable; 17 = tostring, pairs, ipairs, getmetatable, newproxy, type, error, tonumber, setmetatable;
21 18
22 local idna_to_ascii = require "util.encodings".idna.to_ascii;
23 local connlisteners_get = require "net.connlisteners".get;
24 local initialize_filters = require "util.filters".initialize; 19 local initialize_filters = require "util.filters".initialize;
25 local wrapclient = require "net.server".wrapclient; 20 local wrapclient = require "net.server".wrapclient;
26 local st = require "stanza"; 21 local st = require "stanza";
27 local stanza = st.stanza; 22 local stanza = st.stanza;
28 local nameprep = require "util.encodings".stringprep.nameprep; 23 local nameprep = require "util.encodings".stringprep.nameprep;
39 34
40 local sha256_hash = require "util.hashes".sha256; 35 local sha256_hash = require "util.hashes".sha256;
41 36
42 local adns, dns = require "net.adns", require "net.dns"; 37 local adns, dns = require "net.adns", require "net.dns";
43 local config = require "core.configmanager"; 38 local config = require "core.configmanager";
44 local connect_timeout = config.get("*", "core", "s2s_timeout") or 60;
45 local dns_timeout = config.get("*", "core", "dns_timeout") or 15; 39 local dns_timeout = config.get("*", "core", "dns_timeout") or 15;
46 local max_dns_depth = config.get("*", "core", "dns_max_depth") or 3; 40 local max_dns_depth = config.get("*", "core", "dns_max_depth") or 3;
41 local cfg_sources = config.get("*", "core", "s2s_interface")
42 or config.get("*", "core", "interface");
47 local sources; 43 local sources;
48 44
45 --FIXME: s2sout should create its own resolver w/ timeout
49 dns.settimeout(dns_timeout); 46 dns.settimeout(dns_timeout);
50 47
51 local prosody = _G.prosody; 48 local prosody = _G.prosody;
52 incoming_s2s = {}; 49 incoming_s2s = {};
53 prosody.incoming_s2s = incoming_s2s; 50 prosody.incoming_s2s = incoming_s2s;
54 local incoming_s2s = incoming_s2s; 51 local incoming_s2s = incoming_s2s;
55 52
56 module "s2smanager" 53 module "s2smanager"
57
58 function compare_srv_priorities(a,b)
59 return a.priority < b.priority or (a.priority == b.priority and a.weight > b.weight);
60 end
61
62 local bouncy_stanzas = { message = true, presence = true, iq = true };
63 local function bounce_sendq(session, reason)
64 local sendq = session.sendq;
65 if sendq then
66 session.log("info", "sending error replies for "..#sendq.." queued stanzas because of failed outgoing connection to "..tostring(session.to_host));
67 local dummy = {
68 type = "s2sin";
69 send = function(s)
70 (session.log or log)("error", "Replying to to an s2s error reply, please report this! Traceback: %s", get_traceback());
71 end;
72 dummy = true;
73 };
74 for i, data in ipairs(sendq) do
75 local reply = data[2];
76 if reply and not(reply.attr.xmlns) and bouncy_stanzas[reply.name] then
77 reply.attr.type = "error";
78 reply:tag("error", {type = "cancel"})
79 :tag("remote-server-not-found", {xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas"}):up();
80 if reason then
81 reply:tag("text", {xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas"})
82 :text("Server-to-server connection failed: "..reason):up();
83 end
84 core_process_stanza(dummy, reply);
85 end
86 sendq[i] = nil;
87 end
88 session.sendq = nil;
89 end
90 end
91
92 function send_to_host(from_host, to_host, data)
93 if not hosts[from_host] then
94 log("warn", "Attempt to send stanza from %s - a host we don't serve", from_host);
95 return false;
96 end
97 local host = hosts[from_host].s2sout[to_host];
98 if host then
99 -- We have a connection to this host already
100 if host.type == "s2sout_unauthed" and (data.name ~= "db:verify" or not host.dialback_key) then
101 (host.log or log)("debug", "trying to send over unauthed s2sout to "..to_host);
102
103 -- Queue stanza until we are able to send it
104 if host.sendq then t_insert(host.sendq, {tostring(data), data.attr.type ~= "error" and data.attr.type ~= "result" and st.reply(data)});
105 else host.sendq = { {tostring(data), data.attr.type ~= "error" and data.attr.type ~= "result" and st.reply(data)} }; end
106 host.log("debug", "stanza [%s] queued ", data.name);
107 elseif host.type == "local" or host.type == "component" then
108 log("error", "Trying to send a stanza to ourselves??")
109 log("error", "Traceback: %s", get_traceback());
110 log("error", "Stanza: %s", tostring(data));
111 return false;
112 else
113 (host.log or log)("debug", "going to send stanza to "..to_host.." from "..from_host);
114 -- FIXME
115 if host.from_host ~= from_host then
116 log("error", "WARNING! This might, possibly, be a bug, but it might not...");
117 log("error", "We are going to send from %s instead of %s", tostring(host.from_host), tostring(from_host));
118 end
119 host.sends2s(data);
120 host.log("debug", "stanza sent over "..host.type);
121 end
122 else
123 log("debug", "opening a new outgoing connection for this stanza");
124 local host_session = new_outgoing(from_host, to_host);
125
126 -- Store in buffer
127 host_session.sendq = { {tostring(data), data.attr.type ~= "error" and data.attr.type ~= "result" and st.reply(data)} };
128 log("debug", "stanza [%s] queued until connection complete", tostring(data.name));
129 if (not host_session.connecting) and (not host_session.conn) then
130 log("warn", "Connection to %s failed already, destroying session...", to_host);
131 if not destroy_session(host_session, "Connection failed") then
132 -- Already destroyed, we need to bounce our stanza
133 bounce_sendq(host_session, host_session.destruction_reason);
134 end
135 return false;
136 end
137 end
138 return true;
139 end
140 54
141 local open_sessions = 0; 55 local open_sessions = 0;
142 56
143 function new_incoming(conn) 57 function new_incoming(conn)
144 local session = { conn = conn, type = "s2sin_unauthed", direction = "incoming", hosts = {} }; 58 local session = { conn = conn, type = "s2sin_unauthed", direction = "incoming", hosts = {} };
145 if true then 59 if true then
146 session.trace = newproxy(true); 60 session.trace = newproxy(true);
147 getmetatable(session.trace).__gc = function () open_sessions = open_sessions - 1; end; 61 getmetatable(session.trace).__gc = function () open_sessions = open_sessions - 1; end;
148 end 62 end
149 open_sessions = open_sessions + 1; 63 open_sessions = open_sessions + 1;
150 local w, log = conn.write, logger_init("s2sin"..tostring(conn):match("[a-f0-9]+$")); 64 session.log = logger_init("s2sin"..tostring(conn):match("[a-f0-9]+$"));
151 session.log = log;
152 local filter = initialize_filters(session);
153 session.sends2s = function (t)
154 log("debug", "sending: %s", t.top_tag and t:top_tag() or t:match("^([^>]*>?)"));
155 if t.name then
156 t = filter("stanzas/out", t);
157 end
158 if t then
159 t = filter("bytes/out", tostring(t));
160 if t then
161 return w(conn, t);
162 end
163 end
164 end
165 incoming_s2s[session] = true; 65 incoming_s2s[session] = true;
166 add_task(connect_timeout, function ()
167 if session.conn ~= conn or
168 session.type == "s2sin" then
169 return; -- Ok, we're connect[ed|ing]
170 end
171 -- Not connected, need to close session and clean up
172 (session.log or log)("debug", "Destroying incomplete session %s->%s due to inactivity",
173 session.from_host or "(unknown)", session.to_host or "(unknown)");
174 session:close("connection-timeout");
175 end);
176 return session; 66 return session;
177 end 67 end
178 68
179 function new_outgoing(from_host, to_host, connect) 69 function new_outgoing(from_host, to_host, connect)
180 local host_session = { to_host = to_host, from_host = from_host, host = from_host, 70 local host_session = { to_host = to_host, from_host = from_host, host = from_host,
181 notopen = true, type = "s2sout_unauthed", direction = "outgoing", 71 notopen = true, type = "s2sout_unauthed", direction = "outgoing" };
182 open_stream = session_open_stream }; 72 hosts[from_host].s2sout[to_host] = host_session;
183 73 local conn_name = "s2sout"..tostring(host_session):match("[a-f0-9]*$");
184 hosts[from_host].s2sout[to_host] = host_session; 74 host_session.log = logger_init(conn_name);
185 75 return host_session;
186 host_session.close = destroy_session; -- This gets replaced by xmppserver_listener later
187
188 local log;
189 do
190 local conn_name = "s2sout"..tostring(host_session):match("[a-f0-9]*$");
191 log = logger_init(conn_name);
192 host_session.log = log;
193 end
194
195 initialize_filters(host_session);
196
197 if connect ~= false then
198 -- Kick the connection attempting machine into life
199 if not attempt_connection(host_session) then
200 -- Intentionally not returning here, the
201 -- session is needed, connected or not
202 destroy_session(host_session);
203 end
204 end
205
206 if not host_session.sends2s then
207 -- A sends2s which buffers data (until the stream is opened)
208 -- note that data in this buffer will be sent before the stream is authed
209 -- and will not be ack'd in any way, successful or otherwise
210 local buffer;
211 function host_session.sends2s(data)
212 if not buffer then
213 buffer = {};
214 host_session.send_buffer = buffer;
215 end
216 log("debug", "Buffering data on unconnected s2sout to %s", to_host);
217 buffer[#buffer+1] = data;
218 log("debug", "Buffered item %d: %s", #buffer, tostring(data));
219 end
220 end
221
222 return host_session;
223 end
224
225
226 function attempt_connection(host_session, err)
227 local from_host, to_host = host_session.from_host, host_session.to_host;
228 local connect_host, connect_port = to_host and idna_to_ascii(to_host), 5269;
229
230 if not connect_host then
231 return false;
232 end
233
234 if not err then -- This is our first attempt
235 log("debug", "First attempt to connect to %s, starting with SRV lookup...", to_host);
236 host_session.connecting = true;
237 local handle;
238 handle = adns.lookup(function (answer)
239 handle = nil;
240 host_session.connecting = nil;
241 if answer then
242 log("debug", to_host.." has SRV records, handling...");
243 local srv_hosts = {};
244 host_session.srv_hosts = srv_hosts;
245 for _, record in ipairs(answer) do
246 t_insert(srv_hosts, record.srv);
247 end
248 if #srv_hosts == 1 and srv_hosts[1].target == "." then
249 log("debug", to_host.." does not provide a XMPP service");
250 destroy_session(host_session, err); -- Nothing to see here
251 return;
252 end
253 t_sort(srv_hosts, compare_srv_priorities);
254
255 local srv_choice = srv_hosts[1];
256 host_session.srv_choice = 1;
257 if srv_choice then
258 connect_host, connect_port = srv_choice.target or to_host, srv_choice.port or connect_port;
259 log("debug", "Best record found, will connect to %s:%d", connect_host, connect_port);
260 end
261 else
262 log("debug", to_host.." has no SRV records, falling back to A");
263 end
264 -- Try with SRV, or just the plain hostname if no SRV
265 local ok, err = try_connect(host_session, connect_host, connect_port);
266 if not ok then
267 if not attempt_connection(host_session, err) then
268 -- No more attempts will be made
269 destroy_session(host_session, err);
270 end
271 end
272 end, "_xmpp-server._tcp."..connect_host..".", "SRV");
273
274 return true; -- Attempt in progress
275 elseif host_session.ip_hosts then
276 return try_connect(host_session, connect_host, connect_port, err);
277 elseif host_session.srv_hosts and #host_session.srv_hosts > host_session.srv_choice then -- Not our first attempt, and we also have SRV
278 host_session.srv_choice = host_session.srv_choice + 1;
279 local srv_choice = host_session.srv_hosts[host_session.srv_choice];
280 connect_host, connect_port = srv_choice.target or to_host, srv_choice.port or connect_port;
281 host_session.log("info", "Connection failed (%s). Attempt #%d: This time to %s:%d", tostring(err), host_session.srv_choice, connect_host, connect_port);
282 else
283 host_session.log("info", "Out of connection options, can't connect to %s", tostring(host_session.to_host));
284 -- We're out of options
285 return false;
286 end
287
288 if not (connect_host and connect_port) then
289 -- Likely we couldn't resolve DNS
290 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));
291 return false;
292 end
293
294 return try_connect(host_session, connect_host, connect_port);
295 end
296
297 function try_next_ip(host_session)
298 host_session.connecting = nil;
299 host_session.ip_choice = host_session.ip_choice + 1;
300 local ip = host_session.ip_hosts[host_session.ip_choice];
301 local ok, err= make_connect(host_session, ip.ip, ip.port);
302 if not ok then
303 if not attempt_connection(host_session, err or "closed") then
304 err = err and (": "..err) or "";
305 destroy_session(host_session, "Connection failed"..err);
306 end
307 end
308 end
309
310 function try_connect(host_session, connect_host, connect_port, err)
311 host_session.connecting = true;
312
313 if not err then
314 local IPs = {};
315 host_session.ip_hosts = IPs;
316 local handle4, handle6;
317 local has_other = false;
318
319 if not sources then
320 sources = {};
321 local cfg_sources = config.get("*", "core", "interface") or connlisteners_get("xmppserver").default_interface;
322 if type(cfg_sources) == "string" then
323 cfg_sources = { cfg_sources };
324 end
325 for i, source in ipairs(cfg_sources) do
326 if source == "*" then
327 sources[i] = new_ip("0.0.0.0", "IPv4");
328 else
329 sources[i] = new_ip(source, (source:find(":") and "IPv6") or "IPv4");
330 end
331 end
332 end
333
334 handle4 = adns.lookup(function (reply, err)
335 handle4 = nil;
336
337 -- COMPAT: This is a compromise for all you CNAME-(ab)users :)
338 if not (reply and reply[#reply] and reply[#reply].a) then
339 local count = max_dns_depth;
340 reply = dns.peek(connect_host, "CNAME", "IN");
341 while count > 0 and reply and reply[#reply] and not reply[#reply].a and reply[#reply].cname do
342 log("debug", "Looking up %s (DNS depth is %d)", tostring(reply[#reply].cname), count);
343 reply = dns.peek(reply[#reply].cname, "A", "IN") or dns.peek(reply[#reply].cname, "CNAME", "IN");
344 count = count - 1;
345 end
346 end
347 -- end of CNAME resolving
348
349 if reply and reply[#reply] and reply[#reply].a then
350 for _, ip in ipairs(reply) do
351 log("debug", "DNS reply for %s gives us %s", connect_host, ip.a);
352 IPs[#IPs+1] = new_ip(ip.a, "IPv4");
353 end
354 end
355
356 if has_other then
357 if #IPs > 0 then
358 rfc3484_dest(host_session.ip_hosts, sources);
359 for i = 1, #IPs do
360 IPs[i] = {ip = IPs[i], port = connect_port};
361 end
362 host_session.ip_choice = 0;
363 try_next_ip(host_session);
364 else
365 log("debug", "DNS lookup failed to get a response for %s", connect_host);
366 host_session.ip_hosts = nil;
367 if not attempt_connection(host_session, "name resolution failed") then -- Retry if we can
368 log("debug", "No other records to try for %s - destroying", host_session.to_host);
369 err = err and (": "..err) or "";
370 destroy_session(host_session, "DNS resolution failed"..err); -- End of the line, we can't
371 end
372 end
373 else
374 has_other = true;
375 end
376 end, connect_host, "A", "IN");
377
378 handle6 = adns.lookup(function (reply, err)
379 handle6 = nil;
380
381 if reply and reply[#reply] and reply[#reply].aaaa then
382 for _, ip in ipairs(reply) do
383 log("debug", "DNS reply for %s gives us %s", connect_host, ip.aaaa);
384 IPs[#IPs+1] = new_ip(ip.aaaa, "IPv6");
385 end
386 end
387
388 if has_other then
389 if #IPs > 0 then
390 rfc3484_dest(host_session.ip_hosts, sources);
391 for i = 1, #IPs do
392 IPs[i] = {ip = IPs[i], port = connect_port};
393 end
394 host_session.ip_choice = 0;
395 try_next_ip(host_session);
396 else
397 log("debug", "DNS lookup failed to get a response for %s", connect_host);
398 host_session.ip_hosts = nil;
399 if not attempt_connection(host_session, "name resolution failed") then -- Retry if we can
400 log("debug", "No other records to try for %s - destroying", host_session.to_host);
401 err = err and (": "..err) or "";
402 destroy_session(host_session, "DNS resolution failed"..err); -- End of the line, we can't
403 end
404 end
405 else
406 has_other = true;
407 end
408 end, connect_host, "AAAA", "IN");
409
410 return true;
411 elseif host_session.ip_hosts and #host_session.ip_hosts > host_session.ip_choice then -- Not our first attempt, and we also have IPs left to try
412 try_next_ip(host_session);
413 else
414 host_session.ip_hosts = nil;
415 if not attempt_connection(host_session, "out of IP addresses") then -- Retry if we can
416 log("debug", "No other records to try for %s - destroying", host_session.to_host);
417 err = err and (": "..err) or "";
418 destroy_session(host_session, "Connecting failed"..err); -- End of the line, we can't
419 return false;
420 end
421 end
422
423 return true;
424 end
425
426 function make_connect(host_session, connect_host, connect_port)
427 (host_session.log or log)("info", "Beginning new connection attempt to %s ([%s]:%d)", host_session.to_host, connect_host.addr, connect_port);
428 -- Ok, we're going to try to connect
429
430 local from_host, to_host = host_session.from_host, host_session.to_host;
431
432 local conn, handler;
433 if connect_host.proto == "IPv4" then
434 conn, handler = socket.tcp();
435 else
436 conn, handler = socket.tcp6();
437 end
438
439 if not conn then
440 log("warn", "Failed to create outgoing connection, system error: %s", handler);
441 return false, handler;
442 end
443
444 conn:settimeout(0);
445 local success, err = conn:connect(connect_host.addr, connect_port);
446 if not success and err ~= "timeout" then
447 log("warn", "s2s connect() to %s (%s:%d) failed: %s", host_session.to_host, connect_host.addr, connect_port, err);
448 return false, err;
449 end
450
451 local cl = connlisteners_get("xmppserver");
452 conn = wrapclient(conn, connect_host.addr, connect_port, cl, cl.default_mode or 1 );
453 host_session.conn = conn;
454
455 local filter = initialize_filters(host_session);
456 local w, log = conn.write, host_session.log;
457 host_session.sends2s = function (t)
458 log("debug", "sending: %s", (t.top_tag and t:top_tag()) or t:match("^[^>]*>?"));
459 if t.name then
460 t = filter("stanzas/out", t);
461 end
462 if t then
463 t = filter("bytes/out", tostring(t));
464 if t then
465 return w(conn, tostring(t));
466 end
467 end
468 end
469
470 -- Register this outgoing connection so that xmppserver_listener knows about it
471 -- otherwise it will assume it is a new incoming connection
472 cl.register_outgoing(conn, host_session);
473
474 host_session:open_stream(from_host, to_host);
475
476 log("debug", "Connection attempt in progress...");
477 add_task(connect_timeout, function ()
478 if host_session.conn ~= conn or
479 host_session.type == "s2sout" or
480 host_session.connecting then
481 return; -- Ok, we're connect[ed|ing]
482 end
483 -- Not connected, need to close session and clean up
484 (host_session.log or log)("warn", "Destroying incomplete session %s->%s due to inactivity",
485 host_session.from_host or "(unknown)", host_session.to_host or "(unknown)");
486 host_session:close("connection-timeout");
487 end);
488 return true;
489 end
490
491 function session_open_stream(session, from, to)
492 session.sends2s(st.stanza("stream:stream", {
493 xmlns='jabber:server', ["xmlns:db"]='jabber:server:dialback',
494 ["xmlns:stream"]='http://etherx.jabber.org/streams',
495 from=from, to=to, version='1.0', ["xml:lang"]='en'}):top_tag());
496 end
497
498 local function check_cert_status(session)
499 local conn = session.conn:socket()
500 local cert
501 if conn.getpeercertificate then
502 cert = conn:getpeercertificate()
503 end
504
505 if cert then
506 local chain_valid, errors = conn:getpeerverification()
507 -- Is there any interest in printing out all/the number of errors here?
508 if not chain_valid then
509 (session.log or log)("debug", "certificate chain validation result: invalid");
510 session.cert_chain_status = "invalid";
511 else
512 (session.log or log)("debug", "certificate chain validation result: valid");
513 session.cert_chain_status = "valid";
514
515 local host = session.direction == "incoming" and session.from_host or session.to_host
516
517 -- We'll go ahead and verify the asserted identity if the
518 -- connecting server specified one.
519 if host then
520 if cert_verify_identity(host, "xmpp-server", cert) then
521 session.cert_identity_status = "valid"
522 else
523 session.cert_identity_status = "invalid"
524 end
525 end
526 end
527 end
528 end
529
530 function streamopened(session, attr)
531 local send = session.sends2s;
532
533 -- TODO: #29: SASL/TLS on s2s streams
534 session.version = tonumber(attr.version) or 0;
535
536 -- TODO: Rename session.secure to session.encrypted
537 if session.secure == false then
538 session.secure = true;
539 end
540
541 if session.direction == "incoming" then
542 -- Send a reply stream header
543 session.to_host = attr.to and nameprep(attr.to);
544 session.from_host = attr.from and nameprep(attr.from);
545
546 session.streamid = uuid_gen();
547 (session.log or log)("debug", "Incoming s2s received <stream:stream>");
548 if session.to_host then
549 if not hosts[session.to_host] then
550 -- Attempting to connect to a host we don't serve
551 session:close({
552 condition = "host-unknown";
553 text = "This host does not serve "..session.to_host
554 });
555 return;
556 elseif hosts[session.to_host].disallow_s2s then
557 -- Attempting to connect to a host that disallows s2s
558 session:close({
559 condition = "policy-violation";
560 text = "Server-to-server communication is not allowed to this host";
561 });
562 return;
563 end
564 end
565
566 if session.secure and not session.cert_chain_status then check_cert_status(session); end
567
568 send("<?xml version='1.0'?>");
569 send(stanza("stream:stream", { xmlns='jabber:server', ["xmlns:db"]='jabber:server:dialback',
570 ["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());
571 if session.version >= 1.0 then
572 local features = st.stanza("stream:features");
573
574 if session.to_host then
575 hosts[session.to_host].events.fire_event("s2s-stream-features", { origin = session, features = features });
576 else
577 (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");
578 end
579
580 log("debug", "Sending stream features: %s", tostring(features));
581 send(features);
582 end
583 elseif session.direction == "outgoing" then
584 -- If we are just using the connection for verifying dialback keys, we won't try and auth it
585 if not attr.id then error("stream response did not give us a streamid!!!"); end
586 session.streamid = attr.id;
587
588 if session.secure and not session.cert_chain_status then check_cert_status(session); end
589
590 -- Send unauthed buffer
591 -- (stanzas which are fine to send before dialback)
592 -- Note that this is *not* the stanza queue (which
593 -- we can only send if auth succeeds) :)
594 local send_buffer = session.send_buffer;
595 if send_buffer and #send_buffer > 0 then
596 log("debug", "Sending s2s send_buffer now...");
597 for i, data in ipairs(send_buffer) do
598 session.sends2s(tostring(data));
599 send_buffer[i] = nil;
600 end
601 end
602 session.send_buffer = nil;
603
604 -- If server is pre-1.0, don't wait for features, just do dialback
605 if session.version < 1.0 then
606 if not session.dialback_verifying then
607 log("debug", "Initiating dialback...");
608 initiate_dialback(session);
609 else
610 mark_connected(session);
611 end
612 end
613 end
614 session.notopen = nil;
615 end
616
617 function streamclosed(session)
618 (session.log or log)("debug", "Received </stream:stream>");
619 session:close();
620 end
621
622 function initiate_dialback(session)
623 -- generate dialback key
624 session.dialback_key = generate_dialback(session.streamid, session.to_host, session.from_host);
625 session.sends2s(format("<db:result from='%s' to='%s'>%s</db:result>", session.from_host, session.to_host, session.dialback_key));
626 session.log("info", "sent dialback key on outgoing s2s stream");
627 end
628
629 function generate_dialback(id, to, from)
630 return sha256_hash(id..to..from..hosts[from].dialback_secret, true);
631 end
632
633 function verify_dialback(id, to, from, key)
634 return key == generate_dialback(id, to, from);
635 end 76 end
636 77
637 function make_authenticated(session, host) 78 function make_authenticated(session, host)
638 if not session.secure then 79 if not session.secure then
639 local local_host = session.direction == "incoming" and session.to_host or session.from_host; 80 local local_host = session.direction == "incoming" and session.to_host or session.from_host;
731 if session.destroyed then return; end 172 if session.destroyed then return; end
732 (session.log or log)("debug", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host)..(reason and (": "..reason) or "")); 173 (session.log or log)("debug", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host)..(reason and (": "..reason) or ""));
733 174
734 if session.direction == "outgoing" then 175 if session.direction == "outgoing" then
735 hosts[session.from_host].s2sout[session.to_host] = nil; 176 hosts[session.from_host].s2sout[session.to_host] = nil;
736 bounce_sendq(session, reason); 177 session:bounce_sendq(reason);
737 elseif session.direction == "incoming" then 178 elseif session.direction == "incoming" then
738 incoming_s2s[session] = nil; 179 incoming_s2s[session] = nil;
739 end 180 end
740 181
741 local event_data = { session = session, reason = reason }; 182 local event_data = { session = session, reason = reason };