Merge 0.10->trunk
[prosody.git] / plugins / mod_s2s / s2sout.lib.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 containing all the logic for connecting to a remote server
10
11 local portmanager = require "core.portmanager";
12 local wrapclient = require "net.server".wrapclient;
13 local initialize_filters = require "util.filters".initialize;
14 local idna_to_ascii = require "util.encodings".idna.to_ascii;
15 local new_ip = require "util.ip".new_ip;
16 local rfc6724_dest = require "util.rfc6724".destination;
17 local socket = require "socket";
18 local adns = require "net.adns";
19 local dns = require "net.dns";
20 local t_insert, t_sort, ipairs = table.insert, table.sort, ipairs;
21 local local_addresses = require "util.net".local_addresses;
22
23 local s2s_destroy_session = require "core.s2smanager".destroy_session;
24
25 local log = module._log;
26
27 local sources = {};
28 local has_ipv4, has_ipv6;
29
30 local dns_timeout = module:get_option_number("dns_timeout", 15);
31 dns.settimeout(dns_timeout);
32
33 local s2sout = {};
34
35 local s2s_listener;
36
37
38 function s2sout.set_listener(listener)
39         s2s_listener = listener;
40 end
41
42 local function compare_srv_priorities(a,b)
43         return a.priority < b.priority or (a.priority == b.priority and a.weight > b.weight);
44 end
45
46 function s2sout.initiate_connection(host_session)
47         initialize_filters(host_session);
48         host_session.version = 1;
49
50         -- Kick the connection attempting machine into life
51         if not s2sout.attempt_connection(host_session) then
52                 -- Intentionally not returning here, the
53                 -- session is needed, connected or not
54                 s2s_destroy_session(host_session);
55         end
56
57         if not host_session.sends2s then
58                 -- A sends2s which buffers data (until the stream is opened)
59                 -- note that data in this buffer will be sent before the stream is authed
60                 -- and will not be ack'd in any way, successful or otherwise
61                 local buffer;
62                 function host_session.sends2s(data)
63                         if not buffer then
64                                 buffer = {};
65                                 host_session.send_buffer = buffer;
66                         end
67                         log("debug", "Buffering data on unconnected s2sout to %s", tostring(host_session.to_host));
68                         buffer[#buffer+1] = data;
69                         log("debug", "Buffered item %d: %s", #buffer, tostring(data));
70                 end
71         end
72 end
73
74 function s2sout.attempt_connection(host_session, err)
75         local to_host = host_session.to_host;
76         local connect_host, connect_port = to_host and idna_to_ascii(to_host), 5269;
77
78         if not connect_host then
79                 return false;
80         end
81
82         if not err then -- This is our first attempt
83                 log("debug", "First attempt to connect to %s, starting with SRV lookup...", to_host);
84                 host_session.connecting = true;
85                 local handle;
86                 handle = adns.lookup(function (answer)
87                         handle = nil;
88                         local srv_hosts = { answer = answer };
89                         host_session.srv_hosts = srv_hosts;
90                         host_session.srv_choice = 0;
91                         host_session.connecting = nil;
92                         if answer and #answer > 0 then
93                                 log("debug", "%s has SRV records, handling...", to_host);
94                                 for _, record in ipairs(answer) do
95                                         t_insert(srv_hosts, record.srv);
96                                 end
97                                 if #srv_hosts == 1 and srv_hosts[1].target == "." then
98                                         log("debug", "%s does not provide a XMPP service", to_host);
99                                         s2s_destroy_session(host_session, err); -- Nothing to see here
100                                         return;
101                                 end
102                                 t_sort(srv_hosts, compare_srv_priorities);
103
104                                 local srv_choice = srv_hosts[1];
105                                 host_session.srv_choice = 1;
106                                 if srv_choice then
107                                         connect_host, connect_port = srv_choice.target or to_host, srv_choice.port or connect_port;
108                                         log("debug", "Best record found, will connect to %s:%d", connect_host, connect_port);
109                                 end
110                         else
111                                 log("debug", "%s has no SRV records, falling back to A/AAAA", to_host);
112                         end
113                         -- Try with SRV, or just the plain hostname if no SRV
114                         local ok, err = s2sout.try_connect(host_session, connect_host, connect_port);
115                         if not ok then
116                                 if not s2sout.attempt_connection(host_session, err) then
117                                         -- No more attempts will be made
118                                         s2s_destroy_session(host_session, err);
119                                 end
120                         end
121                 end, "_xmpp-server._tcp."..connect_host..".", "SRV");
122
123                 return true; -- Attempt in progress
124         elseif host_session.ip_hosts then
125                 return s2sout.try_connect(host_session, connect_host, connect_port, err);
126         elseif host_session.srv_hosts and #host_session.srv_hosts > host_session.srv_choice then -- Not our first attempt, and we also have SRV
127                 host_session.srv_choice = host_session.srv_choice + 1;
128                 local srv_choice = host_session.srv_hosts[host_session.srv_choice];
129                 connect_host, connect_port = srv_choice.target or to_host, srv_choice.port or connect_port;
130                 host_session.log("info", "Connection failed (%s). Attempt #%d: This time to %s:%d", tostring(err), host_session.srv_choice, connect_host, connect_port);
131         else
132                 host_session.log("info", "Failed in all attempts to connect to %s", tostring(host_session.to_host));
133                 -- We're out of options
134                 return false;
135         end
136
137         if not (connect_host and connect_port) then
138                 -- Likely we couldn't resolve DNS
139                 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));
140                 return false;
141         end
142
143         return s2sout.try_connect(host_session, connect_host, connect_port);
144 end
145
146 function s2sout.try_next_ip(host_session)
147         host_session.connecting = nil;
148         host_session.ip_choice = host_session.ip_choice + 1;
149         local ip = host_session.ip_hosts[host_session.ip_choice];
150         local ok, err= s2sout.make_connect(host_session, ip.ip, ip.port);
151         if not ok then
152                 if not s2sout.attempt_connection(host_session, err or "closed") then
153                         err = err and (": "..err) or "";
154                         s2s_destroy_session(host_session, "Connection failed"..err);
155                 end
156         end
157 end
158
159 function s2sout.try_connect(host_session, connect_host, connect_port, err)
160         host_session.connecting = true;
161
162         if not err then
163                 local IPs = {};
164                 host_session.ip_hosts = IPs;
165                 local handle4, handle6;
166                 local have_other_result = not(has_ipv4) or not(has_ipv6) or false;
167
168                 if has_ipv4 then
169                         handle4 = adns.lookup(function (reply, err)
170                                 handle4 = nil;
171
172                                 if reply and reply[#reply] and reply[#reply].a then
173                                         for _, ip in ipairs(reply) do
174                                                 log("debug", "DNS reply for %s gives us %s", connect_host, ip.a);
175                                                 IPs[#IPs+1] = new_ip(ip.a, "IPv4");
176                                         end
177                                 end
178
179                                 if have_other_result then
180                                         if #IPs > 0 then
181                                                 rfc6724_dest(host_session.ip_hosts, sources);
182                                                 for i = 1, #IPs do
183                                                         IPs[i] = {ip = IPs[i], port = connect_port};
184                                                 end
185                                                 host_session.ip_choice = 0;
186                                                 s2sout.try_next_ip(host_session);
187                                         else
188                                                 log("debug", "DNS lookup failed to get a response for %s", connect_host);
189                                                 host_session.ip_hosts = nil;
190                                                 if not s2sout.attempt_connection(host_session, "name resolution failed") then -- Retry if we can
191                                                         log("debug", "No other records to try for %s - destroying", host_session.to_host);
192                                                         err = err and (": "..err) or "";
193                                                         s2s_destroy_session(host_session, "DNS resolution failed"..err); -- End of the line, we can't
194                                                 end
195                                         end
196                                 else
197                                         have_other_result = true;
198                                 end
199                         end, connect_host, "A", "IN");
200                 else
201                         have_other_result = true;
202                 end
203
204                 if has_ipv6 then
205                         handle6 = adns.lookup(function (reply, err)
206                                 handle6 = nil;
207
208                                 if reply and reply[#reply] and reply[#reply].aaaa then
209                                         for _, ip in ipairs(reply) do
210                                                 log("debug", "DNS reply for %s gives us %s", connect_host, ip.aaaa);
211                                                 IPs[#IPs+1] = new_ip(ip.aaaa, "IPv6");
212                                         end
213                                 end
214
215                                 if have_other_result then
216                                         if #IPs > 0 then
217                                                 rfc6724_dest(host_session.ip_hosts, sources);
218                                                 for i = 1, #IPs do
219                                                         IPs[i] = {ip = IPs[i], port = connect_port};
220                                                 end
221                                                 host_session.ip_choice = 0;
222                                                 s2sout.try_next_ip(host_session);
223                                         else
224                                                 log("debug", "DNS lookup failed to get a response for %s", connect_host);
225                                                 host_session.ip_hosts = nil;
226                                                 if not s2sout.attempt_connection(host_session, "name resolution failed") then -- Retry if we can
227                                                         log("debug", "No other records to try for %s - destroying", host_session.to_host);
228                                                         err = err and (": "..err) or "";
229                                                         s2s_destroy_session(host_session, "DNS resolution failed"..err); -- End of the line, we can't
230                                                 end
231                                         end
232                                 else
233                                         have_other_result = true;
234                                 end
235                         end, connect_host, "AAAA", "IN");
236                 else
237                         have_other_result = true;
238                 end
239                 return true;
240         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
241                 s2sout.try_next_ip(host_session);
242         else
243                 host_session.ip_hosts = nil;
244                 if not s2sout.attempt_connection(host_session, "out of IP addresses") then -- Retry if we can
245                         log("debug", "No other records to try for %s - destroying", host_session.to_host);
246                         err = err and (": "..err) or "";
247                         s2s_destroy_session(host_session, "Connecting failed"..err); -- End of the line, we can't
248                         return false;
249                 end
250         end
251
252         return true;
253 end
254
255 function s2sout.make_connect(host_session, connect_host, connect_port)
256         (host_session.log or log)("debug", "Beginning new connection attempt to %s ([%s]:%d)", host_session.to_host, connect_host.addr, connect_port);
257
258         -- Reset secure flag in case this is another
259         -- connection attempt after a failed STARTTLS
260         host_session.secure = nil;
261         host_session.encrypted = nil;
262
263         local conn, handler;
264         local proto = connect_host.proto;
265         if proto == "IPv4" then
266                 conn, handler = socket.tcp();
267         elseif proto == "IPv6" and socket.tcp6 then
268                 conn, handler = socket.tcp6();
269         else
270                 handler = "Unsupported protocol: "..tostring(proto);
271         end
272
273         if not conn then
274                 log("warn", "Failed to create outgoing connection, system error: %s", handler);
275                 return false, handler;
276         end
277
278         conn:settimeout(0);
279         local success, err = conn:connect(connect_host.addr, connect_port);
280         if not success and err ~= "timeout" then
281                 log("warn", "s2s connect() to %s (%s:%d) failed: %s", host_session.to_host, connect_host.addr, connect_port, err);
282                 return false, err;
283         end
284
285         conn = wrapclient(conn, connect_host.addr, connect_port, s2s_listener, "*a");
286         host_session.conn = conn;
287
288         -- Register this outgoing connection so that xmppserver_listener knows about it
289         -- otherwise it will assume it is a new incoming connection
290         s2s_listener.register_outgoing(conn, host_session);
291
292         log("debug", "Connection attempt in progress...");
293         return true;
294 end
295
296 module:hook_global("service-added", function (event)
297         if event.name ~= "s2s" then return end
298
299         local s2s_sources = portmanager.get_active_services():get("s2s");
300         if not s2s_sources then
301                 module:log("warn", "s2s not listening on any ports, outgoing connections may fail");
302                 return;
303         end
304         for source, _ in pairs(s2s_sources) do
305                 if source == "*" or source == "0.0.0.0" then
306                         for _, addr in ipairs(local_addresses("ipv4", true)) do
307                                 sources[#sources + 1] = new_ip(addr, "IPv4");
308                         end
309                 elseif source == "::" then
310                         for _, addr in ipairs(local_addresses("ipv6", true)) do
311                                 sources[#sources + 1] = new_ip(addr, "IPv6");
312                         end
313                 else
314                         sources[#sources + 1] = new_ip(source, (source:find(":") and "IPv6") or "IPv4");
315                 end
316         end
317         for i = 1,#sources do
318                 if sources[i].proto == "IPv6" then
319                         has_ipv6 = true;
320                 elseif sources[i].proto == "IPv4" then
321                         has_ipv4 = true;
322                 end
323         end
324         if not (has_ipv4 or has_ipv6)  then
325                 module:log("warn", "No local IPv4 or IPv6 addresses detected, outgoing connections may fail");
326         end
327 end);
328
329 return s2sout;