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
|
|
|
%%%
|
|
|
|
%%%
|
2016-01-13 12:29:14 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2016 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(cyrsasl_anonymous).
|
|
|
|
|
2015-06-22 13:11:11 +02:00
|
|
|
-protocol({xep, 175, '1.2'}).
|
|
|
|
|
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}}.
|
|
|
|
|
2015-12-04 15:08:43 +01:00
|
|
|
mech_step(#state{server = Server} = S, ClientIn) ->
|
|
|
|
User = iolist_to_binary([randoms:get_string(),
|
|
|
|
randoms:get_string(),
|
|
|
|
randoms:get_string()]),
|
2006-04-07 02:51:53 +02:00
|
|
|
case ejabberd_auth:is_user_exists(User, Server) of
|
2015-12-04 15:08:43 +01:00
|
|
|
true -> mech_step(S, ClientIn);
|
2013-03-14 10:33:02 +01:00
|
|
|
false -> {ok, [{username, User}, {auth_module, ejabberd_auth_anonymous}]}
|
2006-04-07 02:51:53 +02:00
|
|
|
end.
|