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
|
|
|
%%%
|
|
|
|
%%%
|
2010-01-12 17:15:16 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2010 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-19 15:47:33 +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).
|
|
|
|
|
2009-01-23 11:10:33 +01:00
|
|
|
%% @type mechstate() = {state, Server}
|
|
|
|
%% Server = string().
|
|
|
|
|
2006-04-07 02:51:53 +02:00
|
|
|
-record(state, {server}).
|
|
|
|
|
2009-01-23 11:10:33 +01:00
|
|
|
%% @spec (Opts) -> true
|
|
|
|
%% Opts = term()
|
|
|
|
|
2006-04-07 02:51:53 +02:00
|
|
|
start(_Opts) ->
|
|
|
|
cyrsasl:register_mechanism("ANONYMOUS", ?MODULE, false),
|
|
|
|
ok.
|
|
|
|
|
2009-01-23 11:10:33 +01:00
|
|
|
%% @spec () -> ok
|
|
|
|
|
2006-04-07 02:51:53 +02:00
|
|
|
stop() ->
|
|
|
|
ok.
|
|
|
|
|
2009-04-22 13:44:03 +02:00
|
|
|
%% @spec (Host, GetPassword, CheckPassword, CheckPasswordDigest) -> {ok, State}
|
2009-01-23 11:10:33 +01:00
|
|
|
%% Host = string()
|
|
|
|
%% GetPassword = function()
|
|
|
|
%% CheckPassword = function()
|
|
|
|
%% State = mechstate()
|
|
|
|
|
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}}.
|
|
|
|
|
2009-01-23 11:10:33 +01:00
|
|
|
%% @spec (State, ClientIn) -> Ok | Error
|
|
|
|
%% State = mechstate()
|
|
|
|
%% ClientIn = string()
|
|
|
|
%% Ok = {ok, Props}
|
|
|
|
%% Props = [Prop]
|
|
|
|
%% Prop = {username, Username} | {auth_module, AuthModule}
|
|
|
|
%% Username = string()
|
|
|
|
%% AuthModule = ejabberd_auth_anonymous
|
|
|
|
%% Error = {error, 'not-authorized'}
|
|
|
|
|
2006-04-07 02:51:53 +02:00
|
|
|
mech_step(State, _ClientIn) ->
|
|
|
|
%% We generate a random username:
|
|
|
|
User = lists:concat([randoms:get_string() | tuple_to_list(now())]),
|
|
|
|
Server = State#state.server,
|
|
|
|
|
|
|
|
%% Checks that the username is available
|
|
|
|
case ejabberd_auth:is_user_exists(User, Server) of
|
2008-07-08 17:43:52 +02:00
|
|
|
true -> {error, 'not-authorized'};
|
2008-04-22 19:41:30 +02:00
|
|
|
false -> {ok, [{username, User},
|
|
|
|
{auth_module, ejabberd_auth_anonymous}]}
|
2006-04-07 02:51:53 +02:00
|
|
|
end.
|