2006-04-07 02:51:53 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : ejabberd_auth_anonymous.erl
|
|
|
|
%%% Author : Mickael Remond <mickael.remond@process-one.net>
|
|
|
|
%%% Purpose : Anonymous feature support in ejabberd
|
|
|
|
%%% Created : 17 Feb 2006 by Mickael Remond <mremond@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2017-01-02 21:41:53 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2017 ProcessOne
|
2007-12-24 12:41:41 +01:00
|
|
|
%%%
|
|
|
|
%%% 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.
|
2009-01-12 15:44:42 +01:00
|
|
|
%%%
|
2014-02-22 11:27:40 +01:00
|
|
|
%%% 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.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-12-24 12:41:41 +01:00
|
|
|
%%%
|
2006-04-07 02:51:53 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(ejabberd_auth_anonymous).
|
2015-06-01 14:38:27 +02:00
|
|
|
|
|
|
|
-behaviour(ejabberd_config).
|
2006-04-07 02:51:53 +02:00
|
|
|
-author('mickael.remond@process-one.net').
|
|
|
|
|
|
|
|
-export([start/1,
|
|
|
|
allow_anonymous/1,
|
|
|
|
is_sasl_anonymous_enabled/1,
|
|
|
|
is_login_anonymous_enabled/1,
|
|
|
|
anonymous_user_exist/2,
|
|
|
|
allow_multiple_connections/1,
|
2008-02-15 17:35:32 +01:00
|
|
|
register_connection/3,
|
|
|
|
unregister_connection/3
|
2006-04-07 02:51:53 +02:00
|
|
|
]).
|
|
|
|
|
2015-04-09 03:21:09 +02:00
|
|
|
-export([login/2, set_password/3, check_password/4,
|
|
|
|
check_password/6, try_register/3,
|
2013-03-14 10:33:02 +01:00
|
|
|
dirty_get_registered_users/0, get_vh_registered_users/1,
|
2015-06-01 14:38:27 +02:00
|
|
|
get_vh_registered_users/2,
|
|
|
|
get_vh_registered_users_number/1,
|
|
|
|
get_vh_registered_users_number/2, get_password_s/2,
|
2013-03-14 10:33:02 +01:00
|
|
|
get_password/2, get_password/3, is_user_exists/2,
|
|
|
|
remove_user/2, remove_user/3, store_type/0,
|
2015-06-01 14:38:27 +02:00
|
|
|
plain_password_required/0, opt_type/1]).
|
2006-04-07 02:51:53 +02:00
|
|
|
|
|
|
|
-include("ejabberd.hrl").
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("logger.hrl").
|
2016-07-26 10:29:17 +02:00
|
|
|
-include("jid.hrl").
|
2006-04-07 02:51:53 +02:00
|
|
|
|
|
|
|
start(Host) ->
|
|
|
|
ejabberd_hooks:add(sm_register_connection_hook, Host,
|
|
|
|
?MODULE, register_connection, 100),
|
|
|
|
ejabberd_hooks:add(sm_remove_connection_hook, Host,
|
|
|
|
?MODULE, unregister_connection, 100),
|
|
|
|
ok.
|
|
|
|
|
|
|
|
%% Return true if anonymous is allowed for host or false otherwise
|
|
|
|
allow_anonymous(Host) ->
|
2006-04-20 17:42:51 +02:00
|
|
|
lists:member(?MODULE, ejabberd_auth:auth_modules(Host)).
|
2006-04-07 02:51:53 +02:00
|
|
|
|
|
|
|
%% Return true if anonymous mode is enabled and if anonymous protocol is SASL
|
|
|
|
%% anonymous protocol can be: sasl_anon|login_anon|both
|
|
|
|
is_sasl_anonymous_enabled(Host) ->
|
|
|
|
case allow_anonymous(Host) of
|
2013-03-14 10:33:02 +01:00
|
|
|
false -> false;
|
|
|
|
true ->
|
|
|
|
case anonymous_protocol(Host) of
|
|
|
|
sasl_anon -> true;
|
|
|
|
both -> true;
|
|
|
|
_Other -> false
|
|
|
|
end
|
2006-04-07 02:51:53 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
%% Return true if anonymous login is enabled on the server
|
|
|
|
%% anonymous login can be use using standard authentication method (i.e. with
|
|
|
|
%% clients that do not support anonymous login)
|
|
|
|
is_login_anonymous_enabled(Host) ->
|
|
|
|
case allow_anonymous(Host) of
|
2013-03-14 10:33:02 +01:00
|
|
|
false -> false;
|
|
|
|
true ->
|
|
|
|
case anonymous_protocol(Host) of
|
|
|
|
login_anon -> true;
|
|
|
|
both -> true;
|
|
|
|
_Other -> false
|
|
|
|
end
|
2006-04-07 02:51:53 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
%% Return the anonymous protocol to use: sasl_anon|login_anon|both
|
|
|
|
%% defaults to login_anon
|
|
|
|
anonymous_protocol(Host) ->
|
2013-08-12 14:25:05 +02:00
|
|
|
ejabberd_config:get_option(
|
2013-03-14 10:33:02 +01:00
|
|
|
{anonymous_protocol, Host},
|
|
|
|
fun(sasl_anon) -> sasl_anon;
|
|
|
|
(login_anon) -> login_anon;
|
|
|
|
(both) -> both
|
|
|
|
end,
|
|
|
|
sasl_anon).
|
2006-04-07 02:51:53 +02:00
|
|
|
|
|
|
|
%% Return true if multiple connections have been allowed in the config file
|
|
|
|
%% defaults to false
|
|
|
|
allow_multiple_connections(Host) ->
|
2013-08-12 14:25:05 +02:00
|
|
|
ejabberd_config:get_option(
|
2013-03-14 10:33:02 +01:00
|
|
|
{allow_multiple_connections, Host},
|
|
|
|
fun(V) when is_boolean(V) -> V end,
|
|
|
|
false).
|
2006-04-07 02:51:53 +02:00
|
|
|
|
|
|
|
anonymous_user_exist(User, Server) ->
|
2017-01-13 10:03:39 +01:00
|
|
|
lists:any(
|
|
|
|
fun({_LResource, Info}) ->
|
|
|
|
proplists:get_value(auth_module, Info) == ?MODULE
|
|
|
|
end, ejabberd_sm:get_user_info(User, Server)).
|
2006-04-07 02:51:53 +02:00
|
|
|
|
|
|
|
%% Register connection
|
2016-08-09 09:56:32 +02:00
|
|
|
-spec register_connection(ejabberd_sm:sid(), jid(), ejabberd_sm:info()) -> ok.
|
2017-01-13 10:03:39 +01:00
|
|
|
register_connection(_SID,
|
2013-03-14 10:33:02 +01:00
|
|
|
#jid{luser = LUser, lserver = LServer}, Info) ->
|
2017-01-13 10:03:39 +01:00
|
|
|
case proplists:get_value(auth_module, Info) of
|
|
|
|
?MODULE ->
|
|
|
|
ejabberd_hooks:run(register_user, LServer, [LUser, LServer]);
|
2017-01-23 11:51:05 +01:00
|
|
|
_ ->
|
2017-01-13 10:03:39 +01:00
|
|
|
ok
|
2008-04-22 19:41:30 +02:00
|
|
|
end.
|
2006-04-07 02:51:53 +02:00
|
|
|
|
|
|
|
%% Remove an anonymous user from the anonymous users table
|
2016-08-09 09:56:32 +02:00
|
|
|
-spec unregister_connection(ejabberd_sm:sid(), jid(), ejabberd_sm:info()) -> any().
|
2017-01-13 10:03:39 +01:00
|
|
|
unregister_connection(_SID,
|
|
|
|
#jid{luser = LUser, lserver = LServer}, Info) ->
|
|
|
|
case proplists:get_value(auth_module, Info) of
|
|
|
|
?MODULE ->
|
|
|
|
ejabberd_hooks:run(remove_user, LServer, [LUser, LServer]);
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end.
|
2007-06-28 19:39:53 +02:00
|
|
|
|
2006-04-07 02:51:53 +02:00
|
|
|
%% ---------------------------------
|
|
|
|
%% Specific anonymous auth functions
|
|
|
|
%% ---------------------------------
|
|
|
|
|
|
|
|
%% When anonymous login is enabled, check the password for permenant users
|
|
|
|
%% before allowing access
|
2015-04-09 03:21:09 +02:00
|
|
|
check_password(User, AuthzId, Server, Password) ->
|
|
|
|
check_password(User, AuthzId, Server, Password, undefined,
|
2013-03-14 10:33:02 +01:00
|
|
|
undefined).
|
|
|
|
|
2015-04-09 03:21:09 +02:00
|
|
|
check_password(User, _AuthzId, Server, _Password, _Digest,
|
2013-03-14 10:33:02 +01:00
|
|
|
_DigestGen) ->
|
|
|
|
case
|
|
|
|
ejabberd_auth:is_user_exists_in_other_modules(?MODULE,
|
|
|
|
User, Server)
|
|
|
|
of
|
|
|
|
%% If user exists in other module, reject anonnymous authentication
|
|
|
|
true -> false;
|
|
|
|
%% If we are not sure whether the user exists in other module, reject anon auth
|
|
|
|
maybe -> false;
|
|
|
|
false -> login(User, Server)
|
2006-04-07 02:51:53 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
login(User, Server) ->
|
|
|
|
case is_login_anonymous_enabled(Server) of
|
2013-03-14 10:33:02 +01:00
|
|
|
false -> false;
|
|
|
|
true ->
|
|
|
|
case anonymous_user_exist(User, Server) of
|
|
|
|
%% Reject the login if an anonymous user with the same login
|
|
|
|
%% is already logged and if multiple login has not been enable
|
|
|
|
%% in the config file.
|
|
|
|
true -> allow_multiple_connections(Server);
|
|
|
|
%% Accept login and add user to the anonymous table
|
|
|
|
false -> true
|
|
|
|
end
|
2006-04-07 02:51:53 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
%% When anonymous login is enabled, check that the user is permanent before
|
|
|
|
%% changing its password
|
|
|
|
set_password(User, Server, _Password) ->
|
|
|
|
case anonymous_user_exist(User, Server) of
|
2013-03-14 10:33:02 +01:00
|
|
|
true -> ok;
|
|
|
|
false -> {error, not_allowed}
|
2006-04-07 02:51:53 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
%% When anonymous login is enabled, check if permanent users are allowed on
|
|
|
|
%% the server:
|
|
|
|
try_register(_User, _Server, _Password) ->
|
|
|
|
{error, not_allowed}.
|
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
dirty_get_registered_users() -> [].
|
2006-04-07 02:51:53 +02:00
|
|
|
|
2010-06-10 12:01:15 +02:00
|
|
|
get_vh_registered_users(Server) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
[{U, S}
|
|
|
|
|| {U, S, _R}
|
|
|
|
<- ejabberd_sm:get_vh_session_list(Server)].
|
2006-04-07 02:51:53 +02:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
get_vh_registered_users(Server, _) ->
|
|
|
|
get_vh_registered_users(Server).
|
|
|
|
|
|
|
|
get_vh_registered_users_number(Server) ->
|
|
|
|
length(get_vh_registered_users(Server)).
|
|
|
|
|
|
|
|
get_vh_registered_users_number(Server, _) ->
|
|
|
|
get_vh_registered_users_number(Server).
|
2006-04-07 02:51:53 +02:00
|
|
|
|
|
|
|
%% Return password of permanent user or false for anonymous users
|
|
|
|
get_password(User, Server) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
get_password(User, Server, <<"">>).
|
2006-04-07 02:51:53 +02:00
|
|
|
|
|
|
|
get_password(User, Server, DefaultValue) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
case anonymous_user_exist(User, Server) or
|
|
|
|
login(User, Server)
|
|
|
|
of
|
|
|
|
%% We return the default value if the user is anonymous
|
|
|
|
true -> DefaultValue;
|
|
|
|
%% We return the permanent user password otherwise
|
|
|
|
false -> false
|
|
|
|
end.
|
|
|
|
|
|
|
|
get_password_s(User, Server) ->
|
|
|
|
case get_password(User, Server) of
|
|
|
|
false ->
|
|
|
|
<<"">>;
|
|
|
|
Password ->
|
|
|
|
Password
|
2006-04-07 02:51:53 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
is_user_exists(User, Server) ->
|
|
|
|
anonymous_user_exist(User, Server).
|
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
remove_user(_User, _Server) -> {error, not_allowed}.
|
2006-04-07 02:51:53 +02:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
remove_user(_User, _Server, _Password) -> not_allowed.
|
2006-04-07 02:51:53 +02:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
plain_password_required() -> false.
|
2011-08-16 00:25:03 +02:00
|
|
|
|
2011-08-16 00:26:49 +02:00
|
|
|
store_type() ->
|
2011-08-16 00:25:03 +02:00
|
|
|
plain.
|
2015-06-01 14:38:27 +02:00
|
|
|
|
|
|
|
opt_type(allow_multiple_connections) ->
|
|
|
|
fun (V) when is_boolean(V) -> V end;
|
|
|
|
opt_type(anonymous_protocol) ->
|
|
|
|
fun (sasl_anon) -> sasl_anon;
|
|
|
|
(login_anon) -> login_anon;
|
|
|
|
(both) -> both
|
|
|
|
end;
|
|
|
|
opt_type(_) ->
|
|
|
|
[allow_multiple_connections, anonymous_protocol].
|