e47d63ed9cb38f6e4d2fd28f1d50649a3d7508b7
[prosody.git] / plugins / mod_dialback.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 format = string.format;
10
11 local hosts = _G.hosts;
12 local s2s_make_authenticated = require "core.s2smanager".make_authenticated;
13
14 local log = module._log;
15
16 local st = require "util.stanza";
17 local sha256_hash = require "util.hashes".sha256;
18 local nameprep = require "util.encodings".stringprep.nameprep;
19
20 local xmlns_stream = "http://etherx.jabber.org/streams";
21
22 local dialback_requests = setmetatable({}, { __mode = 'v' });
23
24 function generate_dialback(id, to, from)
25         return sha256_hash(id..to..from..hosts[from].dialback_secret, true);
26 end
27
28 function initiate_dialback(session)
29         -- generate dialback key
30         session.dialback_key = generate_dialback(session.streamid, session.to_host, session.from_host);
31         session.sends2s(format("<db:result from='%s' to='%s'>%s</db:result>", session.from_host, session.to_host, session.dialback_key));
32         session.log("info", "sent dialback key on outgoing s2s stream");
33 end
34
35 function verify_dialback(id, to, from, key)
36         return key == generate_dialback(id, to, from);
37 end
38
39 module:hook("stanza/jabber:server:dialback:verify", function(event)
40         local origin, stanza = event.origin, event.stanza;
41         
42         if origin.type == "s2sin_unauthed" or origin.type == "s2sin" then
43                 -- We are being asked to verify the key, to ensure it was generated by us
44                 origin.log("debug", "verifying that dialback key is ours...");
45                 local attr = stanza.attr;
46                 -- COMPAT: Grr, ejabberd breaks this one too?? it is black and white in XEP-220 example 34
47                 --if attr.from ~= origin.to_host then error("invalid-from"); end
48                 local type;
49                 if verify_dialback(attr.id, attr.from, attr.to, stanza[1]) then
50                         type = "valid"
51                 else
52                         type = "invalid"
53                         origin.log("warn", "Asked to verify a dialback key that was incorrect. An imposter is claiming to be %s?", attr.to);
54                 end
55                 origin.log("debug", "verified dialback key... it is %s", type);
56                 origin.sends2s(st.stanza("db:verify", { from = attr.to, to = attr.from, id = attr.id, type = type }):text(stanza[1]));
57                 return true;
58         end
59 end);
60
61 module:hook("stanza/jabber:server:dialback:result", function(event)
62         local origin, stanza = event.origin, event.stanza;
63         
64         if origin.type == "s2sin_unauthed" or origin.type == "s2sin" then
65                 -- he wants to be identified through dialback
66                 -- We need to check the key with the Authoritative server
67                 local attr = stanza.attr;
68                 local to, from = nameprep(attr.to), nameprep(attr.from);
69                 
70                 if not hosts[to] then
71                         -- Not a host that we serve
72                         origin.log("info", "%s tried to connect to %s, which we don't serve", from, to);
73                         origin:close("host-unknown");
74                         return true;
75                 elseif not from then
76                         origin:close("improper-addressing");
77                 end
78                 
79                 origin.hosts[from] = { dialback_key = stanza[1] };
80                 
81                 dialback_requests[from.."/"..origin.streamid] = origin;
82                 
83                 -- COMPAT: ejabberd, gmail and perhaps others do not always set 'to' and 'from'
84                 -- on streams. We fill in the session's to/from here instead.
85                 if not origin.from_host then
86                         origin.from_host = from;
87                 end
88                 if not origin.to_host then
89                         origin.to_host = nameprep(attr.to);
90                 end
91
92                 origin.log("debug", "asking %s if key %s belongs to them", from, stanza[1]);
93                 module:fire_event("route/remote", {
94                         from_host = to, to_host = from;
95                         stanza = st.stanza("db:verify", { from = to, to = from, id = origin.streamid }):text(stanza[1]);
96                 });
97                 return true;
98         end
99 end);
100
101 module:hook("stanza/jabber:server:dialback:verify", function(event)
102         local origin, stanza = event.origin, event.stanza;
103         
104         if origin.type == "s2sout_unauthed" or origin.type == "s2sout" then
105                 local attr = stanza.attr;
106                 local dialback_verifying = dialback_requests[attr.from.."/"..(attr.id or "")];
107                 module:log("debug", tostring(dialback_verifying).." "..attr.from.." "..origin.to_host);
108                 if dialback_verifying and attr.from == origin.to_host then
109                         local valid;
110                         if attr.type == "valid" then
111                                 s2s_make_authenticated(dialback_verifying, attr.from);
112                                 valid = "valid";
113                         else
114                                 -- Warn the original connection that is was not verified successfully
115                                 log("warn", "authoritative server for "..(attr.from or "(unknown)").." denied the key");
116                                 valid = "invalid";
117                         end
118                         if not dialback_verifying.sends2s then
119                                 log("warn", "Incoming s2s session %s was closed in the meantime, so we can't notify it of the db result", tostring(dialback_verifying):match("%w+$"));
120                         else
121                                 dialback_verifying.sends2s(
122                                                 st.stanza("db:result", { from = attr.to, to = attr.from, id = attr.id, type = valid })
123                                                                 :text(dialback_verifying.hosts[attr.from].dialback_key));
124                         end
125                         dialback_requests[attr.from.."/"..(attr.id or "")] = nil;
126                 end
127                 return true;
128         end
129 end);
130
131 module:hook("stanza/jabber:server:dialback:result", function(event)
132         local origin, stanza = event.origin, event.stanza;
133         
134         if origin.type == "s2sout_unauthed" or origin.type == "s2sout" then
135                 -- Remote server is telling us whether we passed dialback
136                 
137                 local attr = stanza.attr;
138                 if not hosts[attr.to] then
139                         origin:close("host-unknown");
140                         return true;
141                 elseif hosts[attr.to].s2sout[attr.from] ~= origin then
142                         -- This isn't right
143                         origin:close("invalid-id");
144                         return true;
145                 end
146                 if stanza.attr.type == "valid" then
147                         s2s_make_authenticated(origin, attr.from);
148                 else
149                         origin:close("not-authorized", "dialback authentication failed");
150                 end
151                 return true;
152         end
153 end);
154
155 module:hook_stanza("urn:ietf:params:xml:ns:xmpp-sasl", "failure", function (origin, stanza)
156         if origin.external_auth == "failed" then
157                 module:log("debug", "SASL EXTERNAL failed, falling back to dialback");
158                 initiate_dialback(origin);
159                 return true;
160         end
161 end, 100);
162
163 module:hook_stanza(xmlns_stream, "features", function (origin, stanza)
164         if not origin.external_auth or origin.external_auth == "failed" then
165                 module:log("debug", "Initiating dialback...");
166                 initiate_dialback(origin);
167                 return true;
168         end
169 end, 100);
170
171 module:hook("s2s-authenticate-legacy", function (event)
172         module:log("debug", "Initiating dialback...");
173         initiate_dialback(event.origin);
174         return true;
175 end, 100);
176
177 -- Offer dialback to incoming hosts
178 module:hook("s2s-stream-features", function (data)
179         data.features:tag("dialback", { xmlns='urn:xmpp:features:dialback' }):up();
180 end);