mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
362 lines
11 KiB
Erlang
362 lines
11 KiB
Erlang
%%%----------------------------------------------------------------------
|
|
%%% File : ejabberd_auth_external.erl
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
|
%%% Purpose : Authentification via LDAP external script
|
|
%%% Created : 12 Dec 2004 by Alexey Shchepin <alexey@process-one.net>
|
|
%%%
|
|
%%%
|
|
%%% ejabberd, Copyright (C) 2002-2010 ProcessOne
|
|
%%%
|
|
%%% This program is free software; you can redistribute it and/or
|
|
%%% modify it under the terms of the GNU General Public License as
|
|
%%% published by the Free Software Foundation; either version 2 of the
|
|
%%% License, or (at your option) any later version.
|
|
%%%
|
|
%%% This program is distributed in the hope that it will be useful,
|
|
%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
%%% General Public License for more details.
|
|
%%%
|
|
%%% You should have received a copy of the GNU General Public License
|
|
%%% along with this program; if not, write to the Free Software
|
|
%%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
%%% 02111-1307 USA
|
|
%%%
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-module(ejabberd_auth_external).
|
|
-author('alexey@process-one.net').
|
|
|
|
%% External exports
|
|
-export([start/1,
|
|
set_password/3,
|
|
check_password/3,
|
|
check_password/5,
|
|
try_register/3,
|
|
dirty_get_registered_users/0,
|
|
get_vh_registered_users/1,
|
|
get_vh_registered_users/2,
|
|
get_vh_registered_users_number/1,
|
|
get_vh_registered_users_number/2,
|
|
get_password/2,
|
|
get_password_s/2,
|
|
is_user_exists/2,
|
|
remove_user/2,
|
|
remove_user/3,
|
|
plain_password_required/0
|
|
]).
|
|
|
|
-include("ejabberd.hrl").
|
|
|
|
%%%----------------------------------------------------------------------
|
|
%%% API
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%% @spec (Host) -> ok
|
|
%% Host = string()
|
|
|
|
start(Host) ->
|
|
extauth:start(
|
|
Host, ejabberd_config:get_local_option({extauth_program, Host})),
|
|
case check_cache_last_options(Host) of
|
|
cache ->
|
|
ok = ejabberd_auth_storage:start(Host);
|
|
no_cache ->
|
|
ok
|
|
end.
|
|
|
|
check_cache_last_options(Server) ->
|
|
%% if extauth_cache is enabled, then a mod_last module must also be enabled
|
|
case get_cache_option(Server) of
|
|
false -> no_cache;
|
|
{true, _CacheTime} ->
|
|
case get_mod_last_enabled(Server) of
|
|
no_mod_last ->
|
|
?ERROR_MSG("In host ~p extauth is used, extauth_cache is enabled but "
|
|
"mod_last is not enabled.", [Server]),
|
|
no_cache;
|
|
_ -> cache
|
|
end
|
|
end.
|
|
|
|
%% @spec () -> bool()
|
|
|
|
plain_password_required() ->
|
|
true.
|
|
|
|
%% @spec (User, Server, Password) -> bool()
|
|
%% User = string()
|
|
%% Server = string()
|
|
%% Password = string()
|
|
|
|
check_password(User, Server, Password) ->
|
|
case get_cache_option(Server) of
|
|
false -> check_password_extauth(User, Server, Password);
|
|
{true, CacheTime} -> check_password_cache(User, Server, Password, CacheTime)
|
|
end.
|
|
|
|
%% @spec (User, Server, Password, Digest, DigestGen) -> bool()
|
|
%% User = string()
|
|
%% Server = string()
|
|
%% Password = string()
|
|
%% Digest = string()
|
|
%% DigestGen = function()
|
|
|
|
check_password(User, Server, Password, _Digest, _DigestGen) ->
|
|
check_password(User, Server, Password).
|
|
|
|
%% @spec (User, Server, Password) -> ok | {error, unknown_problem}
|
|
%% User = string()
|
|
%% Server = string()
|
|
%% Password = string()
|
|
|
|
set_password(User, Server, Password) ->
|
|
case extauth:set_password(User, Server, Password) of
|
|
true -> set_password_storage(User, Server, Password),
|
|
ok;
|
|
_ -> {error, unknown_problem}
|
|
end.
|
|
|
|
%% @spec (User, Server, Password) -> {error, not_allowed}
|
|
%% User = string()
|
|
%% Server = string()
|
|
%% Password = string()
|
|
|
|
try_register(User, Server, Password) ->
|
|
case get_cache_option(Server) of
|
|
false -> try_register_extauth(User, Server, Password);
|
|
{true, _CacheTime} -> try_register_external_cache(User, Server, Password)
|
|
end.
|
|
|
|
%% @spec () -> nil()
|
|
%% @todo Write it.
|
|
%% @doc Return the list of all users handled by external.
|
|
|
|
dirty_get_registered_users() ->
|
|
ejabberd_auth_storage:dirty_get_registered_users().
|
|
|
|
get_vh_registered_users(Server) ->
|
|
ejabberd_auth_storage:get_vh_registered_users(Server).
|
|
|
|
get_vh_registered_users(Server, Data) ->
|
|
ejabberd_auth_storage:get_vh_registered_users(Server, Data).
|
|
|
|
%% @spec (Server) -> nil()
|
|
%% Server = string()
|
|
|
|
get_vh_registered_users_number(Server) ->
|
|
ejabberd_auth_storage:get_vh_registered_users_number(Server).
|
|
|
|
get_vh_registered_users_number(Server, Data) ->
|
|
ejabberd_auth_storage:get_vh_registered_users_number(Server, Data).
|
|
|
|
%% @spec (User, Server) -> bool()
|
|
%% User = string()
|
|
%% Server = string()
|
|
%% @doc Get the user cached password, if possible.
|
|
%% The password can only be returned if cache is enabled, cached info exists and is fresh enough.
|
|
|
|
get_password(User, Server) ->
|
|
case get_cache_option(Server) of
|
|
false -> false;
|
|
{true, CacheTime} -> get_password_cache(User, Server, CacheTime)
|
|
end.
|
|
|
|
%% @spec (User, Server) -> nil()
|
|
%% User = string()
|
|
%% Server = string()
|
|
|
|
get_password_s(User, Server) ->
|
|
case get_password(User, Server) of
|
|
false -> [];
|
|
Other -> Other
|
|
end.
|
|
|
|
%% @spec (User, Server) -> true | false | {error, Error}
|
|
%% User = string()
|
|
%% Server = string()
|
|
|
|
is_user_exists(User, Server) ->
|
|
try extauth:is_user_exists(User, Server) of
|
|
Res -> Res
|
|
catch
|
|
_:Error -> {error, Error}
|
|
end.
|
|
|
|
%% @spec (User, Server) -> {error, not_allowed}
|
|
%% User = string()
|
|
%% Server = string()
|
|
|
|
remove_user(User, Server) ->
|
|
case extauth:remove_user(User, Server) of
|
|
false -> false;
|
|
true ->
|
|
case get_cache_option(Server) of
|
|
false -> false;
|
|
{true, _CacheTime} ->
|
|
ejabberd_auth_storage:remove_user(User, Server)
|
|
end
|
|
end.
|
|
|
|
%% @spec (User, Server, Password) -> not_allowed
|
|
%% User = string()
|
|
%% Server = string()
|
|
%% Password = string()
|
|
|
|
remove_user(User, Server, Password) ->
|
|
case extauth:remove_user(User, Server, Password) of
|
|
false -> false;
|
|
true ->
|
|
case get_cache_option(Server) of
|
|
false -> false;
|
|
{true, _CacheTime} ->
|
|
ejabberd_auth_storage:remove_user(User, Server, Password)
|
|
end
|
|
end.
|
|
|
|
%%%
|
|
%%% Extauth cache management
|
|
%%%
|
|
|
|
%% @spec (Host::string()) -> false | {true, CacheTime::integer()}
|
|
get_cache_option(Host) ->
|
|
case ejabberd_config:get_local_option({extauth_cache, Host}) of
|
|
CacheTime when is_integer(CacheTime) -> {true, CacheTime};
|
|
_ -> false
|
|
end.
|
|
|
|
%% @spec (User, Server, Password) -> true | false
|
|
check_password_extauth(User, Server, Password) ->
|
|
extauth:check_password(User, Server, Password) andalso Password /= "".
|
|
|
|
%% @spec (User, Server, Password) -> true | false
|
|
try_register_extauth(User, Server, Password) ->
|
|
extauth:try_register(User, Server, Password).
|
|
|
|
check_password_cache(User, Server, Password, CacheTime) ->
|
|
case get_last_access(User, Server) of
|
|
online ->
|
|
check_password_storage(User, Server, Password);
|
|
never ->
|
|
check_password_external_cache(User, Server, Password);
|
|
mod_last_required ->
|
|
?ERROR_MSG("extauth is used, extauth_cache is enabled but mod_last is not enabled in that host", []),
|
|
check_password_external_cache(User, Server, Password);
|
|
TimeStamp ->
|
|
%% If last access exists, compare last access with cache refresh time
|
|
case is_fresh_enough(TimeStamp, CacheTime) of
|
|
%% If no need to refresh, check password against Mnesia
|
|
true ->
|
|
case check_password_storage(User, Server, Password) of
|
|
%% If password valid in Mnesia, accept it
|
|
true ->
|
|
true;
|
|
%% Else (password nonvalid in Mnesia), check in extauth and cache result
|
|
false ->
|
|
check_password_external_cache(User, Server, Password)
|
|
end;
|
|
%% Else (need to refresh), check in extauth and cache result
|
|
false ->
|
|
check_password_external_cache(User, Server, Password)
|
|
end
|
|
end.
|
|
|
|
get_password_storage(User, Server) ->
|
|
ejabberd_auth_storage:get_password(User, Server).
|
|
|
|
%% @spec (User, Server, CacheTime) -> Password::string() | false
|
|
get_password_cache(User, Server, CacheTime) ->
|
|
case get_last_access(User, Server) of
|
|
online ->
|
|
get_password_storage(User, Server);
|
|
never ->
|
|
false;
|
|
mod_last_required ->
|
|
?ERROR_MSG("extauth is used, extauth_cache is enabled but mod_last is not enabled in that host", []),
|
|
false;
|
|
TimeStamp ->
|
|
case is_fresh_enough(TimeStamp, CacheTime) of
|
|
true ->
|
|
get_password_storage(User, Server);
|
|
false ->
|
|
false
|
|
end
|
|
end.
|
|
|
|
|
|
%% Check the password using extauth; if success then cache it
|
|
check_password_external_cache(User, Server, Password) ->
|
|
case check_password_extauth(User, Server, Password) of
|
|
true ->
|
|
set_password_storage(User, Server, Password), true;
|
|
false ->
|
|
false
|
|
end.
|
|
|
|
%% Try to register using extauth; if success then cache it
|
|
try_register_external_cache(User, Server, Password) ->
|
|
case try_register_extauth(User, Server, Password) of
|
|
{atomic, ok} = R ->
|
|
set_password_storage(User, Server, Password),
|
|
R;
|
|
_ -> {error, not_allowed}
|
|
end.
|
|
|
|
%% @spec (User, Server, Password) -> true | false
|
|
check_password_storage(User, Server, Password) ->
|
|
ejabberd_auth_storage:check_password(User, Server, Password).
|
|
|
|
%% @spec (User, Server, Password) -> ok | {error, invalid_jid}
|
|
set_password_storage(User, Server, Password) ->
|
|
ejabberd_auth_storage:set_password(User, Server, Password).
|
|
|
|
%% @spec (TimeLast, CacheTime) -> true | false
|
|
%% TimeLast = online | never | integer()
|
|
%% CacheTime = integer() | false
|
|
is_fresh_enough(online, _CacheTime) ->
|
|
true;
|
|
is_fresh_enough(never, _CacheTime) ->
|
|
false;
|
|
is_fresh_enough(TimeStampLast, CacheTime) ->
|
|
{MegaSecs, Secs, _MicroSecs} = now(),
|
|
Now = MegaSecs * 1000000 + Secs,
|
|
(TimeStampLast + CacheTime > Now).
|
|
|
|
%% @spec (User, Server) -> TimeStamp::integer() | online | never | mod_last_required
|
|
get_last_access(UserS, ServerS) ->
|
|
%% Code copied from mod_configure.erl
|
|
%% Code copied from web/ejabberd_web_admin.erl
|
|
%% TODO: Update time format to XEP-0202: Entity Time
|
|
User = list_to_binary(UserS),
|
|
Server = list_to_binary(ServerS),
|
|
case ejabberd_sm:get_user_resources(User, Server) of
|
|
[] ->
|
|
_US = {User, Server},
|
|
case get_last_info(User, Server) of
|
|
mod_last_required ->
|
|
mod_last_required;
|
|
not_found ->
|
|
never;
|
|
{ok, Timestamp, _Status} ->
|
|
Timestamp
|
|
end;
|
|
_ ->
|
|
online
|
|
end.
|
|
%% @spec (User, Server) -> {ok, Timestamp, Status} | not_found | mod_last_required
|
|
get_last_info(User, Server) ->
|
|
case get_mod_last_enabled(Server) of
|
|
mod_last -> mod_last:get_last_info(User, Server);
|
|
no_mod_last -> mod_last_required
|
|
end.
|
|
|
|
%% @spec (Server) -> mod_last | no_mod_last
|
|
get_mod_last_enabled(ServerB) when is_binary(ServerB)->
|
|
Server = binary_to_list(ServerB),
|
|
get_mod_last_enabled(Server);
|
|
get_mod_last_enabled(Server) ->
|
|
case lists:member(mod_last, gen_mod:loaded_modules(Server)) of
|
|
true -> mod_last;
|
|
false -> no_mod_last
|
|
end.
|