Enable restriction of supported mechanisms in the SASL library.
authorTobias Markmann <tm@ayena.de>
Wed, 18 Nov 2009 21:56:50 +0000 (22:56 +0100)
committerTobias Markmann <tm@ayena.de>
Wed, 18 Nov 2009 21:56:50 +0000 (22:56 +0100)
util/sasl.lua

index 82fc1226de9392df5f4e220c54ab79f2d2935391..9df74c1be8e243665d3745cef380ddb801ce6be0 100644 (file)
@@ -16,6 +16,8 @@ local md5 = require "util.hashes".md5;
 local log = require "util.logger".init("sasl");
 local tostring = tostring;
 local st = require "util.stanza";
+local set = require "util.set";
+local array = require "util.array";
 local pairs, ipairs = pairs, ipairs;
 local t_insert, t_concat = table.insert, table.concat;
 local to_unicode = require "util.encodings".idna.to_unicode;
@@ -84,20 +86,34 @@ local function registerMechanism(name, backends, f)
 end
 
 -- create a new SASL object which can be used to authenticate clients
-function new(realm, profile)
+function new(realm, profile, forbidden)
        sasl_i = {profile = profile};
        sasl_i.realm = realm;
-       return setmetatable(sasl_i, method);
+       s = setmetatable(sasl_i, method);
+       s:forbidden(sasl_i, forbidden)
+       return s;
+end
+
+-- set the forbidden mechanisms
+function method:forbidden( forbidden )
+       if forbidden then
+               -- set forbidden
+               self.forbidden = set.new(forbidden);
+       else
+               -- get forbidden
+               return array.collect(self.forbidden:items());
+       end
 end
 
 -- get a list of possible SASL mechanims to use
 function method:mechanisms()
        local mechanisms = {}
        for backend, f in pairs(self.profile) do
-               print(backend)
                if backend_mechanism[backend] then
                        for _, mechanism in ipairs(backend_mechanism[backend]) do
-                               mechanisms[mechanism] = true;
+                               if not sasl_i.forbidden:contains(mechanism) then
+                                       mechanisms[mechanism] = true;
+                               end
                        end
                end
        end