Software /
code /
prosody-modules
Changeset
1165:b8762c9fb270
mod_auth_pam: Initial commit of simple PAM authentication module
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 15 Aug 2013 18:38:02 +0200 |
parents | 1164:b6280e8886f4 |
children | 1166:2b62a3b76d76 |
files | mod_auth_pam/mod_auth_pam.lua |
diffstat | 1 files changed, 37 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_auth_pam/mod_auth_pam.lua Thu Aug 15 18:38:02 2013 +0200 @@ -0,0 +1,37 @@ +-- PAM authentication for Prosody +-- Copyright (C) 2013 Kim Alvefur +-- +-- Requires https://github.com/devurandom/lua-pam +-- and LuaPosix + +local posix = require "posix"; +local pam = require "pam"; +local new_sasl = require "util.sasl".new; + +function user_exists(username) + return not not posix.getpasswd(username); +end + +function test_password(username, password) + local h, err = pam.start("xmpp", username, { + function (t) + if #t == 1 and t[1][1] == pam.PAM_PROMPT_ECHO_OFF then + return { { password, 0} }; + end + end + }); + if h and h:authenticate() and h:endx(pam.PAM_SUCCESS) then + return true, true; + end + return nil, true; +end + +function get_sasl_handler() + return new_sasl(module.host, { + plain_test = function(sasl, ...) + return test_password(...) + end + }); +end + +module:provides"auth";