2003-03-09 21:46:47 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : cyrsasl.erl
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2003-03-09 21:46:47 +01:00
|
|
|
%%% Purpose : Cyrus SASL-like library
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Created : 8 Mar 2003 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2009-01-12 15:44:42 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2009 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
|
|
|
|
%%%
|
2003-03-09 21:46:47 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(cyrsasl).
|
2007-12-24 12:41:41 +01:00
|
|
|
-author('alexey@process-one.net').
|
2003-03-09 21:46:47 +01:00
|
|
|
|
|
|
|
-export([start/0,
|
2005-07-13 05:24:13 +02:00
|
|
|
register_mechanism/3,
|
|
|
|
listmech/1,
|
2009-04-22 13:44:03 +02:00
|
|
|
server_new/7,
|
2003-03-09 21:46:47 +01:00
|
|
|
server_start/3,
|
|
|
|
server_step/2]).
|
|
|
|
|
2005-07-13 05:24:13 +02:00
|
|
|
-record(sasl_mechanism, {mechanism, module, require_plain_password}).
|
2005-04-17 20:08:34 +02:00
|
|
|
-record(sasl_state, {service, myname, realm,
|
2009-04-22 13:44:03 +02:00
|
|
|
get_password, check_password, check_password_digest,
|
2005-04-17 20:08:34 +02:00
|
|
|
mech_mod, mech_state}).
|
2003-03-09 21:46:47 +01:00
|
|
|
|
|
|
|
-export([behaviour_info/1]).
|
|
|
|
|
|
|
|
behaviour_info(callbacks) ->
|
2009-04-22 13:44:03 +02:00
|
|
|
[{mech_new, 4}, {mech_step, 2}];
|
2007-12-07 00:15:04 +01:00
|
|
|
behaviour_info(_Other) ->
|
2003-03-09 21:46:47 +01:00
|
|
|
undefined.
|
|
|
|
|
|
|
|
start() ->
|
|
|
|
ets:new(sasl_mechanism, [named_table,
|
|
|
|
public,
|
|
|
|
{keypos, #sasl_mechanism.mechanism}]),
|
|
|
|
cyrsasl_plain:start([]),
|
2003-03-12 20:48:05 +01:00
|
|
|
cyrsasl_digest:start([]),
|
2006-04-07 02:39:24 +02:00
|
|
|
cyrsasl_anonymous:start([]),
|
2003-03-09 21:46:47 +01:00
|
|
|
ok.
|
|
|
|
|
2005-07-13 05:24:13 +02:00
|
|
|
register_mechanism(Mechanism, Module, RequirePlainPassword) ->
|
|
|
|
ets:insert(sasl_mechanism,
|
|
|
|
#sasl_mechanism{mechanism = Mechanism,
|
|
|
|
module = Module,
|
|
|
|
require_plain_password = RequirePlainPassword}).
|
2003-03-09 21:46:47 +01:00
|
|
|
|
2007-12-07 00:15:04 +01:00
|
|
|
%%% TODO: use callbacks
|
|
|
|
%%-include("ejabberd.hrl").
|
|
|
|
%%-include("jlib.hrl").
|
|
|
|
%%check_authzid(_State, Props) ->
|
|
|
|
%% AuthzId = xml:get_attr_s(authzid, Props),
|
|
|
|
%% case jlib:string_to_jid(AuthzId) of
|
|
|
|
%% error ->
|
|
|
|
%% {error, "invalid-authzid"};
|
|
|
|
%% JID ->
|
|
|
|
%% LUser = jlib:nodeprep(xml:get_attr_s(username, Props)),
|
|
|
|
%% {U, S, R} = jlib:jid_tolower(JID),
|
|
|
|
%% case R of
|
|
|
|
%% "" ->
|
|
|
|
%% {error, "invalid-authzid"};
|
|
|
|
%% _ ->
|
|
|
|
%% case {LUser, ?MYNAME} of
|
|
|
|
%% {U, S} ->
|
|
|
|
%% ok;
|
|
|
|
%% _ ->
|
|
|
|
%% {error, "invalid-authzid"}
|
|
|
|
%% end
|
|
|
|
%% end
|
|
|
|
%% end.
|
2003-06-07 19:30:25 +02:00
|
|
|
|
2007-12-07 00:15:04 +01:00
|
|
|
check_credentials(_State, Props) ->
|
2003-11-07 21:51:23 +01:00
|
|
|
User = xml:get_attr_s(username, Props),
|
|
|
|
case jlib:nodeprep(User) of
|
|
|
|
error ->
|
|
|
|
{error, "not-authorized"};
|
|
|
|
"" ->
|
|
|
|
{error, "not-authorized"};
|
2007-12-07 00:15:04 +01:00
|
|
|
_LUser ->
|
2003-11-07 21:51:23 +01:00
|
|
|
ok
|
|
|
|
end.
|
|
|
|
|
2005-07-13 05:24:13 +02:00
|
|
|
listmech(Host) ->
|
|
|
|
RequirePlainPassword = ejabberd_auth:plain_password_required(Host),
|
2007-12-07 00:15:04 +01:00
|
|
|
|
2006-04-07 02:39:24 +02:00
|
|
|
Mechs = ets:select(sasl_mechanism,
|
|
|
|
[{#sasl_mechanism{mechanism = '$1',
|
|
|
|
require_plain_password = '$2',
|
|
|
|
_ = '_'},
|
|
|
|
if
|
|
|
|
RequirePlainPassword ->
|
|
|
|
[{'==', '$2', false}];
|
|
|
|
true ->
|
|
|
|
[]
|
|
|
|
end,
|
|
|
|
['$1']}]),
|
|
|
|
filter_anonymous(Host, Mechs).
|
2003-03-09 21:46:47 +01:00
|
|
|
|
2007-12-07 00:15:04 +01:00
|
|
|
server_new(Service, ServerFQDN, UserRealm, _SecFlags,
|
2009-04-22 13:44:03 +02:00
|
|
|
GetPassword, CheckPassword, CheckPasswordDigest) ->
|
2003-03-09 21:46:47 +01:00
|
|
|
#sasl_state{service = Service,
|
|
|
|
myname = ServerFQDN,
|
2005-04-17 20:08:34 +02:00
|
|
|
realm = UserRealm,
|
|
|
|
get_password = GetPassword,
|
2009-04-22 13:44:03 +02:00
|
|
|
check_password = CheckPassword,
|
|
|
|
check_password_digest= CheckPasswordDigest}.
|
2003-03-09 21:46:47 +01:00
|
|
|
|
|
|
|
server_start(State, Mech, ClientIn) ->
|
2006-04-27 23:24:30 +02:00
|
|
|
case lists:member(Mech, listmech(State#sasl_state.myname)) of
|
|
|
|
true ->
|
|
|
|
case ets:lookup(sasl_mechanism, Mech) of
|
|
|
|
[#sasl_mechanism{module = Module}] ->
|
|
|
|
{ok, MechState} = Module:mech_new(
|
|
|
|
State#sasl_state.myname,
|
|
|
|
State#sasl_state.get_password,
|
2009-04-22 13:44:03 +02:00
|
|
|
State#sasl_state.check_password,
|
|
|
|
State#sasl_state.check_password_digest),
|
2006-04-27 23:24:30 +02:00
|
|
|
server_step(State#sasl_state{mech_mod = Module,
|
|
|
|
mech_state = MechState},
|
|
|
|
ClientIn);
|
|
|
|
_ ->
|
|
|
|
{error, "no-mechanism"}
|
|
|
|
end;
|
|
|
|
false ->
|
2003-06-07 19:30:25 +02:00
|
|
|
{error, "no-mechanism"}
|
2003-03-09 21:46:47 +01:00
|
|
|
end.
|
|
|
|
|
|
|
|
server_step(State, ClientIn) ->
|
|
|
|
Module = State#sasl_state.mech_mod,
|
|
|
|
MechState = State#sasl_state.mech_state,
|
|
|
|
case Module:mech_step(MechState, ClientIn) of
|
|
|
|
{ok, Props} ->
|
2003-11-07 21:51:23 +01:00
|
|
|
case check_credentials(State, Props) of
|
2003-06-07 19:30:25 +02:00
|
|
|
ok ->
|
|
|
|
{ok, Props};
|
|
|
|
{error, Error} ->
|
|
|
|
{error, Error}
|
|
|
|
end;
|
2003-03-09 21:46:47 +01:00
|
|
|
{continue, ServerOut, NewMechState} ->
|
|
|
|
{continue, ServerOut,
|
|
|
|
State#sasl_state{mech_state = NewMechState}};
|
2007-02-20 00:35:42 +01:00
|
|
|
{error, Error, Username} ->
|
|
|
|
{error, Error, Username};
|
2003-06-07 19:30:25 +02:00
|
|
|
{error, Error} ->
|
|
|
|
{error, Error}
|
2003-03-09 21:46:47 +01:00
|
|
|
end.
|
|
|
|
|
2006-04-07 02:39:24 +02:00
|
|
|
%% Remove the anonymous mechanism from the list if not enabled for the given
|
|
|
|
%% host
|
|
|
|
filter_anonymous(Host, Mechs) ->
|
|
|
|
case ejabberd_auth_anonymous:is_sasl_anonymous_enabled(Host) of
|
|
|
|
true -> Mechs;
|
2006-04-27 23:24:30 +02:00
|
|
|
false -> Mechs -- ["ANONYMOUS"]
|
2006-04-07 02:39:24 +02:00
|
|
|
end.
|