6eb04ae220b2eb9ff78a5a232c45d6919488a2f0
[prosody.git] / core / stanza_router.lua
1 -- Prosody IM v0.4
2 -- Copyright (C) 2008-2009 Matthew Wild
3 -- Copyright (C) 2008-2009 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
10
11 local log = require "util.logger".init("stanzarouter")
12
13 local hosts = _G.hosts;
14
15 local st = require "util.stanza";
16 local send_s2s = require "core.s2smanager".send_to_host;
17 local user_exists = require "core.usermanager".user_exists;
18
19 local rostermanager = require "core.rostermanager";
20 local sessionmanager = require "core.sessionmanager";
21 local offlinemanager = require "core.offlinemanager";
22
23 local s2s_verify_dialback = require "core.s2smanager".verify_dialback;
24 local s2s_make_authenticated = require "core.s2smanager".make_authenticated;
25
26 local modules_handle_stanza = require "core.modulemanager".handle_stanza;
27 local component_handle_stanza = require "core.componentmanager".handle_stanza;
28
29 local handle_outbound_presence_subscriptions_and_probes = function()end;--require "core.presencemanager".handle_outbound_presence_subscriptions_and_probes;
30 local handle_inbound_presence_subscriptions_and_probes = function()end;--require "core.presencemanager".handle_inbound_presence_subscriptions_and_probes;
31 local handle_normal_presence = function()end;--require "core.presencemanager".handle_normal_presence;
32
33 local format = string.format;
34 local tostring = tostring;
35 local t_concat = table.concat;
36 local t_insert = table.insert;
37 local tonumber = tonumber;
38 local s_find = string.find;
39 local pairs = pairs;
40 local ipairs = ipairs;
41
42 local jid_split = require "util.jid".split;
43 local jid_prepped_split = require "util.jid".prepped_split;
44 local print = print;
45 local fire_event = require "core.eventmanager2".fire_event;
46
47 function core_process_stanza(origin, stanza)
48         (origin.log or log)("debug", "Received[%s]: %s", origin.type, stanza:top_tag())
49
50         if not stanza.attr.xmlns then stanza.attr.xmlns = "jabber:client"; end -- FIXME Hack. This should be removed when we fix namespace handling.
51         -- TODO verify validity of stanza (as well as JID validity)
52         if stanza.attr.type == "error" and #stanza.tags == 0 then return; end -- TODO invalid stanza, log
53         if stanza.name == "iq" then
54                 if (stanza.attr.type == "set" or stanza.attr.type == "get") and #stanza.tags ~= 1 then
55                         origin.send(st.error_reply(stanza, "modify", "bad-request"));
56                         return;
57                 end
58         end
59
60         if origin.type == "c2s" and not origin.full_jid
61                 and not(stanza.name == "iq" and stanza.tags[1].name == "bind"
62                                 and stanza.tags[1].attr.xmlns == "urn:ietf:params:xml:ns:xmpp-bind") then
63                 error("Client MUST bind resource after auth");
64         end
65
66         -- TODO also, stanzas should be returned to their original state before the function ends
67         if origin.type == "c2s" then
68                 stanza.attr.from = origin.full_jid;
69         end
70         local to, xmlns = stanza.attr.to, stanza.attr.xmlns;
71         local from = stanza.attr.from;
72         local node, host, resource;
73         local from_node, from_host, from_resource;
74         local to_bare, from_bare;
75         if to then
76                 node, host, resource = jid_prepped_split(to);
77                 if not host then
78                         log("warn", "Received stanza with invalid destination JID: %s", to);
79                         origin.send(st.error_reply(stanza, "modify", "jid-malformed", "The destination address is invalid: "..to));
80                         return;
81                 end
82                 to_bare = node and (node.."@"..host) or host; -- bare JID
83                 if resource then to = to_bare.."/"..resource; else to = to_bare; end
84                 stanza.attr.to = to;
85         end
86         if from then
87                 -- We only stamp the 'from' on c2s stanzas, so we still need to check validity
88                 from_node, from_host, from_resource = jid_prepped_split(from);
89                 if not from_host then
90                         log("warn", "Received stanza with invalid source JID: %s", from);
91                         origin.send(st.error_reply(stanza, "modify", "jid-malformed", "The source address is invalid: "..from));
92                         return;
93                 end
94                 from_bare = from_node and (from_node.."@"..from_host) or from_host; -- bare JID
95                 if from_resource then from = from_bare.."/"..from_resource; else from = from_bare; end
96                 stanza.attr.from = from;
97         end
98
99         --[[if to and not(hosts[to]) and not(hosts[to_bare]) and (hosts[host] and hosts[host].type ~= "local") then -- not for us?
100                 log("warn", "stanza recieved for a non-local server");
101                 return; -- FIXME what should we do here?
102         end]] -- FIXME
103
104         if (origin.type == "s2sin" or origin.type == "c2s" or origin.type == "component") and xmlns == "jabber:client" then
105                 if origin.type == "s2sin" and not origin.dummy then
106                         local host_status = origin.hosts[from_host];
107                         if not host_status or not host_status.authed then -- remote server trying to impersonate some other server?
108                                 log("warn", "Received a stanza claiming to be from %s, over a conn authed for %s!", from_host, origin.from_host);
109                                 return; -- FIXME what should we do here? does this work with subdomains?
110                         end
111                 end
112                 core_post_stanza(origin, stanza);
113         else
114                 modules_handle_stanza(host or origin.host or origin.to_host, origin, stanza);
115         end
116 end
117
118 function core_post_stanza(origin, stanza)
119         local to = stanza.attr.to;
120         local node, host, resource = jid_split(to);
121         local to_bare = node and (node.."@"..host) or host; -- bare JID
122
123         local event_data = {origin=origin, stanza=stanza};
124         if fire_event(tostring(host or origin.host).."/"..stanza.name, event_data) then
125                 -- event handled
126         elseif not to then
127                 modules_handle_stanza(host or origin.host or origin.to_host, origin, stanza);
128         elseif hosts[to] and hosts[to].type == "local" then -- directed at a local server
129                 modules_handle_stanza(host or origin.host or origin.to_host, origin, stanza);
130         elseif hosts[to_bare] and hosts[to_bare].type == "component" then -- hack to allow components to handle node@server
131                 component_handle_stanza(origin, stanza);
132         elseif hosts[host] and hosts[host].type == "component" then -- directed at a component
133                 component_handle_stanza(origin, stanza);
134         elseif hosts[host] and hosts[host].type == "local" and stanza.name == "iq" and not resource then -- directed at bare JID
135                 modules_handle_stanza(host or origin.host or origin.to_host, origin, stanza);
136         else
137                 core_route_stanza(origin, stanza);
138         end
139 end
140
141 function core_route_stanza(origin, stanza)
142         -- Hooks
143         --- ...later
144
145         -- Deliver
146         local to = stanza.attr.to;
147         local node, host, resource = jid_split(to);
148         local to_bare = node and (node.."@"..host) or host; -- bare JID
149         local from = stanza.attr.from;
150         local from_node, from_host, from_resource = jid_split(from);
151         local from_bare = from_node and (from_node.."@"..from_host) or from_host; -- bare JID
152
153         -- Auto-detect origin if not specified
154         origin = origin or hosts[from_host];
155         if not origin then return false; end
156         
157         if hosts[to_bare] and hosts[to_bare].type == "component" then -- hack to allow components to handle node@server
158                 return component_handle_stanza(origin, stanza);
159         elseif hosts[host] and hosts[host].type == "component" then -- directed at a component
160                 return component_handle_stanza(origin, stanza);
161         end
162
163         if stanza.name == "presence" and (stanza.attr.type ~= nil and stanza.attr.type ~= "unavailable" and stanza.attr.type ~= "error") then resource = nil; end
164
165         local host_session = hosts[host]
166         if host_session and host_session.type == "local" then
167                 -- Local host
168                 local user = host_session.sessions[node];
169                 if user then
170                         local res = user.sessions[resource];
171                         if res then -- resource is online...
172                                 res.send(stanza); -- Yay \o/
173                         else
174                                 -- if we get here, resource was not specified or was unavailable
175                                 if stanza.name == "presence" then
176                                         if stanza.attr.type ~= nil and stanza.attr.type ~= "unavailable" and stanza.attr.type ~= "error" then
177                                                 handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare, core_route_stanza);
178                                         elseif not resource then -- sender is available or unavailable or error
179                                                 for _, session in pairs(user.sessions) do -- presence broadcast to all user resources.
180                                                         if session.full_jid then -- FIXME should this be just for available resources? Do we need to check subscription?
181                                                                 stanza.attr.to = session.full_jid; -- reset at the end of function
182                                                                 session.send(stanza);
183                                                         end
184                                                 end
185                                         end
186                                 elseif stanza.name == "message" then -- select a resource to recieve message
187                                         stanza.attr.to = to_bare;
188                                         if stanza.attr.type == 'headline' then
189                                                 for _, session in pairs(user.sessions) do -- find resource with greatest priority
190                                                         if session.presence and session.priority >= 0 then
191                                                                 session.send(stanza);
192                                                         end
193                                                 end
194                                         elseif resource and stanza.attr.type == 'groupchat' then
195                                                 -- Groupchat message sent to offline resource
196                                                 origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
197                                         else
198                                                 local priority = 0;
199                                                 local recipients = {};
200                                                 for _, session in pairs(user.sessions) do -- find resource with greatest priority
201                                                         if session.presence then
202                                                                 local p = session.priority;
203                                                                 if p > priority then
204                                                                         priority = p;
205                                                                         recipients = {session};
206                                                                 elseif p == priority then
207                                                                         t_insert(recipients, session);
208                                                                 end
209                                                         end
210                                                 end
211                                                 local count = 0;
212                                                 for _, session in ipairs(recipients) do
213                                                         session.send(stanza);
214                                                         count = count + 1;
215                                                 end
216                                                 if count == 0 and (stanza.attr.type == "chat" or stanza.attr.type == "normal" or not stanza.attr.type) then
217                                                         offlinemanager.store(node, host, stanza);
218                                                         -- TODO deal with storage errors
219                                                 end
220                                         end
221                                 elseif stanza.attr.type == "get" or stanza.attr.type == "set" then
222                                         origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
223                                 end
224                         end
225                 else
226                         -- user not online
227                         if user_exists(node, host) then
228                                 if stanza.name == "presence" then
229                                         if stanza.attr.type ~= nil and stanza.attr.type ~= "unavailable" and stanza.attr.type ~= "error" then
230                                                 handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare, core_route_stanza);
231                                         else
232                                                 -- TODO send unavailable presence or unsubscribed
233                                         end
234                                 elseif stanza.name == "message" then -- FIXME if full jid, then send out to resources with highest priority
235                                         stanza.attr.to = to_bare; -- TODO not in RFC, but seems obvious. Should discuss on the mailing list.
236                                         if stanza.attr.type == "chat" or stanza.attr.type == "normal" or not stanza.attr.type then
237                                                 offlinemanager.store(node, host, stanza);
238                                                 -- FIXME don't store messages with only chat state notifications
239                                         elseif stanza.attr.type == "groupchat" then
240                                                 local reply = st.error_reply(stanza, "cancel", "service-unavailable");
241                                                 reply.attr.from = to;
242                                                 origin.send(reply);
243                                         end
244                                         -- TODO allow configuration of offline storage
245                                         -- TODO send error if not storing offline
246                                 elseif stanza.name == "iq" and (stanza.attr.type == "get" or stanza.attr.type == "set") then
247                                         origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
248                                 end
249                         else -- user does not exist
250                                 -- TODO we would get here for nodeless JIDs too. Do something fun maybe? Echo service? Let plugins use xmpp:server/resource addresses?
251                                 if stanza.name == "presence" then
252                                         local t = stanza.attr.type;
253                                         if t == "subscribe" or t == "probe" then
254                                                 origin.send(st.presence({from = to_bare, to = from_bare, type = "unsubscribed"}));
255                                         end
256                                         -- else ignore
257                                 elseif stanza.attr.type ~= "error" and (stanza.name ~= "iq" or stanza.attr.type ~= "result") then
258                                         origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
259                                 end
260                         end
261                 end
262         elseif origin.type == "c2s" then
263                 -- Remote host
264                 local xmlns = stanza.attr.xmlns;
265                 --stanza.attr.xmlns = "jabber:server";
266                 stanza.attr.xmlns = nil;
267                 log("debug", "sending s2s stanza: %s", tostring(stanza));
268                 send_s2s(origin.host, host, stanza); -- TODO handle remote routing errors
269                 stanza.attr.xmlns = xmlns; -- reset
270         elseif origin.type == "component" or origin.type == "local" then
271                 -- Route via s2s for components and modules
272                 log("debug", "Routing outgoing stanza for %s to %s", origin.host, host);
273                 send_s2s(origin.host, host, stanza);
274         else
275                 log("warn", "received stanza from unhandled connection type: %s", origin.type);
276         end
277         stanza.attr.to = to; -- reset
278 end