util.pluginloader: Return full file path from internal file loader on success, not...
[prosody.git] / util / sasl_cyrus.lua
1 -- sasl.lua v0.4
2 -- Copyright (C) 2008-2009 Tobias Markmann
3 --
4 --    All rights reserved.
5 --
6 --    Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
7 --
8 --        * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
9 --        * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
10 --        * Neither the name of Tobias Markmann nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
11 --
12 --    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
13
14 local cyrussasl = require "cyrussasl";
15 local log = require "util.logger".init("sasl_cyrus");
16
17 local setmetatable = setmetatable
18
19 local pcall = pcall
20 local s_match, s_gmatch = string.match, string.gmatch
21
22 local sasl_errstring = {
23         -- SASL result codes --
24         [1]   = "another step is needed in authentication";
25         [0]   = "successful result";
26         [-1]  = "generic failure";
27         [-2]  = "memory shortage failure";
28         [-3]  = "overflowed buffer";
29         [-4]  = "mechanism not supported";
30         [-5]  = "bad protocol / cancel";
31         [-6]  = "can't request info until later in exchange";
32         [-7]  = "invalid parameter supplied";
33         [-8]  = "transient failure (e.g., weak key)";
34         [-9]  = "integrity check failed";
35         [-12] = "SASL library not initialized";
36
37         -- client only codes --
38         [2]   = "needs user interaction";
39         [-10] = "server failed mutual authentication step";
40         [-11] = "mechanism doesn't support requested feature";
41
42         -- server only codes --
43         [-13] = "authentication failure";
44         [-14] = "authorization failure";
45         [-15] = "mechanism too weak for this user";
46         [-16] = "encryption needed to use mechanism";
47         [-17] = "One time use of a plaintext password will enable requested mechanism for user";
48         [-18] = "passphrase expired, has to be reset";
49         [-19] = "account disabled";
50         [-20] = "user not found";
51         [-23] = "version mismatch with plug-in";
52         [-24] = "remote authentication server unavailable";
53         [-26] = "user exists, but no verifier for user";
54
55         -- codes for password setting --
56         [-21] = "passphrase locked";
57         [-22] = "requested change was not needed";
58         [-27] = "passphrase is too weak for security policy";
59         [-28] = "user supplied passwords not permitted";
60 };
61 setmetatable(sasl_errstring, { __index = function() return "undefined error!" end });
62
63 module "sasl_cyrus"
64
65 local method = {};
66 method.__index = method;
67 local initialized = false;
68
69 local function init(service_name)
70         if not initialized then
71                 local st, errmsg = pcall(cyrussasl.server_init, service_name);
72                 if st then
73                         initialized = true;
74                 else
75                         log("error", "Failed to initialize Cyrus SASL: %s", errmsg);
76                 end
77         end
78 end
79
80 -- create a new SASL object which can be used to authenticate clients
81 function new(realm, service_name, app_name)
82
83         init(app_name or service_name);
84
85         local st, ret = pcall(cyrussasl.server_new, service_name, nil, realm, nil, nil)
86         if not st then
87                 log("error", "Creating SASL server connection failed: %s", ret);
88                 return nil;
89         end
90
91         local sasl_i = { realm = realm, service_name = service_name, cyrus = ret };
92
93         if cyrussasl.set_canon_cb then
94                 local c14n_cb = function (user)
95                         local node = s_match(user, "^([^@]+)");
96                         log("debug", "Canonicalizing username %s to %s", user, node)
97                         return node
98                 end
99                 cyrussasl.set_canon_cb(sasl_i.cyrus, c14n_cb);
100         end
101
102         cyrussasl.setssf(sasl_i.cyrus, 0, 0xffffffff)
103         local mechanisms = {};
104         local cyrus_mechs = cyrussasl.listmech(sasl_i.cyrus, nil, "", " ", "");
105         for w in s_gmatch(cyrus_mechs, "[^ ]+") do
106                 mechanisms[w] = true;
107         end
108         sasl_i.mechs = mechanisms;
109         return setmetatable(sasl_i, method);
110 end
111
112 -- get a fresh clone with the same realm and service name
113 function method:clean_clone()
114         return new(self.realm, self.service_name)
115 end
116
117 -- get a list of possible SASL mechanims to use
118 function method:mechanisms()
119         return self.mechs;
120 end
121
122 -- select a mechanism to use
123 function method:select(mechanism)
124         if not self.selected and self.mechs[mechanism] then
125                 self.selected = mechanism;
126                 return true;
127         end
128 end
129
130 -- feed new messages to process into the library
131 function method:process(message)
132         local err;
133         local data;
134
135         if not self.first_step_done then
136                 err, data = cyrussasl.server_start(self.cyrus, self.selected, message or "")
137                 self.first_step_done = true;
138         else
139                 err, data = cyrussasl.server_step(self.cyrus, message or "")
140         end
141
142         self.username = cyrussasl.get_username(self.cyrus)
143
144         if (err == 0) then -- SASL_OK
145                 if self.require_provisioning and not self.require_provisioning(self.username) then
146                         return "failure", "not-authorized", "User authenticated successfully, but not provisioned for XMPP";
147                 end
148                 return "success", data
149         elseif (err == 1) then -- SASL_CONTINUE
150                 return "challenge", data
151         elseif (err == -4) then -- SASL_NOMECH
152                 log("debug", "SASL mechanism not available from remote end")
153                 return "failure", "invalid-mechanism", "SASL mechanism not available"
154         elseif (err == -13) then -- SASL_BADAUTH
155                 return "failure", "not-authorized", sasl_errstring[err];
156         else
157                 log("debug", "Got SASL error condition %d: %s", err, sasl_errstring[err]);
158                 return "failure", "undefined-condition", sasl_errstring[err];
159         end
160 end
161
162 return _M;