2006-04-07 02:51:53 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : cyrsasl_anonymous.erl
|
|
|
|
%%% Author : Magnus Henoch <henoch@dtek.chalmers.se>
|
|
|
|
%%% Purpose : ANONYMOUS SASL mechanism
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% See http://www.ietf.org/internet-drafts/draft-ietf-sasl-anon-05.txt
|
2006-04-07 02:51:53 +02:00
|
|
|
%%% Created : 23 Aug 2005 by Magnus Henoch <henoch@dtek.chalmers.se>
|
2007-12-24 12:41:41 +01:00
|
|
|
%%%
|
|
|
|
%%%
|
2013-01-24 15:25:13 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2013 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
|
|
|
%%%
|
2007-12-24 12:41:41 +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., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
%%% 02111-1307 USA
|
|
|
|
%%%
|
2006-04-07 02:51:53 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(cyrsasl_anonymous).
|
|
|
|
|
2009-04-22 13:44:03 +02:00
|
|
|
-export([start/1, stop/0, mech_new/4, mech_step/2]).
|
2006-04-07 02:51:53 +02:00
|
|
|
|
|
|
|
-behaviour(cyrsasl).
|
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
-record(state, {server = <<"">> :: binary()}).
|
2006-04-07 02:51:53 +02:00
|
|
|
|
|
|
|
start(_Opts) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
cyrsasl:register_mechanism(<<"ANONYMOUS">>, ?MODULE, plain),
|
2006-04-07 02:51:53 +02:00
|
|
|
ok.
|
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
stop() -> ok.
|
2006-04-07 02:51:53 +02:00
|
|
|
|
2009-04-22 13:44:03 +02:00
|
|
|
mech_new(Host, _GetPassword, _CheckPassword, _CheckPasswordDigest) ->
|
2006-04-07 02:51:53 +02:00
|
|
|
{ok, #state{server = Host}}.
|
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
mech_step(#state{server = Server}, _ClientIn) ->
|
2013-04-19 21:30:13 +02:00
|
|
|
User = iolist_to_binary([randoms:get_string()
|
|
|
|
| [jlib:integer_to_binary(X)
|
|
|
|
|| X <- tuple_to_list(now())]]),
|
2006-04-07 02:51:53 +02:00
|
|
|
case ejabberd_auth:is_user_exists(User, Server) of
|
2013-03-14 10:33:02 +01:00
|
|
|
true -> {error, <<"not-authorized">>};
|
|
|
|
false -> {ok, [{username, User}, {auth_module, ejabberd_auth_anonymous}]}
|
2006-04-07 02:51:53 +02:00
|
|
|
end.
|