core.stanza_router: Remove compatibility with Jabiru not including id attribute ...
[prosody.git] / core / stanza_router.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 local log = require "util.logger".init("stanzarouter")
10
11 local hosts = _G.prosody.hosts;
12 local tostring = tostring;
13 local st = require "util.stanza";
14 local jid_split = require "util.jid".split;
15 local jid_prepped_split = require "util.jid".prepped_split;
16
17 local full_sessions = _G.prosody.full_sessions;
18 local bare_sessions = _G.prosody.bare_sessions;
19
20 local core_post_stanza, core_process_stanza, core_route_stanza;
21
22 function deprecated_warning(f)
23         _G[f] = function(...)
24                 log("warn", "Using the global %s() is deprecated, use module:send() or prosody.%s(). %s", f, f, debug.traceback());
25                 return prosody[f](...);
26         end
27 end
28 deprecated_warning"core_post_stanza";
29 deprecated_warning"core_process_stanza";
30 deprecated_warning"core_route_stanza";
31
32 local valid_stanzas = { message = true, presence = true, iq = true };
33 local function handle_unhandled_stanza(host, origin, stanza) --luacheck: ignore 212/host
34         local name, xmlns, origin_type = stanza.name, stanza.attr.xmlns or "jabber:client", origin.type;
35         if xmlns == "jabber:client" and valid_stanzas[name] then
36                 -- A normal stanza
37                 local st_type = stanza.attr.type;
38                 if st_type == "error" or (name == "iq" and st_type == "result") then
39                         log("debug", "Discarding %s from %s of type: %s", name, origin_type, st_type or '<nil>');
40                         return;
41                 end
42                 if name == "iq" and (st_type == "get" or st_type == "set") and stanza.tags[1] then
43                         xmlns = stanza.tags[1].attr.xmlns or "jabber:client";
44                 end
45                 log("debug", "Unhandled %s stanza: %s; xmlns=%s", origin_type, name, xmlns);
46                 if origin.send then
47                         origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
48                 end
49         else
50                 log("warn", "Unhandled %s stream element or stanza: %s; xmlns=%s: %s", origin_type, name, xmlns, tostring(stanza)); -- we didn't handle it
51                 origin:close("unsupported-stanza-type");
52         end
53 end
54
55 local iq_types = { set=true, get=true, result=true, error=true };
56 function core_process_stanza(origin, stanza)
57         (origin.log or log)("debug", "Received[%s]: %s", origin.type, stanza:top_tag())
58
59         if origin.type == "c2s" and not stanza.attr.xmlns then
60                 local name, st_type = stanza.name, stanza.attr.type;
61                 if st_type == "error" and #stanza.tags == 0 then
62                         return handle_unhandled_stanza(origin.host, origin, stanza);
63                 end
64                 if name == "iq" then
65                         if not iq_types[st_type] or ((st_type == "set" or st_type == "get") and (#stanza.tags ~= 1)) then
66                                 origin.send(st.error_reply(stanza, "modify", "bad-request", "Invalid IQ type or incorrect number of children"));
67                                 return;
68                         end
69                 end
70
71                 if not origin.full_jid
72                         and not(name == "iq" and st_type == "set" and stanza.tags[1] and stanza.tags[1].name == "bind"
73                                         and stanza.tags[1].attr.xmlns == "urn:ietf:params:xml:ns:xmpp-bind") then
74                         -- authenticated client isn't bound and current stanza is not a bind request
75                         if stanza.attr.type ~= "result" and stanza.attr.type ~= "error" then
76                                 origin.send(st.error_reply(stanza, "auth", "not-authorized")); -- FIXME maybe allow stanzas to account or server
77                         end
78                         return;
79                 end
80
81                 -- TODO also, stanzas should be returned to their original state before the function ends
82                 stanza.attr.from = origin.full_jid;
83         end
84         local to, xmlns = stanza.attr.to, stanza.attr.xmlns;
85         local from = stanza.attr.from;
86         local node, host, resource;
87         local from_node, from_host, from_resource;
88         local to_bare, from_bare;
89         if to then
90                 if full_sessions[to] or bare_sessions[to] or hosts[to] then
91                         node, host = jid_split(to); -- TODO only the host is needed, optimize
92                 else
93                         node, host, resource = jid_prepped_split(to);
94                         if not host then
95                                 log("warn", "Received stanza with invalid destination JID: %s", to);
96                                 if stanza.attr.type ~= "error" and stanza.attr.type ~= "result" then
97                                         origin.send(st.error_reply(stanza, "modify", "jid-malformed", "The destination address is invalid: "..to));
98                                 end
99                                 return;
100                         end
101                         to_bare = node and (node.."@"..host) or host; -- bare JID
102                         if resource then to = to_bare.."/"..resource; else to = to_bare; end
103                         stanza.attr.to = to;
104                 end
105         end
106         if from and not origin.full_jid then
107                 -- We only stamp the 'from' on c2s stanzas, so we still need to check validity
108                 from_node, from_host, from_resource = jid_prepped_split(from);
109                 if not from_host then
110                         log("warn", "Received stanza with invalid source JID: %s", from);
111                         if stanza.attr.type ~= "error" and stanza.attr.type ~= "result" then
112                                 origin.send(st.error_reply(stanza, "modify", "jid-malformed", "The source address is invalid: "..from));
113                         end
114                         return;
115                 end
116                 from_bare = from_node and (from_node.."@"..from_host) or from_host; -- bare JID
117                 if from_resource then from = from_bare.."/"..from_resource; else from = from_bare; end
118                 stanza.attr.from = from;
119         end
120
121         if (origin.type == "s2sin" or origin.type == "c2s" or origin.type == "component") and xmlns == nil then
122                 if origin.type == "s2sin" and not origin.dummy then
123                         local host_status = origin.hosts[from_host];
124                         if not host_status or not host_status.authed then -- remote server trying to impersonate some other server?
125                                 log("warn", "Received a stanza claiming to be from %s, over a stream authed for %s!", from_host, origin.from_host);
126                                 origin:close("not-authorized");
127                                 return;
128                         elseif not hosts[host] then
129                                 log("warn", "Remote server %s sent us a stanza for %s, closing stream", origin.from_host, host);
130                                 origin:close("host-unknown");
131                                 return;
132                         end
133                 end
134                 core_post_stanza(origin, stanza, origin.full_jid);
135         else
136                 local h = hosts[stanza.attr.to or origin.host or origin.to_host];
137                 if h then
138                         local event;
139                         if xmlns == nil then
140                                 if stanza.name == "iq" and (stanza.attr.type == "set" or stanza.attr.type == "get") then
141                                         event = "stanza/iq/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name;
142                                 else
143                                         event = "stanza/"..stanza.name;
144                                 end
145                         else
146                                 event = "stanza/"..xmlns..":"..stanza.name;
147                         end
148                         if h.events.fire_event(event, {origin = origin, stanza = stanza}) then return; end
149                 end
150                 if host and not hosts[host] then host = nil; end -- COMPAT: workaround for a Pidgin bug which sets 'to' to the SRV result
151                 handle_unhandled_stanza(host or origin.host or origin.to_host, origin, stanza);
152         end
153 end
154
155 function core_post_stanza(origin, stanza, preevents)
156         local to = stanza.attr.to;
157         local node, host, resource = jid_split(to);
158         local to_bare = node and (node.."@"..host) or host; -- bare JID
159
160         local to_type, to_self;
161         if node then
162                 if resource then
163                         to_type = '/full';
164                 else
165                         to_type = '/bare';
166                         if node == origin.username and host == origin.host then
167                                 stanza.attr.to = nil;
168                                 to_self = true;
169                         end
170                 end
171         else
172                 if host then
173                         to_type = '/host';
174                 else
175                         to_type = '/bare';
176                         to_self = true;
177                 end
178         end
179
180         local event_data = {origin=origin, stanza=stanza};
181         if preevents then -- c2s connection
182                 if hosts[origin.host].events.fire_event('pre-'..stanza.name..to_type, event_data) then return; end -- do preprocessing
183         end
184         local h = hosts[to_bare] or hosts[host or origin.host];
185         if h then
186                 if h.events.fire_event(stanza.name..to_type, event_data) then return; end -- do processing
187                 if to_self and h.events.fire_event(stanza.name..'/self', event_data) then return; end -- do processing
188                 handle_unhandled_stanza(h.host, origin, stanza);
189         else
190                 core_route_stanza(origin, stanza);
191         end
192 end
193
194 function core_route_stanza(origin, stanza)
195         local node, host, resource = jid_split(stanza.attr.to);
196         local from_node, from_host, from_resource = jid_split(stanza.attr.from);
197
198         -- Auto-detect origin if not specified
199         origin = origin or hosts[from_host];
200         if not origin then return false; end
201
202         if hosts[host] then
203                 -- old stanza routing code removed
204                 core_post_stanza(origin, stanza);
205         else
206                 log("debug", "Routing to remote...");
207                 local host_session = hosts[from_host];
208                 if not host_session then
209                         log("error", "No hosts[from_host] (please report): %s", tostring(stanza));
210                 else
211                         local xmlns = stanza.attr.xmlns;
212                         stanza.attr.xmlns = nil;
213                         local routed = host_session.events.fire_event("route/remote", { origin = origin, stanza = stanza, from_host = from_host, to_host = host });
214                         stanza.attr.xmlns = xmlns; -- reset
215                         if not routed then
216                                 log("debug", "... no, just kidding.");
217                                 if stanza.attr.type == "error" or (stanza.name == "iq" and stanza.attr.type == "result") then return; end
218                                 core_route_stanza(host_session, st.error_reply(stanza, "cancel", "not-allowed", "Communication with remote domains is not enabled"));
219                         end
220                 end
221         end
222 end
223
224 --luacheck: ignore 122/prosody
225 prosody.core_process_stanza = core_process_stanza;
226 prosody.core_post_stanza = core_post_stanza;
227 prosody.core_route_stanza = core_route_stanza;