util.sasl_cyrus: If available, use a c14n callback for interoperability with bad...
[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 local array = require "util.array";
17
18 local tostring = tostring;
19 local pairs, ipairs = pairs, ipairs;
20 local t_insert, t_concat = table.insert, table.concat;
21 local s_match = string.match;
22 local setmetatable = setmetatable
23
24 local keys = keys;
25
26 local print = print
27 local pcall = pcall
28 local s_match, s_gmatch = string.match, string.gmatch
29
30 module "sasl_cyrus"
31
32 local method = {};
33 method.__index = method;
34 local initialized = false;
35
36 local function init(service_name)
37         if not initialized then
38                 local st, errmsg = pcall(cyrussasl.server_init, service_name);
39                 if st then
40                         initialized = true;
41                 else
42                         log("error", "Failed to initialize CyrusSASL: %s", errmsg);
43                 end
44         end
45 end
46
47 -- create a new SASL object which can be used to authenticate clients
48 function new(realm, service_name)
49         local sasl_i = {};
50
51         init(service_name);
52
53         sasl_i.realm = realm;
54         sasl_i.service_name = service_name;
55         sasl_i.cyrus = cyrussasl.server_new(service_name, nil, realm, nil, nil)
56
57         if cyrussasl.set_canon_cb then
58                 local c14n_cb = function (user)
59                         local node = s_match(user, "^([^@]+)");
60                         log("debug", "Canonicalizing username %s to %s", user, node)
61                         return node
62                 end
63                 cyrussasl.set_canon_cb(sasl_i.cyrus, c14n_cb);
64         end
65
66         if sasl_i.cyrus == 0 then
67                 log("error", "got NULL return value from server_new")
68                 return nil;
69         end
70         cyrussasl.setssf(sasl_i.cyrus, 0, 0xffffffff)
71         local s = setmetatable(sasl_i, method);
72         return s;
73 end
74
75 -- get a fresh clone with the same realm, profiles and forbidden mechanisms
76 function method:clean_clone()
77         return new(self.realm, self.service_name)
78 end
79
80 -- set the forbidden mechanisms
81 function method:forbidden( restrict )
82         log("debug", "Called method:forbidden. NOT IMPLEMENTED.")
83         return {}
84 end
85
86 -- get a list of possible SASL mechanims to use
87 function method:mechanisms()
88         local mechanisms = {}
89         local cyrus_mechs = cyrussasl.listmech(self.cyrus, nil, "", " ", "")
90         for w in s_gmatch(cyrus_mechs, "[^ ]+") do
91                 mechanisms[w] = true;
92         end
93         self.mechs = mechanisms
94         return array.collect(keys(mechanisms));
95 end
96
97 -- select a mechanism to use
98 function method:select(mechanism)
99         self.mechanism = mechanism;
100         if not self.mechs then self:mechanisms(); end
101         return self.mechs[mechanism];
102 end
103
104 -- feed new messages to process into the library
105 function method:process(message)
106         local err;
107         local data;
108
109         if self.mechanism then
110                 err, data = cyrussasl.server_start(self.cyrus, self.mechanism, message or "")
111         else
112                 err, data = cyrussasl.server_step(self.cyrus, message or "")
113         end
114
115         self.username = cyrussasl.get_username(self.cyrus)
116
117         if (err == 0) then -- SASL_OK
118            return "success", data
119         elseif (err == 1) then -- SASL_CONTINUE
120            return "challenge", data
121         elseif (err == -4) then -- SASL_NOMECH
122            log("debug", "SASL mechanism not available from remote end")
123            return "failure", 
124              "undefined-condition",
125              "SASL mechanism not available"
126         elseif (err == -13) then -- SASL_BADAUTH
127            return "failure", "not-authorized", cyrussasl.get_message( self.cyrus )
128         else
129            log("debug", "Got SASL error condition %d", err)
130            return "failure", 
131              "undefined-condition",
132              cyrussasl.get_message( self.cyrus )
133         end
134 end
135
136 return _M;