4804607baf24a46a09b3b1b94fbcc3437e8a1439
[prosody.git] / plugins / mod_saslauth.lua
1 -- Prosody IM v0.3
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 st = require "util.stanza";
12 local sm_bind_resource = require "core.sessionmanager".bind_resource;
13 local base64 = require "util.encodings".base64;
14
15 local usermanager_validate_credentials = require "core.usermanager".validate_credentials;
16 local t_concat, t_insert = table.concat, table.insert;
17 local tostring = tostring;
18 local jid_split = require "util.jid".split
19 local md5 = require "util.hashes".md5;
20 local config = require "core.configmanager";
21
22 local log = require "util.logger".init("mod_saslauth");
23
24 local xmlns_sasl ='urn:ietf:params:xml:ns:xmpp-sasl';
25 local xmlns_bind ='urn:ietf:params:xml:ns:xmpp-bind';
26 local xmlns_stanzas ='urn:ietf:params:xml:ns:xmpp-stanzas';
27
28 local new_sasl = require "util.sasl".new;
29
30 local function build_reply(status, ret, err_msg)
31         local reply = st.stanza(status, {xmlns = xmlns_sasl});
32         if status == "challenge" then
33                 log("debug", ret or "");
34                 reply:text(base64.encode(ret or ""));
35         elseif status == "failure" then
36                 reply:tag(ret):up();
37                 if err_msg then reply:tag("text"):text(err_msg); end
38         elseif status == "success" then
39                 log("debug", ret or "");
40                 reply:text(base64.encode(ret or ""));
41         else
42                 error("Unknown sasl status: "..status);
43         end
44         return reply;
45 end
46
47 local function handle_status(session, status)
48         if status == "failure" then
49                 session.sasl_handler = nil;
50         elseif status == "success" then
51                 if not session.sasl_handler.username then error("SASL succeeded but we didn't get a username!"); end -- TODO move this to sessionmanager
52                 sessionmanager.make_authenticated(session, session.sasl_handler.username);
53                 session.sasl_handler = nil;
54                 session:reset_stream();
55         end
56 end
57
58 local function password_callback(node, host, mechanism, decoder)
59         local password = (datamanager.load(node, host, "accounts") or {}).password; -- FIXME handle hashed passwords
60         local func = function(x) return x; end;
61         if password then
62                 if mechanism == "PLAIN" then
63                         return func, password;
64                 elseif mechanism == "DIGEST-MD5" then
65                         if decoder then node, host, password = decoder(node), decoder(host), decoder(password); end
66                         return func, md5(node..":"..host..":"..password);
67                 end
68         end
69         return func, nil;
70 end
71
72 local function sasl_handler(session, stanza)
73         if stanza.name == "auth" then
74                 -- FIXME ignoring duplicates because ejabberd does
75                 session.sasl_handler = new_sasl(stanza.attr.mechanism, session.host, password_callback);
76         elseif not session.sasl_handler then
77                 return; -- FIXME ignoring out of order stanzas because ejabberd does
78         end
79         local text = stanza[1];
80         if text then
81                 text = base64.decode(text);
82                 log("debug", text);
83                 if not text then
84                         session.sasl_handler = nil;
85                         session.send(build_reply("failure", "incorrect-encoding"));
86                         return;
87                 end
88         end
89         local status, ret, err_msg = session.sasl_handler:feed(text);
90         handle_status(session, status);
91         local s = build_reply(status, ret, err_msg); 
92         log("debug", "sasl reply: "..tostring(s));
93         session.send(s);
94 end
95
96 module:add_handler("c2s_unauthed", "auth", xmlns_sasl, sasl_handler);
97 module:add_handler("c2s_unauthed", "abort", xmlns_sasl, sasl_handler);
98 module:add_handler("c2s_unauthed", "response", xmlns_sasl, sasl_handler);
99
100 local mechanisms_attr = { xmlns='urn:ietf:params:xml:ns:xmpp-sasl' };
101 local bind_attr = { xmlns='urn:ietf:params:xml:ns:xmpp-bind' };
102 local xmpp_session_attr = { xmlns='urn:ietf:params:xml:ns:xmpp-session' };
103 module:add_event_hook("stream-features", 
104                 function (session, features)                                                                                            
105                         if not session.username then
106                                 features:tag("mechanisms", mechanisms_attr);
107                                 -- TODO: Provide PLAIN only if TLS is active, this is a SHOULD from the introduction of RFC 4616. This behavior could be overridden via configuration but will issuing a warning or so.
108                                         features:tag("mechanism"):text("PLAIN"):up();
109                                         features:tag("mechanism"):text("DIGEST-MD5"):up();
110                                         if config.get(session.host or "*", "core", "sasl_anonymous") then
111                                                 features:tag("mechanism"):text("ANONYMOUS"):up();
112                                         end
113                                 features:up();
114                         else
115                                 features:tag("bind", bind_attr):tag("required"):up():up();
116                                 features:tag("session", xmpp_session_attr):up();
117                         end
118                 end);
119                                         
120 module:add_iq_handler("c2s", "urn:ietf:params:xml:ns:xmpp-bind", 
121                 function (session, stanza)
122                         log("debug", "Client tried to bind to a resource");
123                         local resource;
124                         if stanza.attr.type == "set" then
125                                 local bind = stanza.tags[1];
126                                 if bind and bind.attr.xmlns == xmlns_bind then
127                                         resource = bind:child_with_name("resource");
128                                         if resource then
129                                                 resource = resource[1];
130                                         end
131                                 end
132                         end
133                         local success, err_type, err, err_msg = sm_bind_resource(session, resource);
134                         if not success then
135                                 session.send(st.error_reply(stanza, err_type, err, err_msg));
136                         else
137                                 session.send(st.reply(stanza)
138                                         :tag("bind", { xmlns = xmlns_bind})
139                                         :tag("jid"):text(session.full_jid));
140                         end
141                 end);
142                 
143 module:add_iq_handler("c2s", "urn:ietf:params:xml:ns:xmpp-session", 
144                 function (session, stanza)
145                         log("debug", "Client tried to bind to a resource");
146                         session.send(st.reply(stanza));
147                 end);