1640e0ed35e521ac455d593b1c12644494f8c18c
[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                 local event_data = {origin=origin, stanza=stanza};
113                 if fire_event(tostring(host or origin.host).."/"..stanza.name, event_data) then
114                         -- event handled
115                 elseif not to then
116                         modules_handle_stanza(host or origin.host or origin.to_host, origin, stanza);
117                 elseif hosts[to] and hosts[to].type == "local" then -- directed at a local server
118                         modules_handle_stanza(host or origin.host or origin.to_host, origin, stanza);
119                 elseif hosts[to] and hosts[to].type == "component" then -- hack to allow components to handle node@server/resource and server/resource
120                         component_handle_stanza(origin, stanza);
121                 elseif hosts[to_bare] and hosts[to_bare].type == "component" then -- hack to allow components to handle node@server
122                         component_handle_stanza(origin, stanza);
123                 elseif hosts[host] and hosts[host].type == "component" then -- directed at a component
124                         component_handle_stanza(origin, stanza);
125                 elseif hosts[host] and hosts[host].type == "local" and stanza.name == "iq" and not resource then -- directed at bare JID
126                         modules_handle_stanza(host or origin.host or origin.to_host, origin, stanza);
127                 else
128                         core_route_stanza(origin, stanza);
129                 end
130         else
131                 modules_handle_stanza(host or origin.host or origin.to_host, origin, stanza);
132         end
133 end
134
135 function core_route_stanza(origin, stanza)
136         -- Hooks
137         --- ...later
138
139         -- Deliver
140         local to = stanza.attr.to;
141         local node, host, resource = jid_split(to);
142         local to_bare = node and (node.."@"..host) or host; -- bare JID
143         local from = stanza.attr.from;
144         local from_node, from_host, from_resource = jid_split(from);
145         local from_bare = from_node and (from_node.."@"..from_host) or from_host; -- bare JID
146
147         -- Auto-detect origin if not specified
148         origin = origin or hosts[from_host];
149         if not origin then return false; end
150         
151         if hosts[to] and hosts[to].type == "component" then -- hack to allow components to handle node@server/resource and server/resource
152                 return component_handle_stanza(origin, stanza);
153         elseif hosts[to_bare] and hosts[to_bare].type == "component" then -- hack to allow components to handle node@server
154                 return component_handle_stanza(origin, stanza);
155         elseif hosts[host] and hosts[host].type == "component" then -- directed at a component
156                 return component_handle_stanza(origin, stanza);
157         end
158
159         if stanza.name == "presence" and (stanza.attr.type ~= nil and stanza.attr.type ~= "unavailable" and stanza.attr.type ~= "error") then resource = nil; end
160
161         local host_session = hosts[host]
162         if host_session and host_session.type == "local" then
163                 -- Local host
164                 local user = host_session.sessions[node];
165                 if user then
166                         local res = user.sessions[resource];
167                         if not res then
168                                 -- if we get here, resource was not specified or was unavailable
169                                 if stanza.name == "presence" then
170                                         if stanza.attr.type ~= nil and stanza.attr.type ~= "unavailable" and stanza.attr.type ~= "error" then
171                                                 handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare, core_route_stanza);
172                                         elseif not resource then -- sender is available or unavailable or error
173                                                 for _, session in pairs(user.sessions) do -- presence broadcast to all user resources.
174                                                         if session.full_jid then -- FIXME should this be just for available resources? Do we need to check subscription?
175                                                                 stanza.attr.to = session.full_jid; -- reset at the end of function
176                                                                 session.send(stanza);
177                                                         end
178                                                 end
179                                         end
180                                 elseif stanza.name == "message" then -- select a resource to recieve message
181                                         stanza.attr.to = to_bare;
182                                         if stanza.attr.type == 'headline' then
183                                                 for _, session in pairs(user.sessions) do -- find resource with greatest priority
184                                                         if session.presence and session.priority >= 0 then
185                                                                 session.send(stanza);
186                                                         end
187                                                 end
188                                         elseif resource and stanza.attr.type == 'groupchat' then
189                                                 -- Groupchat message sent to offline resource
190                                                 origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
191                                         else
192                                                 local priority = 0;
193                                                 local recipients = {};
194                                                 for _, session in pairs(user.sessions) do -- find resource with greatest priority
195                                                         if session.presence then
196                                                                 local p = session.priority;
197                                                                 if p > priority then
198                                                                         priority = p;
199                                                                         recipients = {session};
200                                                                 elseif p == priority then
201                                                                         t_insert(recipients, session);
202                                                                 end
203                                                         end
204                                                 end
205                                                 local count = 0;
206                                                 for _, session in ipairs(recipients) do
207                                                         session.send(stanza);
208                                                         count = count + 1;
209                                                 end
210                                                 if count == 0 and (stanza.attr.type == "chat" or stanza.attr.type == "normal" or not stanza.attr.type) then
211                                                         offlinemanager.store(node, host, stanza);
212                                                         -- TODO deal with storage errors
213                                                 end
214                                         end
215                                 elseif stanza.attr.type == "get" or stanza.attr.type == "set" then
216                                         origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
217                                 end
218                         else
219                                 -- User + resource is online...
220                                 stanza.attr.to = res.full_jid; -- reset at the end of function
221                                 res.send(stanza); -- Yay \o/
222                         end
223                 else
224                         -- user not online
225                         if user_exists(node, host) then
226                                 if stanza.name == "presence" then
227                                         if stanza.attr.type ~= nil and stanza.attr.type ~= "unavailable" and stanza.attr.type ~= "error" then
228                                                 handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare, core_route_stanza);
229                                         else
230                                                 -- TODO send unavailable presence or unsubscribed
231                                         end
232                                 elseif stanza.name == "message" then -- FIXME if full jid, then send out to resources with highest priority
233                                         stanza.attr.to = to_bare; -- TODO not in RFC, but seems obvious. Should discuss on the mailing list.
234                                         if stanza.attr.type == "chat" or stanza.attr.type == "normal" or not stanza.attr.type then
235                                                 offlinemanager.store(node, host, stanza);
236                                                 -- FIXME don't store messages with only chat state notifications
237                                         elseif stanza.attr.type == "groupchat" then
238                                                 local reply = st.error_reply(stanza, "cancel", "service-unavailable");
239                                                 reply.attr.from = to;
240                                                 origin.send(reply);
241                                         end
242                                         -- TODO allow configuration of offline storage
243                                         -- TODO send error if not storing offline
244                                 elseif stanza.name == "iq" and (stanza.attr.type == "get" or stanza.attr.type == "set") then
245                                         origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
246                                 end
247                         else -- user does not exist
248                                 -- TODO we would get here for nodeless JIDs too. Do something fun maybe? Echo service? Let plugins use xmpp:server/resource addresses?
249                                 if stanza.name == "presence" then
250                                         local t = stanza.attr.type;
251                                         if t == "subscribe" or t == "probe" then
252                                                 origin.send(st.presence({from = to_bare, to = from_bare, type = "unsubscribed"}));
253                                         end
254                                         -- else ignore
255                                 elseif stanza.attr.type ~= "error" and (stanza.name ~= "iq" or stanza.attr.type ~= "result") then
256                                         origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
257                                 end
258                         end
259                 end
260         elseif origin.type == "c2s" then
261                 -- Remote host
262                 local xmlns = stanza.attr.xmlns;
263                 --stanza.attr.xmlns = "jabber:server";
264                 stanza.attr.xmlns = nil;
265                 log("debug", "sending s2s stanza: %s", tostring(stanza));
266                 send_s2s(origin.host, host, stanza); -- TODO handle remote routing errors
267                 stanza.attr.xmlns = xmlns; -- reset
268         elseif origin.type == "component" or origin.type == "local" then
269                 -- Route via s2s for components and modules
270                 log("debug", "Routing outgoing stanza for %s to %s", origin.host, host);
271                 send_s2s(origin.host, host, stanza);
272         else
273                 log("warn", "received stanza from unhandled connection type: %s", origin.type);
274         end
275         stanza.attr.to = to; -- reset
276 end