05c64519ff925ba066dec19b03b9cd59a37777b6
[prosody.git] / core / s2smanager.lua
1
2 local hosts = hosts;
3 local sessions = sessions;
4 local socket = require "socket";
5 local format = string.format;
6 local t_insert, t_sort = table.insert, table.sort;
7 local get_traceback = debug.traceback;
8 local tostring, pairs, ipairs, getmetatable, print, newproxy, error, tonumber
9     = tostring, pairs, ipairs, getmetatable, print, newproxy, error, tonumber;
10
11 local connlisteners_get = require "net.connlisteners".get;
12 local wraptlsclient = require "net.server".wraptlsclient;
13 local modulemanager = require "core.modulemanager";
14 local st = require "stanza";
15 local stanza = st.stanza;
16
17 local uuid_gen = require "util.uuid".generate;
18
19 local logger_init = require "util.logger".init;
20
21 local log = logger_init("s2smanager");
22
23 local md5_hash = require "util.hashes".md5;
24
25 local dialback_secret = "This is very secret!!! Ha!";
26
27 local dns = require "net.dns";
28
29 module "s2smanager"
30
31 local function compare_srv_priorities(a,b) return a.priority < b.priority or a.weight < b.weight; end
32
33 function send_to_host(from_host, to_host, data)
34         if data.name then data = tostring(data); end
35         local host = hosts[from_host].s2sout[to_host];
36         if host then
37                 -- We have a connection to this host already
38                 if host.type == "s2sout_unauthed" and ((not data.xmlns) or data.xmlns == "jabber:client" or data.xmlns == "jabber:server") then
39                         (host.log or log)("debug", "trying to send over unauthed s2sout to "..to_host..", authing it now...");
40                         if not host.notopen and not host.dialback_key then
41                                 host.log("debug", "dialback had not been initiated");
42                                 initiate_dialback(host);
43                         end
44                         
45                         -- Queue stanza until we are able to send it
46                         if host.sendq then t_insert(host.sendq, data);
47                         else host.sendq = { data }; end
48                 elseif host.type == "local" or host.type == "component" then
49                         log("error", "Trying to send a stanza to ourselves??")
50                         log("error", "Traceback: %s", get_traceback());
51                         log("error", "Stanza: %s", tostring(data));
52                 else
53                         (host.log or log)("debug", "going to send stanza to "..to_host.." from "..from_host);
54                         -- FIXME
55                         if host.from_host ~= from_host then
56                                 log("error", "WARNING! This might, possibly, be a bug, but it might not...");
57                                 log("error", "We are going to send from %s instead of %s", tostring(host.from_host), tostring(from_host));
58                         end
59                         host.sends2s(data);
60                         host.log("debug", "stanza sent over "..host.type);
61                 end
62         else
63                 log("debug", "opening a new outgoing connection for this stanza");
64                 local host_session = new_outgoing(from_host, to_host);
65                 -- Store in buffer
66                 host_session.sendq = { data };
67         end
68 end
69
70 local open_sessions = 0;
71
72 function new_incoming(conn)
73         local session = { conn = conn, type = "s2sin_unauthed", direction = "incoming" };
74         if true then
75                 session.trace = newproxy(true);
76                 getmetatable(session.trace).__gc = function () open_sessions = open_sessions - 1; print("s2s session got collected, now "..open_sessions.." s2s sessions are allocated") end;
77         end
78         open_sessions = open_sessions + 1;
79         local w, log = conn.write, logger_init("s2sin"..tostring(conn):match("[a-f0-9]+$"));
80         session.sends2s = function (t) log("debug", "sending: %s", tostring(t)); w(tostring(t)); end
81         return session;
82 end
83
84 function new_outgoing(from_host, to_host)
85                 local host_session = { to_host = to_host, from_host = from_host, notopen = true, type = "s2sout_unauthed", direction = "outgoing" };
86                 hosts[from_host].s2sout[to_host] = host_session;
87                 local cl = connlisteners_get("xmppserver");
88                 
89                 local conn, handler = socket.tcp()
90                 
91                 --FIXME: Below parameters (ports/ip) are incorrect (use SRV)
92                 
93                 local connect_host, connect_port = to_host, 5269;
94                 
95                 local answer = dns.lookup("_xmpp-server._tcp."..to_host..".", "SRV");
96                 
97                 if answer then
98                         log("debug", to_host.." has SRV records, handling...");
99                         local srv_hosts = {};
100                         host_session.srv_hosts = srv_hosts;
101                         for _, record in ipairs(answer) do
102                                 t_insert(srv_hosts, record.srv);
103                         end
104                         t_sort(srv_hosts, compare_srv_priorities);
105                         
106                         local srv_choice = srv_hosts[1];
107                         if srv_choice then
108                                 log("debug", "Best record found");
109                                 connect_host, connect_port = srv_choice.target or to_host, srv_choice.port or connect_port;
110                                 log("debug", "Best record found, will connect to %s:%d", connect_host, connect_port);
111                         end
112                 end
113                 
114                 conn:settimeout(0);
115                 local success, err = conn:connect(connect_host, connect_port);
116                 if not success and err ~= "timeout" then
117                         log("warn", "s2s connect() failed: %s", err);
118                 end
119                 
120                 conn = wraptlsclient(cl, conn, to_host, 5269, 0, 1, hosts[from_host].ssl_ctx );
121                 host_session.conn = conn;
122                 
123                 -- Register this outgoing connection so that xmppserver_listener knows about it
124                 -- otherwise it will assume it is a new incoming connection
125                 cl.register_outgoing(conn, host_session);
126                 
127                 local log;
128                 do
129                         local conn_name = "s2sout"..tostring(conn):match("[a-f0-9]*$");
130                         log = logger_init(conn_name);
131                         host_session.log = log;
132                 end
133                 
134                 local w = conn.write;
135                 host_session.sends2s = function (t) log("debug", "sending: %s", tostring(t)); w(tostring(t)); end
136                 
137                 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'>]], from_host, to_host));
138                  
139                 return host_session;
140 end
141
142 function streamopened(session, attr)
143         local send = session.sends2s;
144         
145         session.version = tonumber(attr.version) or 0;
146         if session.version >= 1.0 and not (attr.to and attr.from) then
147                 print("to: "..tostring(attr.to).." from: "..tostring(attr.from));
148                 --error(session.to_host.." failed to specify 'to' or 'from' hostname as per RFC");
149                 log("warn", (session.to_host or "(unknown)").." failed to specify 'to' or 'from' hostname as per RFC");
150         end
151         
152         if session.direction == "incoming" then
153                 -- Send a reply stream header
154                 
155                 for k,v in pairs(attr) do print("", tostring(k), ":::", tostring(v)); end
156                 
157                 session.to_host = attr.to;
158                 session.from_host = attr.from;
159         
160                 session.streamid = uuid_gen();
161                 print(session, session.from_host, "incoming s2s stream opened");
162                 send("<?xml version='1.0'?>");
163                 send(stanza("stream:stream", { xmlns='jabber:server', ["xmlns:db"]='jabber:server:dialback', ["xmlns:stream"]='http://etherx.jabber.org/streams', id=session.streamid, from=session.to_host }):top_tag());
164                 if session.to_host and not hosts[session.to_host] then
165                         -- Attempting to connect to a host we don't serve
166                         session:close("host-unknown");
167                         return;
168                 end
169                 if session.version >= 1.0 then
170                         send(st.stanza("stream:features")
171                                         :tag("dialback", { xmlns='urn:xmpp:features:dialback' }):tag("optional"):up():up());
172                 end
173                 --[[
174                 local features = {};
175                 modulemanager.fire_event("stream-features-s2s", session, features);
176         
177                 send("<stream:features>");
178         
179                 for _, feature in ipairs(features) do
180                         send(tostring(feature));
181                 end
182
183                 send("</stream:features>");
184                 ]]
185         elseif session.direction == "outgoing" then
186                 -- If we are just using the connection for verifying dialback keys, we won't try and auth it
187                 if not attr.id then error("stream response did not give us a streamid!!!"); end
188                 session.streamid = attr.id;
189         
190                 if not session.dialback_verifying then
191                         initiate_dialback(session);
192                 else
193                         mark_connected(session);
194                 end
195         end
196
197         session.notopen = nil;
198 end
199
200 function initiate_dialback(session)
201         -- generate dialback key
202         session.dialback_key = generate_dialback(session.streamid, session.to_host, session.from_host);
203         session.sends2s(format("<db:result from='%s' to='%s'>%s</db:result>", session.from_host, session.to_host, session.dialback_key));
204         session.log("info", "sent dialback key on outgoing s2s stream");
205 end
206
207 function generate_dialback(id, to, from)
208         return md5_hash(id..to..from..dialback_secret); -- FIXME: See XEP-185 and XEP-220
209 end
210
211 function verify_dialback(id, to, from, key)
212         return key == generate_dialback(id, to, from);
213 end
214
215 function make_authenticated(session)
216         if session.type == "s2sout_unauthed" then
217                 session.type = "s2sout";
218         elseif session.type == "s2sin_unauthed" then
219                 session.type = "s2sin";
220         else
221                 return false;
222         end
223         session.log("info", "connection is now authenticated");
224         
225         mark_connected(session);
226         
227         return true;
228 end
229
230 function mark_connected(session)
231         local sendq, send = session.sendq, session.sends2s;
232         
233         local from, to = session.from_host, session.to_host;
234         
235         session.log("debug", session.direction.." s2s connection "..from.."->"..to.." is now complete");
236         
237         local send_to_host = send_to_host;
238         function session.send(data) send_to_host(to, from, data); end
239         
240         
241         if session.direction == "outgoing" then
242                 if sendq then
243                         session.log("debug", "sending "..#sendq.." queued stanzas across new outgoing connection to "..session.to_host);
244                         for i, data in ipairs(sendq) do
245                                 send(data);
246                                 sendq[i] = nil;
247                         end
248                         session.sendq = nil;
249                 end
250         end
251 end
252
253 function destroy_session(session)
254         (session.log or log)("info", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host));
255         
256         -- FIXME: Flush sendq here/report errors to originators
257         
258         if session.direction == "outgoing" then
259                 hosts[session.from_host].s2sout[session.to_host] = nil;
260         end
261         
262         for k in pairs(session) do
263                 if k ~= "trace" then
264                         session[k] = nil;
265                 end
266         end
267 end
268
269 return _M;