Merge
[prosody.git] / plugins / mod_s2s / mod_s2s.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 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 module:set_global();
10
11 local prosody = prosody;
12 local hosts = prosody.hosts;
13 local core_process_stanza = prosody.core_process_stanza;
14
15 local tostring, type = tostring, type;
16 local t_insert = table.insert;
17 local xpcall, traceback = xpcall, debug.traceback;
18 local NULL = {};
19
20 local add_task = require "util.timer".add_task;
21 local st = require "util.stanza";
22 local initialize_filters = require "util.filters".initialize;
23 local nameprep = require "util.encodings".stringprep.nameprep;
24 local new_xmpp_stream = require "util.xmppstream".new;
25 local s2s_new_incoming = require "core.s2smanager".new_incoming;
26 local s2s_new_outgoing = require "core.s2smanager".new_outgoing;
27 local s2s_destroy_session = require "core.s2smanager".destroy_session;
28 local uuid_gen = require "util.uuid".generate;
29 local cert_verify_identity = require "util.x509".verify_identity;
30 local fire_global_event = prosody.events.fire_event;
31
32 local s2sout = module:require("s2sout");
33
34 local connect_timeout = module:get_option_number("s2s_timeout", 90);
35 local stream_close_timeout = module:get_option_number("s2s_close_timeout", 5);
36 local opt_keepalives = module:get_option_boolean("s2s_tcp_keepalives", module:get_option_boolean("tcp_keepalives", true));
37 local secure_auth = module:get_option_boolean("s2s_secure_auth", false); -- One day...
38 local secure_domains, insecure_domains =
39         module:get_option_set("s2s_secure_domains", {})._items, module:get_option_set("s2s_insecure_domains", {})._items;
40 local require_encryption = module:get_option_boolean("s2s_require_encryption", false);
41
42 local sessions = module:shared("sessions");
43
44 local log = module._log;
45
46 --- Handle stanzas to remote domains
47
48 local bouncy_stanzas = { message = true, presence = true, iq = true };
49 local function bounce_sendq(session, reason)
50         local sendq = session.sendq;
51         if not sendq then return; end
52         session.log("info", "sending error replies for "..#sendq.." queued stanzas because of failed outgoing connection to "..tostring(session.to_host));
53         local dummy = {
54                 type = "s2sin";
55                 send = function(s)
56                         (session.log or log)("error", "Replying to to an s2s error reply, please report this! Traceback: %s", traceback());
57                 end;
58                 dummy = true;
59         };
60         for i, data in ipairs(sendq) do
61                 local reply = data[2];
62                 if reply and not(reply.attr.xmlns) and bouncy_stanzas[reply.name] then
63                         reply.attr.type = "error";
64                         reply:tag("error", {type = "cancel"})
65                                 :tag("remote-server-not-found", {xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas"}):up();
66                         if reason then
67                                 reply:tag("text", {xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas"})
68                                         :text("Server-to-server connection failed: "..reason):up();
69                         end
70                         core_process_stanza(dummy, reply);
71                 end
72                 sendq[i] = nil;
73         end
74         session.sendq = nil;
75 end
76
77 -- Handles stanzas to existing s2s sessions
78 function route_to_existing_session(event)
79         local from_host, to_host, stanza = event.from_host, event.to_host, event.stanza;
80         if not hosts[from_host] then
81                 log("warn", "Attempt to send stanza from %s - a host we don't serve", from_host);
82                 return false;
83         end
84         if hosts[to_host] then
85                 log("warn", "Attempt to route stanza to a remote %s - a host we do serve?!", from_host);
86                 return false;
87         end
88         local host = hosts[from_host].s2sout[to_host];
89         if host then
90                 -- We have a connection to this host already
91                 if host.type == "s2sout_unauthed" and (stanza.name ~= "db:verify" or not host.dialback_key) then
92                         (host.log or log)("debug", "trying to send over unauthed s2sout to "..to_host);
93
94                         -- Queue stanza until we are able to send it
95                         if host.sendq then t_insert(host.sendq, {tostring(stanza), stanza.attr.type ~= "error" and stanza.attr.type ~= "result" and st.reply(stanza)});
96                         else host.sendq = { {tostring(stanza), stanza.attr.type ~= "error" and stanza.attr.type ~= "result" and st.reply(stanza)} }; end
97                         host.log("debug", "stanza [%s] queued ", stanza.name);
98                         return true;
99                 elseif host.type == "local" or host.type == "component" then
100                         log("error", "Trying to send a stanza to ourselves??")
101                         log("error", "Traceback: %s", traceback());
102                         log("error", "Stanza: %s", tostring(stanza));
103                         return false;
104                 else
105                         (host.log or log)("debug", "going to send stanza to "..to_host.." from "..from_host);
106                         -- FIXME
107                         if host.from_host ~= from_host then
108                                 log("error", "WARNING! This might, possibly, be a bug, but it might not...");
109                                 log("error", "We are going to send from %s instead of %s", tostring(host.from_host), tostring(from_host));
110                         end
111                         if host.sends2s(stanza) then
112                                 host.log("debug", "stanza sent over %s", host.type);
113                                 return true;
114                         end
115                 end
116         end
117 end
118
119 -- Create a new outgoing session for a stanza
120 function route_to_new_session(event)
121         local from_host, to_host, stanza = event.from_host, event.to_host, event.stanza;
122         log("debug", "opening a new outgoing connection for this stanza");
123         local host_session = s2s_new_outgoing(from_host, to_host);
124
125         -- Store in buffer
126         host_session.bounce_sendq = bounce_sendq;
127         host_session.sendq = { {tostring(stanza), stanza.attr.type ~= "error" and stanza.attr.type ~= "result" and st.reply(stanza)} };
128         log("debug", "stanza [%s] queued until connection complete", tostring(stanza.name));
129         s2sout.initiate_connection(host_session);
130         if (not host_session.connecting) and (not host_session.conn) then
131                 log("warn", "Connection to %s failed already, destroying session...", to_host);
132                 s2s_destroy_session(host_session, "Connection failed");
133                 return false;
134         end
135         return true;
136 end
137
138 local function keepalive(event)
139         return event.session.sends2s(' ');
140 end
141
142 module:hook("s2s-read-timeout", keepalive, -1);
143
144 function module.add_host(module)
145         if module:get_option_boolean("disallow_s2s", false) then
146                 module:log("warn", "The 'disallow_s2s' config option is deprecated, please see http://prosody.im/doc/s2s#disabling");
147                 return nil, "This host has disallow_s2s set";
148         end
149         module:hook("route/remote", route_to_existing_session, -1);
150         module:hook("route/remote", route_to_new_session, -10);
151         module:hook("s2s-authenticated", make_authenticated, -1);
152         module:hook("s2s-read-timeout", keepalive, -1);
153 end
154
155 -- Stream is authorised, and ready for normal stanzas
156 function mark_connected(session)
157         local sendq, send = session.sendq, session.sends2s;
158         
159         local from, to = session.from_host, session.to_host;
160         
161         session.log("info", "%s s2s connection %s->%s complete", session.direction, from, to);
162
163         local event_data = { session = session };
164         if session.type == "s2sout" then
165                 fire_global_event("s2sout-established", event_data);
166                 hosts[from].events.fire_event("s2sout-established", event_data);
167         else
168                 local host_session = hosts[to];
169                 session.send = function(stanza)
170                         return host_session.events.fire_event("route/remote", { from_host = to, to_host = from, stanza = stanza });
171                 end;
172
173                 fire_global_event("s2sin-established", event_data);
174                 hosts[to].events.fire_event("s2sin-established", event_data);
175         end
176         
177         if session.direction == "outgoing" then
178                 if sendq then
179                         session.log("debug", "sending %d queued stanzas across new outgoing connection to %s", #sendq, session.to_host);
180                         for i, data in ipairs(sendq) do
181                                 send(data[1]);
182                                 sendq[i] = nil;
183                         end
184                         session.sendq = nil;
185                 end
186                 
187                 session.ip_hosts = nil;
188                 session.srv_hosts = nil;
189         end
190 end
191
192 function make_authenticated(event)
193         local session, host = event.session, event.host;
194         if not session.secure then
195                 if require_encryption or (secure_auth and not(insecure_domains[host])) or secure_domains[host] then
196                         session:close({
197                                 condition = "policy-violation",
198                                 text = "Encrypted server-to-server communication is required but was not "
199                                        ..((session.direction == "outgoing" and "offered") or "used")
200                         });
201                 end
202         end
203         if hosts[host] then
204                 session:close({ condition = "undefined-condition", text = "Attempt to authenticate as a host we serve" });
205         end
206         if session.type == "s2sout_unauthed" then
207                 session.type = "s2sout";
208         elseif session.type == "s2sin_unauthed" then
209                 session.type = "s2sin";
210                 if host then
211                         if not session.hosts[host] then session.hosts[host] = {}; end
212                         session.hosts[host].authed = true;
213                 end
214         elseif session.type == "s2sin" and host then
215                 if not session.hosts[host] then session.hosts[host] = {}; end
216                 session.hosts[host].authed = true;
217         else
218                 return false;
219         end
220         session.log("debug", "connection %s->%s is now authenticated for %s", session.from_host, session.to_host, host);
221         
222         mark_connected(session);
223         
224         return true;
225 end
226
227 --- Helper to check that a session peer's certificate is valid
228 local function check_cert_status(session)
229         local host = session.direction == "outgoing" and session.to_host or session.from_host
230         local conn = session.conn:socket()
231         local cert
232         if conn.getpeercertificate then
233                 cert = conn:getpeercertificate()
234         end
235
236         if cert then
237                 local chain_valid, errors;
238                 if conn.getpeerverification then
239                         chain_valid, errors = conn:getpeerverification();
240                 elseif conn.getpeerchainvalid then -- COMPAT mw/luasec-hg
241                         chain_valid, errors = conn:getpeerchainvalid();
242                         errors = (not chain_valid) and { { errors } } or nil;
243                 else
244                         chain_valid, errors = false, { { "Chain verification not supported by this version of LuaSec" } };
245                 end
246                 -- Is there any interest in printing out all/the number of errors here?
247                 if not chain_valid then
248                         (session.log or log)("debug", "certificate chain validation result: invalid");
249                         for depth, t in ipairs(errors or NULL) do
250                                 (session.log or log)("debug", "certificate error(s) at depth %d: %s", depth-1, table.concat(t, ", "))
251                         end
252                         session.cert_chain_status = "invalid";
253                 else
254                         (session.log or log)("debug", "certificate chain validation result: valid");
255                         session.cert_chain_status = "valid";
256
257                         -- We'll go ahead and verify the asserted identity if the
258                         -- connecting server specified one.
259                         if host then
260                                 if cert_verify_identity(host, "xmpp-server", cert) then
261                                         session.cert_identity_status = "valid"
262                                 else
263                                         session.cert_identity_status = "invalid"
264                                 end
265                         end
266                 end
267         end
268         return module:fire_event("s2s-check-certificate", { host = host, session = session, cert = cert });
269 end
270
271 --- XMPP stream event handlers
272
273 local stream_callbacks = { default_ns = "jabber:server", handlestanza =  core_process_stanza };
274
275 local xmlns_xmpp_streams = "urn:ietf:params:xml:ns:xmpp-streams";
276
277 function stream_callbacks.streamopened(session, attr)
278         local send = session.sends2s;
279         
280         session.version = tonumber(attr.version) or 0;
281         
282         -- TODO: Rename session.secure to session.encrypted
283         if session.secure == false then
284                 session.secure = true;
285
286                 -- Check if TLS compression is used
287                 local sock = session.conn:socket();
288                 if sock.info then
289                         session.compressed = sock:info"compression";
290                 elseif sock.compression then
291                         session.compressed = sock:compression(); --COMPAT mw/luasec-hg
292                 end
293         end
294
295         if session.direction == "incoming" then
296                 -- Send a reply stream header
297                 
298                 -- Validate to/from
299                 local to, from = nameprep(attr.to), nameprep(attr.from);
300                 if not to and attr.to then -- COMPAT: Some servers do not reliably set 'to' (especially on stream restarts)
301                         session:close({ condition = "improper-addressing", text = "Invalid 'to' address" });
302                         return;
303                 end
304                 if not from and attr.from then -- COMPAT: Some servers do not reliably set 'from' (especially on stream restarts)
305                         session:close({ condition = "improper-addressing", text = "Invalid 'from' address" });
306                         return;
307                 end
308                 
309                 -- Set session.[from/to]_host if they have not been set already and if
310                 -- this session isn't already authenticated
311                 if session.type == "s2sin_unauthed" and from and not session.from_host then
312                         session.from_host = from;
313                 elseif from ~= session.from_host then
314                         session:close({ condition = "improper-addressing", text = "New stream 'from' attribute does not match original" });
315                         return;
316                 end
317                 if session.type == "s2sin_unauthed" and to and not session.to_host then
318                         session.to_host = to;
319                 elseif to ~= session.to_host then
320                         session:close({ condition = "improper-addressing", text = "New stream 'to' attribute does not match original" });
321                         return;
322                 end
323                 
324                 -- For convenience we'll put the sanitised values into these variables
325                 to, from = session.to_host, session.from_host;
326                 
327                 session.streamid = uuid_gen();
328                 (session.log or log)("debug", "Incoming s2s received %s", st.stanza("stream:stream", attr):top_tag());
329                 if to then
330                         if not hosts[to] then
331                                 -- Attempting to connect to a host we don't serve
332                                 session:close({
333                                         condition = "host-unknown";
334                                         text = "This host does not serve "..to
335                                 });
336                                 return;
337                         elseif not hosts[to].modules.s2s then
338                                 -- Attempting to connect to a host that disallows s2s
339                                 session:close({
340                                         condition = "policy-violation";
341                                         text = "Server-to-server communication is disabled for this host";
342                                 });
343                                 return;
344                         end
345                 end
346
347                 if hosts[from] then
348                         session:close({ condition = "undefined-condition", text = "Attempt to connect from a host we serve" });
349                         return;
350                 end
351
352                 if session.secure and not session.cert_chain_status then
353                         if check_cert_status(session) == false then
354                                 return;
355                         end
356                 end
357
358                 session:open_stream(session.to_host, session.from_host)
359                 if session.version >= 1.0 then
360                         local features = st.stanza("stream:features");
361                         
362                         if to then
363                                 hosts[to].events.fire_event("s2s-stream-features", { origin = session, features = features });
364                         else
365                                 (session.log or log)("warn", "No 'to' on stream header from %s means we can't offer any features", from or "unknown host");
366                         end
367                         
368                         log("debug", "Sending stream features: %s", tostring(features));
369                         send(features);
370                 end
371         elseif session.direction == "outgoing" then
372                 -- If we are just using the connection for verifying dialback keys, we won't try and auth it
373                 if not attr.id then error("stream response did not give us a streamid!!!"); end
374                 session.streamid = attr.id;
375
376                 if session.secure and not session.cert_chain_status then
377                         if check_cert_status(session) == false then
378                                 return;
379                         end
380                 end
381
382                 -- Send unauthed buffer
383                 -- (stanzas which are fine to send before dialback)
384                 -- Note that this is *not* the stanza queue (which
385                 -- we can only send if auth succeeds) :)
386                 local send_buffer = session.send_buffer;
387                 if send_buffer and #send_buffer > 0 then
388                         log("debug", "Sending s2s send_buffer now...");
389                         for i, data in ipairs(send_buffer) do
390                                 session.sends2s(tostring(data));
391                                 send_buffer[i] = nil;
392                         end
393                 end
394                 session.send_buffer = nil;
395         
396                 -- If server is pre-1.0, don't wait for features, just do dialback
397                 if session.version < 1.0 then
398                         if not session.dialback_verifying then
399                                 hosts[session.from_host].events.fire_event("s2sout-authenticate-legacy", { origin = session });
400                         else
401                                 mark_connected(session);
402                         end
403                 end
404         end
405         session.notopen = nil;
406 end
407
408 function stream_callbacks.streamclosed(session)
409         (session.log or log)("debug", "Received </stream:stream>");
410         session:close(false);
411 end
412
413 function stream_callbacks.error(session, error, data)
414         if error == "no-stream" then
415                 session:close("invalid-namespace");
416         elseif error == "parse-error" then
417                 session.log("debug", "Server-to-server XML parse error: %s", tostring(error));
418                 session:close("not-well-formed");
419         elseif error == "stream-error" then
420                 local condition, text = "undefined-condition";
421                 for child in data:children() do
422                         if child.attr.xmlns == xmlns_xmpp_streams then
423                                 if child.name ~= "text" then
424                                         condition = child.name;
425                                 else
426                                         text = child:get_text();
427                                 end
428                                 if condition ~= "undefined-condition" and text then
429                                         break;
430                                 end
431                         end
432                 end
433                 text = condition .. (text and (" ("..text..")") or "");
434                 session.log("info", "Session closed by remote with error: %s", text);
435                 session:close(nil, text);
436         end
437 end
438
439 local function handleerr(err) log("error", "Traceback[s2s]: %s", traceback(tostring(err), 2)); end
440 function stream_callbacks.handlestanza(session, stanza)
441         if stanza.attr.xmlns == "jabber:client" then --COMPAT: Prosody pre-0.6.2 may send jabber:client
442                 stanza.attr.xmlns = nil;
443         end
444         stanza = session.filter("stanzas/in", stanza);
445         if stanza then
446                 return xpcall(function () return core_process_stanza(session, stanza) end, handleerr);
447         end
448 end
449
450 local listener = {};
451
452 --- Session methods
453 local stream_xmlns_attr = {xmlns='urn:ietf:params:xml:ns:xmpp-streams'};
454 local function session_close(session, reason, remote_reason)
455         local log = session.log or log;
456         if session.conn then
457                 if session.notopen then
458                         if session.direction == "incoming" then
459                                 session:open_stream(session.to_host, session.from_host);
460                         else
461                                 session:open_stream(session.from_host, session.to_host);
462                         end
463                 end
464                 if reason then -- nil == no err, initiated by us, false == initiated by remote
465                         if type(reason) == "string" then -- assume stream error
466                                 log("debug", "Disconnecting %s[%s], <stream:error> is: %s", session.host or "(unknown host)", session.type, reason);
467                                 session.sends2s(st.stanza("stream:error"):tag(reason, {xmlns = 'urn:ietf:params:xml:ns:xmpp-streams' }));
468                         elseif type(reason) == "table" then
469                                 if reason.condition then
470                                         local stanza = st.stanza("stream:error"):tag(reason.condition, stream_xmlns_attr):up();
471                                         if reason.text then
472                                                 stanza:tag("text", stream_xmlns_attr):text(reason.text):up();
473                                         end
474                                         if reason.extra then
475                                                 stanza:add_child(reason.extra);
476                                         end
477                                         log("debug", "Disconnecting %s[%s], <stream:error> is: %s", session.host or "(unknown host)", session.type, tostring(stanza));
478                                         session.sends2s(stanza);
479                                 elseif reason.name then -- a stanza
480                                         log("debug", "Disconnecting %s->%s[%s], <stream:error> is: %s", session.from_host or "(unknown host)", session.to_host or "(unknown host)", session.type, tostring(reason));
481                                         session.sends2s(reason);
482                                 end
483                         end
484                 end
485
486                 session.sends2s("</stream:stream>");
487                 function session.sends2s() return false; end
488                 
489                 local reason = remote_reason or (reason and (reason.text or reason.condition)) or reason;
490                 session.log("info", "%s s2s stream %s->%s closed: %s", session.direction, session.from_host or "(unknown host)", session.to_host or "(unknown host)", reason or "stream closed");
491                 
492                 -- Authenticated incoming stream may still be sending us stanzas, so wait for </stream:stream> from remote
493                 local conn = session.conn;
494                 if reason == nil and not session.notopen and session.type == "s2sin" then
495                         add_task(stream_close_timeout, function ()
496                                 if not session.destroyed then
497                                         session.log("warn", "Failed to receive a stream close response, closing connection anyway...");
498                                         s2s_destroy_session(session, reason);
499                                         conn:close();
500                                 end
501                         end);
502                 else
503                         s2s_destroy_session(session, reason);
504                         conn:close(); -- Close immediately, as this is an outgoing connection or is not authed
505                 end
506         end
507 end
508
509 function session_open_stream(session, from, to)
510         local attr = {
511                 ["xmlns:stream"] = 'http://etherx.jabber.org/streams',
512                 xmlns = 'jabber:server',
513                 version = session.version and (session.version > 0 and "1.0" or nil),
514                 ["xml:lang"] = 'en',
515                 id = session.streamid,
516                 from = from, to = to,
517         }
518         if not from or (hosts[from] and hosts[from].modules.dialback) then
519                 attr["xmlns:db"] = 'jabber:server:dialback';
520         end
521
522         session.sends2s("<?xml version='1.0'?>");
523         session.sends2s(st.stanza("stream:stream", attr):top_tag());
524         return true;
525 end
526
527 -- Session initialization logic shared by incoming and outgoing
528 local function initialize_session(session)
529         local stream = new_xmpp_stream(session, stream_callbacks);
530         session.stream = stream;
531         
532         session.notopen = true;
533                 
534         function session.reset_stream()
535                 session.notopen = true;
536                 session.stream:reset();
537         end
538
539         session.open_stream = session_open_stream;
540         
541         local filter = session.filter;
542         function session.data(data)
543                 data = filter("bytes/in", data);
544                 if data then
545                         local ok, err = stream:feed(data);
546                         if ok then return; end
547                         (session.log or log)("warn", "Received invalid XML: %s", data);
548                         (session.log or log)("warn", "Problem was: %s", err);
549                         session:close("not-well-formed");
550                 end
551         end
552
553         session.close = session_close;
554
555         local handlestanza = stream_callbacks.handlestanza;
556         function session.dispatch_stanza(session, stanza)
557                 return handlestanza(session, stanza);
558         end
559
560         add_task(connect_timeout, function ()
561                 if session.type == "s2sin" or session.type == "s2sout" then
562                         return; -- Ok, we're connected
563                 elseif session.type == "s2s_destroyed" then
564                         return; -- Session already destroyed
565                 end
566                 -- Not connected, need to close session and clean up
567                 (session.log or log)("debug", "Destroying incomplete session %s->%s due to inactivity",
568                 session.from_host or "(unknown)", session.to_host or "(unknown)");
569                 session:close("connection-timeout");
570         end);
571 end
572
573 function listener.onconnect(conn)
574         conn:setoption("keepalive", opt_keepalives);
575         local session = sessions[conn];
576         if not session then -- New incoming connection
577                 session = s2s_new_incoming(conn);
578                 sessions[conn] = session;
579                 session.log("debug", "Incoming s2s connection");
580
581                 local filter = initialize_filters(session);
582                 local w = conn.write;
583                 session.sends2s = function (t)
584                         log("debug", "sending: %s", t.top_tag and t:top_tag() or t:match("^([^>]*>?)"));
585                         if t.name then
586                                 t = filter("stanzas/out", t);
587                         end
588                         if t then
589                                 t = filter("bytes/out", tostring(t));
590                                 if t then
591                                         return w(conn, t);
592                                 end
593                         end
594                 end
595         
596                 initialize_session(session);
597         else -- Outgoing session connected
598                 session:open_stream(session.from_host, session.to_host);
599         end
600         session.ip = conn:ip();
601 end
602
603 function listener.onincoming(conn, data)
604         local session = sessions[conn];
605         if session then
606                 session.data(data);
607         end
608 end
609         
610 function listener.onstatus(conn, status)
611         if status == "ssl-handshake-complete" then
612                 local session = sessions[conn];
613                 if session and session.direction == "outgoing" then
614                         session.log("debug", "Sending stream header...");
615                         session:open_stream(session.from_host, session.to_host);
616                 end
617         end
618 end
619
620 function listener.ondisconnect(conn, err)
621         local session = sessions[conn];
622         if session then
623                 sessions[conn] = nil;
624                 if err and session.direction == "outgoing" and session.notopen then
625                         (session.log or log)("debug", "s2s connection attempt failed: %s", err);
626                         if s2sout.attempt_connection(session, err) then
627                                 return; -- Session lives for now
628                         end
629                 end
630                 (session.log or log)("debug", "s2s disconnected: %s->%s (%s)", tostring(session.from_host), tostring(session.to_host), tostring(err or "connection closed"));
631                 s2s_destroy_session(session, err);
632         end
633 end
634
635 function listener.onreadtimeout(conn)
636         local session = sessions[conn];
637         if session then
638                 return (hosts[session.host] or prosody).events.fire_event("s2s-read-timeout", { session = session });
639         end
640 end
641
642 function listener.register_outgoing(conn, session)
643         session.direction = "outgoing";
644         sessions[conn] = session;
645         initialize_session(session);
646 end
647
648 function check_auth_policy(event)
649         local host, session = event.host, event.session;
650         local must_secure = secure_auth;
651
652         if not must_secure and secure_domains[host] then
653                 must_secure = true;
654         elseif must_secure and insecure_domains[host] then
655                 must_secure = false;
656         end
657         
658         if must_secure and not session.cert_identity_status then
659                 module:log("warn", "Forbidding insecure connection to/from %s", host);
660                 if session.direction == "incoming" then
661                         session:close({ condition = "not-authorized", text = "Your server's certificate is invalid, expired, or not trusted by "..session.to_host });
662                 else -- Close outgoing connections without warning
663                         session:close(false);
664                 end
665                 return false;
666         end
667 end
668
669 module:hook("s2s-check-certificate", check_auth_policy, -1);
670
671 s2sout.set_listener(listener);
672
673 module:hook("server-stopping", function(event)
674         local reason = event.reason;
675         for _, session in pairs(sessions) do
676                 session:close{ condition = "system-shutdown", text = reason };
677         end
678 end,500);
679
680
681
682 module:provides("net", {
683         name = "s2s";
684         listener = listener;
685         default_port = 5269;
686         encryption = "starttls";
687         multiplex = {
688                 pattern = "^<.*:stream.*%sxmlns%s*=%s*(['\"])jabber:server%1.*>";
689         };
690 });
691