mod_bosh: Validate 'to' host (see #343)
[prosody.git] / plugins / mod_bosh.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(); -- Global module
10
11 local hosts = _G.hosts;
12 local new_xmpp_stream = require "util.xmppstream".new;
13 local sm = require "core.sessionmanager";
14 local sm_destroy_session = sm.destroy_session;
15 local new_uuid = require "util.uuid".generate;
16 local core_process_stanza = prosody.core_process_stanza;
17 local st = require "util.stanza";
18 local logger = require "util.logger";
19 local log = logger.init("mod_bosh");
20 local initialize_filters = require "util.filters".initialize;
21 local math_min = math.min;
22 local xpcall, tostring, type = xpcall, tostring, type;
23 local traceback = debug.traceback;
24 local nameprep = require "util.encodings".stringprep.nameprep;
25
26 local xmlns_streams = "http://etherx.jabber.org/streams";
27 local xmlns_xmpp_streams = "urn:ietf:params:xml:ns:xmpp-streams";
28 local xmlns_bosh = "http://jabber.org/protocol/httpbind"; -- (hard-coded into a literal in session.send)
29
30 local stream_callbacks = {
31         stream_ns = xmlns_bosh, stream_tag = "body", default_ns = "jabber:client" };
32
33 local BOSH_DEFAULT_HOLD = module:get_option_number("bosh_default_hold", 1);
34 local BOSH_DEFAULT_INACTIVITY = module:get_option_number("bosh_max_inactivity", 60);
35 local BOSH_DEFAULT_POLLING = module:get_option_number("bosh_max_polling", 5);
36 local BOSH_DEFAULT_REQUESTS = module:get_option_number("bosh_max_requests", 2);
37 local bosh_max_wait = module:get_option_number("bosh_max_wait", 120);
38
39 local consider_bosh_secure = module:get_option_boolean("consider_bosh_secure");
40 local cross_domain = module:get_option("cross_domain_bosh", false);
41
42 if cross_domain == true then cross_domain = "*"; end
43 if type(cross_domain) == "table" then cross_domain = table.concat(cross_domain, ", "); end
44
45 local trusted_proxies = module:get_option_set("trusted_proxies", {"127.0.0.1"})._items;
46
47 local function get_ip_from_request(request)
48         local ip = request.conn:ip();
49         local forwarded_for = request.headers.x_forwarded_for;
50         if forwarded_for then
51                 forwarded_for = forwarded_for..", "..ip;
52                 for forwarded_ip in forwarded_for:gmatch("[^%s,]+") do
53                         if not trusted_proxies[forwarded_ip] then
54                                 ip = forwarded_ip;
55                         end
56                 end
57         end
58         return ip;
59 end
60
61 local t_insert, t_remove, t_concat = table.insert, table.remove, table.concat;
62 local os_time = os.time;
63
64 -- All sessions, and sessions that have no requests open
65 local sessions, inactive_sessions = module:shared("sessions", "inactive_sessions");
66
67 -- Used to respond to idle sessions (those with waiting requests)
68 local waiting_requests = module:shared("waiting_requests");
69 function on_destroy_request(request)
70         log("debug", "Request destroyed: %s", tostring(request));
71         waiting_requests[request] = nil;
72         local session = sessions[request.context.sid];
73         if session then
74                 local requests = session.requests;
75                 for i, r in ipairs(requests) do
76                         if r == request then
77                                 t_remove(requests, i);
78                                 break;
79                         end
80                 end
81
82                 -- If this session now has no requests open, mark it as inactive
83                 local max_inactive = session.bosh_max_inactive;
84                 if max_inactive and #requests == 0 then
85                         inactive_sessions[session] = os_time() + max_inactive;
86                         (session.log or log)("debug", "BOSH session marked as inactive (for %ds)", max_inactive);
87                 end
88         end
89 end
90
91 local function set_cross_domain_headers(response)
92         local headers = response.headers;
93         headers.access_control_allow_methods = "GET, POST, OPTIONS";
94         headers.access_control_allow_headers = "Content-Type";
95         headers.access_control_max_age = "7200";
96         headers.access_control_allow_origin = cross_domain;
97         return response;
98 end
99
100 function handle_OPTIONS(event)
101         if cross_domain and event.request.headers.origin then
102                 set_cross_domain_headers(event.response);
103         end
104         return "";
105 end
106
107 function handle_POST(event)
108         log("debug", "Handling new request %s: %s\n----------", tostring(event.request), tostring(event.request.body));
109
110         local request, response = event.request, event.response;
111         response.on_destroy = on_destroy_request;
112         local body = request.body;
113
114         local context = { request = request, response = response, notopen = true };
115         local stream = new_xmpp_stream(context, stream_callbacks);
116         response.context = context;
117
118         local headers = response.headers;
119         headers.content_type = "text/xml; charset=utf-8";
120
121         if cross_domain and event.request.headers.origin then
122                 set_cross_domain_headers(response);
123         end
124
125         -- stream:feed() calls the stream_callbacks, so all stanzas in
126         -- the body are processed in this next line before it returns.
127         -- In particular, the streamopened() stream callback is where
128         -- much of the session logic happens, because it's where we first
129         -- get to see the 'sid' of this request.
130         local ok, err = stream:feed(body);
131         if not ok then
132                 module:log("warn", "Error parsing BOSH payload; %s", err)
133                 local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate",
134                         ["xmlns:stream"] = xmlns_streams, condition = "bad-request" });
135                 return tostring(close_reply);
136         end
137
138         -- Stanzas (if any) in the request have now been processed, and
139         -- we take care of the high-level BOSH logic here, including
140         -- giving a response or putting the request "on hold".
141         local session = sessions[context.sid];
142         if session then
143                 -- Session was marked as inactive, since we have
144                 -- a request open now, unmark it
145                 if inactive_sessions[session] and #session.requests > 0 then
146                         inactive_sessions[session] = nil;
147                 end
148
149                 local r = session.requests;
150                 log("debug", "Session %s has %d out of %d requests open", context.sid, #r, session.bosh_hold);
151                 log("debug", "and there are %d things in the send_buffer:", #session.send_buffer);
152                 if #r > session.bosh_hold then
153                         -- We are holding too many requests, send what's in the buffer,
154                         log("debug", "We are holding too many requests, so...");
155                         if #session.send_buffer > 0 then
156                                 log("debug", "...sending what is in the buffer")
157                                 session.send(t_concat(session.send_buffer));
158                                 session.send_buffer = {};
159                         else
160                                 -- or an empty response
161                                 log("debug", "...sending an empty response");
162                                 session.send("");
163                         end
164                 elseif #session.send_buffer > 0 then
165                         log("debug", "Session has data in the send buffer, will send now..");
166                         local resp = t_concat(session.send_buffer);
167                         session.send_buffer = {};
168                         session.send(resp);
169                 end
170
171                 if not response.finished then
172                         -- We're keeping this request open, to respond later
173                         log("debug", "Have nothing to say, so leaving request unanswered for now");
174                         if session.bosh_wait then
175                                 waiting_requests[response] = os_time() + session.bosh_wait;
176                         end
177                 end
178
179                 if session.bosh_terminate then
180                         session.log("debug", "Closing session with %d requests open", #session.requests);
181                         session:close();
182                         return nil;
183                 else
184                         return true; -- Inform http server we shall reply later
185                 end
186         elseif response.finished then
187                 return; -- A response has been sent already
188         end
189         module:log("warn", "Unable to associate request with a session (incomplete request?)");
190         local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate",
191                 ["xmlns:stream"] = xmlns_streams, condition = "item-not-found" });
192         return tostring(close_reply) .. "\n";
193 end
194
195
196 local function bosh_reset_stream(session) session.notopen = true; end
197
198 local stream_xmlns_attr = { xmlns = "urn:ietf:params:xml:ns:xmpp-streams" };
199
200 local function bosh_close_stream(session, reason)
201         (session.log or log)("info", "BOSH client disconnected");
202
203         local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate",
204                 ["xmlns:stream"] = xmlns_streams });
205
206
207         if reason then
208                 close_reply.attr.condition = "remote-stream-error";
209                 if type(reason) == "string" then -- assume stream error
210                         close_reply:tag("stream:error")
211                                 :tag(reason, {xmlns = xmlns_xmpp_streams});
212                 elseif type(reason) == "table" then
213                         if reason.condition then
214                                 close_reply:tag("stream:error")
215                                         :tag(reason.condition, stream_xmlns_attr):up();
216                                 if reason.text then
217                                         close_reply:tag("text", stream_xmlns_attr):text(reason.text):up();
218                                 end
219                                 if reason.extra then
220                                         close_reply:add_child(reason.extra);
221                                 end
222                         elseif reason.name then -- a stanza
223                                 close_reply = reason;
224                         end
225                 end
226                 log("info", "Disconnecting client, <stream:error> is: %s", tostring(close_reply));
227         end
228
229         local response_body = tostring(close_reply);
230         for _, held_request in ipairs(session.requests) do
231                 held_request:send(response_body);
232         end
233         sessions[session.sid] = nil;
234         inactive_sessions[session] = nil;
235         sm_destroy_session(session);
236 end
237
238 -- Handle the <body> tag in the request payload.
239 function stream_callbacks.streamopened(context, attr)
240         local request, response = context.request, context.response;
241         local sid = attr.sid;
242         log("debug", "BOSH body open (sid: %s)", sid or "<none>");
243         if not sid then
244                 -- New session request
245                 context.notopen = nil; -- Signals that we accept this opening tag
246
247                 -- TODO: Sanity checks here (rid, to, known host, etc.)
248                 local to_host = nameprep(attr.to);
249                 if not to_host then
250                         log("debug", "BOSH client tried to connect to invalid host: %s", tostring(attr.to));
251                         local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate",
252                                 ["xmlns:stream"] = xmlns_streams, condition = "improper-addressing" });
253                         response:send(tostring(close_reply));
254                         return;
255                 elseif not hosts[to_host] then
256                         -- Unknown host
257                         log("debug", "BOSH client tried to connect to unknown host: %s", tostring(attr.to));
258                         local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate",
259                                 ["xmlns:stream"] = xmlns_streams, condition = "host-unknown" });
260                         response:send(tostring(close_reply));
261                         return;
262                 end
263
264                 -- New session
265                 sid = new_uuid();
266                 local session = {
267                         type = "c2s_unauthed", conn = {}, sid = sid, rid = tonumber(attr.rid)-1, host = attr.to,
268                         bosh_version = attr.ver, bosh_wait = math_min(attr.wait, bosh_max_wait), streamid = sid,
269                         bosh_hold = BOSH_DEFAULT_HOLD, bosh_max_inactive = BOSH_DEFAULT_INACTIVITY,
270                         requests = { }, send_buffer = {}, reset_stream = bosh_reset_stream,
271                         close = bosh_close_stream, dispatch_stanza = core_process_stanza, notopen = true,
272                         log = logger.init("bosh"..sid), secure = consider_bosh_secure or request.secure,
273                         ip = get_ip_from_request(request);
274                 };
275                 sessions[sid] = session;
276
277                 local filter = initialize_filters(session);
278
279                 session.log("debug", "BOSH session created for request from %s", session.ip);
280                 log("info", "New BOSH session, assigned it sid '%s'", sid);
281
282                 hosts[session.host].events.fire_event("bosh-session", { session = session, request = request });
283
284                 -- Send creation response
285                 local creating_session = true;
286
287                 local r = session.requests;
288                 function session.send(s)
289                         -- We need to ensure that outgoing stanzas have the jabber:client xmlns
290                         if s.attr and not s.attr.xmlns then
291                                 s = st.clone(s);
292                                 s.attr.xmlns = "jabber:client";
293                         end
294                         s = filter("stanzas/out", s);
295                         --log("debug", "Sending BOSH data: %s", tostring(s));
296                         if not s then return true end
297                         t_insert(session.send_buffer, tostring(s));
298
299                         local oldest_request = r[1];
300                         if oldest_request and not session.bosh_processing then
301                                 log("debug", "We have an open request, so sending on that");
302                                 local body_attr = { xmlns = "http://jabber.org/protocol/httpbind",
303                                         ["xmlns:stream"] = "http://etherx.jabber.org/streams";
304                                         type = session.bosh_terminate and "terminate" or nil;
305                                         sid = sid;
306                                 };
307                                 if creating_session then
308                                         creating_session = nil;
309                                         body_attr.inactivity = tostring(BOSH_DEFAULT_INACTIVITY);
310                                         body_attr.polling = tostring(BOSH_DEFAULT_POLLING);
311                                         body_attr.requests = tostring(BOSH_DEFAULT_REQUESTS);
312                                         body_attr.wait = tostring(session.bosh_wait);
313                                         body_attr.hold = tostring(session.bosh_hold);
314                                         body_attr.authid = sid;
315                                         body_attr.secure = "true";
316                                         body_attr.ver  = '1.6';
317                                         body_attr.from = session.host;
318                                         body_attr["xmlns:xmpp"] = "urn:xmpp:xbosh";
319                                         body_attr["xmpp:version"] = "1.0";
320                                 end
321                                 oldest_request:send(st.stanza("body", body_attr):top_tag()..t_concat(session.send_buffer).."</body>");
322                                 session.send_buffer = {};
323                         end
324                         return true;
325                 end
326                 request.sid = sid;
327         end
328
329         local session = sessions[sid];
330         if not session then
331                 -- Unknown sid
332                 log("info", "Client tried to use sid '%s' which we don't know about", sid);
333                 response:send(tostring(st.stanza("body", { xmlns = xmlns_bosh, type = "terminate", condition = "item-not-found" })));
334                 context.notopen = nil;
335                 return;
336         end
337
338         if session.rid then
339                 local rid = tonumber(attr.rid);
340                 local diff = rid - session.rid;
341                 if diff > 1 then
342                         session.log("warn", "rid too large (means a request was lost). Last rid: %d New rid: %s", session.rid, attr.rid);
343                 elseif diff <= 0 then
344                         -- Repeated, ignore
345                         session.log("debug", "rid repeated, ignoring: %s (diff %d)", session.rid, diff);
346                         context.notopen = nil;
347                         context.ignore = true;
348                         context.sid = sid;
349                         t_insert(session.requests, response);
350                         return;
351                 end
352                 session.rid = rid;
353         end
354
355         if attr.type == "terminate" then
356                 -- Client wants to end this session, which we'll do
357                 -- after processing any stanzas in this request
358                 session.bosh_terminate = true;
359         end
360
361         context.notopen = nil; -- Signals that we accept this opening tag
362         t_insert(session.requests, response);
363         context.sid = sid;
364         session.bosh_processing = true; -- Used to suppress replies until processing of this request is done
365
366         if session.notopen then
367                 local features = st.stanza("stream:features");
368                 hosts[session.host].events.fire_event("stream-features", { origin = session, features = features });
369                 session.send(features);
370                 session.notopen = nil;
371         end
372 end
373
374 local function handleerr(err) log("error", "Traceback[bosh]: %s", traceback(tostring(err), 2)); end
375 function stream_callbacks.handlestanza(context, stanza)
376         if context.ignore then return; end
377         log("debug", "BOSH stanza received: %s\n", stanza:top_tag());
378         local session = sessions[context.sid];
379         if session then
380                 if stanza.attr.xmlns == xmlns_bosh then
381                         stanza.attr.xmlns = nil;
382                 end
383                 stanza = session.filter("stanzas/in", stanza);
384                 if stanza then
385                         return xpcall(function () return core_process_stanza(session, stanza) end, handleerr);
386                 end
387         end
388 end
389
390 function stream_callbacks.streamclosed(context)
391         local session = sessions[context.sid];
392         if session then
393                 session.bosh_processing = false;
394                 if #session.send_buffer > 0 then
395                         session.send("");
396                 end
397         end
398 end
399
400 function stream_callbacks.error(context, error)
401         log("debug", "Error parsing BOSH request payload; %s", error);
402         if not context.sid then
403                 local response = context.response;
404                 response.status_code = 400;
405                 response:send();
406                 return;
407         end
408
409         local session = sessions[context.sid];
410         if error == "stream-error" then -- Remote stream error, we close normally
411                 session:close();
412         else
413                 session:close({ condition = "bad-format", text = "Error processing stream" });
414         end
415 end
416
417 local dead_sessions = module:shared("dead_sessions");
418 function on_timer()
419         -- log("debug", "Checking for requests soon to timeout...");
420         -- Identify requests timing out within the next few seconds
421         local now = os_time() + 3;
422         for request, reply_before in pairs(waiting_requests) do
423                 if reply_before <= now then
424                         log("debug", "%s was soon to timeout (at %d, now %d), sending empty response", tostring(request), reply_before, now);
425                         -- Send empty response to let the
426                         -- client know we're still here
427                         if request.conn then
428                                 sessions[request.context.sid].send("");
429                         end
430                 end
431         end
432
433         now = now - 3;
434         local n_dead_sessions = 0;
435         for session, close_after in pairs(inactive_sessions) do
436                 if close_after < now then
437                         (session.log or log)("debug", "BOSH client inactive too long, destroying session at %d", now);
438                         sessions[session.sid]  = nil;
439                         inactive_sessions[session] = nil;
440                         n_dead_sessions = n_dead_sessions + 1;
441                         dead_sessions[n_dead_sessions] = session;
442                 end
443         end
444
445         for i=1,n_dead_sessions do
446                 local session = dead_sessions[i];
447                 dead_sessions[i] = nil;
448                 sm_destroy_session(session, "BOSH client silent for over "..session.bosh_max_inactive.." seconds");
449         end
450         return 1;
451 end
452 module:add_timer(1, on_timer);
453
454
455 local GET_response = {
456         headers = {
457                 content_type = "text/html";
458         };
459         body = [[<html><body>
460         <p>It works! Now point your BOSH client to this URL to connect to Prosody.</p>
461         <p>For more information see <a href="http://prosody.im/doc/setting_up_bosh">Prosody: Setting up BOSH</a>.</p>
462         </body></html>]];
463 };
464
465 function module.add_host(module)
466         module:depends("http");
467         module:provides("http", {
468                 default_path = "/http-bind";
469                 route = {
470                         ["GET"] = GET_response;
471                         ["GET /"] = GET_response;
472                         ["OPTIONS"] = handle_OPTIONS;
473                         ["OPTIONS /"] = handle_OPTIONS;
474                         ["POST"] = handle_POST;
475                         ["POST /"] = handle_POST;
476                 };
477         });
478 end