Mercurial > prosody-modules
diff mod_auth_dovecot/auth_dovecot/mod_auth_dovecot.lua @ 474:942738953ff3
mod_auth_dovecot: Replace with SASL proxying version.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 10 Nov 2011 11:24:31 +0100 |
parents | |
children | 0c130c45b7c1 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_auth_dovecot/auth_dovecot/mod_auth_dovecot.lua Thu Nov 10 11:24:31 2011 +0100 @@ -0,0 +1,98 @@ +-- Dovecot authentication backend for Prosody +-- +-- Copyright (C) 2010-2011 Waqas Hussain +-- Copyright (C) 2011 Kim Alvefur +-- + +local name = "Dovecot SASL"; +local log = require "util.logger".init("auth_dovecot"); + +local socket_path = module:get_option_string("dovecot_auth_socket", "/var/run/dovecot/auth-login"); +local socket_host = module:get_option_string("dovecot_auth_host", "127.0.0.1"); +local socket_port = module:get_option_string("dovecot_auth_port"); + +local service_realm = module:get_option("realm"); +local service_name = module:get_option("service_name"); +local append_host = module:get_option_boolean("auth_append_host"); +local validate_domain = module:get_option_boolean("validate_append_host"); +local handle_appended = module:get_option_string("handle_appended"); +local util_sasl_new = require "util.sasl".new; + +local new_dovecot_sasl = module:require "sasl_dovecot".new; + +local new_sasl = function(realm) + return new_dovecot_sasl( + service_realm or realm, + service_name or "xmpp", + + socket_port and { socket_path, socket_port } or socket_path, + + { --config + handle_domain = handle_appended or + (append_host and "split" or "escape"), + validate_domain = validate_domain, + } + ); +end + +do + local s = new_sasl(module.host) + assert(s, "Could not create a new SASL object"); + assert(s.mechanisms, "SASL object has no mechanims method"); + local m, _m = {}, s:mechanisms(); + assert(not append_host or _m.PLAIN, "auth_append_host requires PLAIN, but it is unavailable"); + for k in pairs(_m) do + table.insert(m, k); + end + log("debug", "Mechanims found: %s", table.concat(m, ", ")); +end + +provider = { + name = module.name:gsub("^auth_",""); +}; + +function provider.test_password(username, password) + return new_sasl(module.host):plain_test(username, password); +end + +if append_host then + new_sasl = function(realm) + return util_sasl_new(realm, { + plain_test = function(sasl, username, password, realm) + local prepped_username = nodeprep(username); + if not prepped_username then + log("debug", "NODEprep failed on username: %s", username); + return "", nil; + end + prepped_username = prepped_username .. "@" .. module.host; + return provider.test_password(prepped_username, password), true; + end, + }); + end +end + +function provider.get_password(username) + return nil, "Passwords unavailable for "..name; +end + +function provider.set_password(username, password) + return nil, "Passwords unavailable for "..name; +end + +function provider.user_exists(username) + local user_test = new_sasl(module.host); + user_test:select("PLAIN"); + user_test:process(("\0%s\0"):format(username)); + return user_test.username == username; +end + +function provider.create_user(username, password) + return nil, "Account creation/modification not available with "..name; +end + +function provider.get_sasl_handler() + return new_sasl(module.host); +end + +module:add_item("auth-provider", provider); +