2003-01-18 20:42:48 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : acl.erl
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2003-01-29 21:21:14 +01:00
|
|
|
%%% Purpose : ACL support
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Created : 18 Jan 2003 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2014-03-13 12:29:21 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2014 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-01-18 20:42:48 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(acl).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2007-12-24 12:41:41 +01:00
|
|
|
-author('alexey@process-one.net').
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
-export([start/0, to_record/3, add/3, add_list/3,
|
2013-08-12 14:25:05 +02:00
|
|
|
add_local/3, add_list_local/3, load_from_config/0,
|
|
|
|
match_rule/3, match_acl/3, transform_options/1]).
|
2003-01-18 20:42:48 +01:00
|
|
|
|
|
|
|
-include("ejabberd.hrl").
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("logger.hrl").
|
2013-03-14 10:33:02 +01:00
|
|
|
-include("jlib.hrl").
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2003-01-29 18:12:23 +01:00
|
|
|
-record(acl, {aclname, aclspec}).
|
2013-12-10 08:40:43 +01:00
|
|
|
-record(access, {name :: aclname(),
|
2013-08-12 14:25:05 +02:00
|
|
|
rules = [] :: [access_rule()]}).
|
2003-01-29 18:12:23 +01:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
-type regexp() :: binary().
|
|
|
|
-type glob() :: binary().
|
2013-08-12 14:25:05 +02:00
|
|
|
-type access_name() :: atom().
|
|
|
|
-type access_rule() :: {atom(), any()}.
|
|
|
|
-type host() :: binary().
|
2013-03-14 10:33:02 +01:00
|
|
|
-type aclname() :: {atom(), binary() | global}.
|
|
|
|
-type aclspec() :: all | none |
|
2013-08-12 14:25:05 +02:00
|
|
|
{user, {binary(), host()} | binary()} |
|
2013-03-14 10:33:02 +01:00
|
|
|
{server, binary()} |
|
|
|
|
{resource, binary()} |
|
2013-08-12 14:25:05 +02:00
|
|
|
{user_regexp, {regexp(), host()} | regexp()} |
|
|
|
|
{shared_group, {binary(), host()} | binary()} |
|
|
|
|
{user_regexp, {regexp(), host()} | regexp()} |
|
2013-03-14 10:33:02 +01:00
|
|
|
{server_regexp, regexp()} |
|
|
|
|
{resource_regexp, regexp()} |
|
2013-08-12 14:25:05 +02:00
|
|
|
{node_regexp, {regexp(), regexp()}} |
|
|
|
|
{user_glob, {glob(), host()} | glob()} |
|
2013-03-14 10:33:02 +01:00
|
|
|
{server_glob, glob()} |
|
|
|
|
{resource_glob, glob()} |
|
2013-08-12 14:25:05 +02:00
|
|
|
{ip, {inet:ip_address(), integer()}} |
|
|
|
|
{node_glob, {glob(), glob()}}.
|
2013-03-14 10:33:02 +01:00
|
|
|
|
|
|
|
-type acl() :: #acl{aclname :: aclname(),
|
|
|
|
aclspec :: aclspec()}.
|
|
|
|
|
|
|
|
-export_type([acl/0]).
|
|
|
|
|
2003-01-18 20:42:48 +01:00
|
|
|
start() ->
|
2013-08-12 14:25:05 +02:00
|
|
|
case catch mnesia:table_info(acl, storage_type) of
|
|
|
|
disc_copies ->
|
|
|
|
mnesia:delete_table(acl);
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end,
|
2003-01-29 18:12:23 +01:00
|
|
|
mnesia:create_table(acl,
|
2013-08-12 14:25:05 +02:00
|
|
|
[{ram_copies, [node()]}, {type, bag},
|
2013-07-27 14:45:39 +02:00
|
|
|
{local_content, true},
|
2003-01-29 18:12:23 +01:00
|
|
|
{attributes, record_info(fields, acl)}]),
|
2013-08-12 14:25:05 +02:00
|
|
|
mnesia:create_table(access,
|
|
|
|
[{ram_copies, [node()]},
|
|
|
|
{local_content, true},
|
|
|
|
{attributes, record_info(fields, access)}]),
|
2003-01-29 18:12:23 +01:00
|
|
|
mnesia:add_table_copy(acl, node(), ram_copies),
|
2013-08-12 14:25:05 +02:00
|
|
|
mnesia:add_table_copy(access, node(), ram_copies),
|
|
|
|
load_from_config(),
|
2003-01-21 21:36:55 +01:00
|
|
|
ok.
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
-spec to_record(binary(), atom(), aclspec()) -> acl().
|
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
to_record(Host, ACLName, ACLSpec) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
#acl{aclname = {ACLName, Host},
|
|
|
|
aclspec = normalize_spec(ACLSpec)}.
|
|
|
|
|
2013-07-27 14:45:39 +02:00
|
|
|
-spec add(binary(), aclname(), aclspec()) -> ok | {error, any()}.
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
add(Host, ACLName, ACLSpec) ->
|
2013-08-12 14:25:05 +02:00
|
|
|
{ResL, BadNodes} = rpc:multicall(mnesia:system_info(running_db_nodes),
|
2013-07-27 14:45:39 +02:00
|
|
|
?MODULE, add_local,
|
|
|
|
[Host, ACLName, ACLSpec]),
|
|
|
|
case lists:keyfind(aborted, 1, ResL) of
|
|
|
|
false when BadNodes == [] ->
|
|
|
|
ok;
|
|
|
|
false ->
|
|
|
|
{error, {failed_nodes, BadNodes}};
|
|
|
|
Err ->
|
|
|
|
{error, Err}
|
|
|
|
end.
|
|
|
|
|
|
|
|
add_local(Host, ACLName, ACLSpec) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
F = fun () ->
|
2005-06-20 05:18:13 +02:00
|
|
|
mnesia:write(#acl{aclname = {ACLName, Host},
|
2008-02-12 02:04:47 +01:00
|
|
|
aclspec = normalize_spec(ACLSpec)})
|
2003-01-29 18:12:23 +01:00
|
|
|
end,
|
2013-07-27 14:45:39 +02:00
|
|
|
case mnesia:transaction(F) of
|
|
|
|
{atomic, ok} ->
|
|
|
|
ok;
|
|
|
|
Err ->
|
|
|
|
Err
|
|
|
|
end.
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2013-07-27 14:45:39 +02:00
|
|
|
-spec add_list(binary(), [acl()], boolean()) -> ok | {error, any()}.
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
add_list(Host, ACLs, Clear) ->
|
2013-08-12 14:25:05 +02:00
|
|
|
{ResL, BadNodes} = rpc:multicall(mnesia:system_info(running_db_nodes),
|
2013-07-27 14:45:39 +02:00
|
|
|
?MODULE, add_list_local,
|
|
|
|
[Host, ACLs, Clear]),
|
|
|
|
case lists:keyfind(aborted, 1, ResL) of
|
|
|
|
false when BadNodes == [] ->
|
|
|
|
ok;
|
|
|
|
false ->
|
|
|
|
{error, {failed_nodes, BadNodes}};
|
|
|
|
Err ->
|
|
|
|
{error, Err}
|
|
|
|
end.
|
|
|
|
|
|
|
|
add_list_local(Host, ACLs, Clear) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
F = fun () ->
|
|
|
|
if Clear ->
|
|
|
|
Ks = mnesia:select(acl,
|
|
|
|
[{{acl, {'$1', Host}, '$2'}, [],
|
|
|
|
['$1']}]),
|
|
|
|
lists:foreach(fun (K) -> mnesia:delete({acl, {K, Host}})
|
|
|
|
end,
|
|
|
|
Ks);
|
|
|
|
true -> ok
|
2003-02-01 21:21:28 +01:00
|
|
|
end,
|
2013-03-14 10:33:02 +01:00
|
|
|
lists:foreach(fun (ACL) ->
|
2003-02-01 21:21:28 +01:00
|
|
|
case ACL of
|
2013-03-14 10:33:02 +01:00
|
|
|
#acl{aclname = ACLName,
|
|
|
|
aclspec = ACLSpec} ->
|
|
|
|
mnesia:write(#acl{aclname =
|
|
|
|
{ACLName,
|
|
|
|
Host},
|
|
|
|
aclspec =
|
|
|
|
normalize_spec(ACLSpec)})
|
2003-02-01 21:21:28 +01:00
|
|
|
end
|
2013-03-14 10:33:02 +01:00
|
|
|
end,
|
|
|
|
ACLs)
|
2003-02-01 21:21:28 +01:00
|
|
|
end,
|
2013-07-27 14:45:39 +02:00
|
|
|
mnesia:transaction(F).
|
2003-02-01 21:21:28 +01:00
|
|
|
|
2013-08-12 14:25:05 +02:00
|
|
|
-spec add_access(binary() | global,
|
|
|
|
access_name(), [access_rule()]) -> ok | {error, any()}.
|
|
|
|
|
|
|
|
add_access(Host, Access, Rules) ->
|
|
|
|
case mnesia:transaction(
|
|
|
|
fun() ->
|
|
|
|
mnesia:write(
|
|
|
|
#access{name = {Access, Host},
|
|
|
|
rules = Rules})
|
|
|
|
end) of
|
|
|
|
{atomic, ok} ->
|
|
|
|
ok;
|
|
|
|
Err ->
|
|
|
|
{error, Err}
|
|
|
|
end.
|
|
|
|
|
|
|
|
-spec load_from_config() -> ok.
|
|
|
|
|
|
|
|
load_from_config() ->
|
|
|
|
Hosts = [global|?MYHOSTS],
|
|
|
|
lists:foreach(
|
|
|
|
fun(Host) ->
|
|
|
|
ACLs = ejabberd_config:get_option(
|
|
|
|
{acl, Host}, fun(V) -> V end, []),
|
|
|
|
AccessRules = ejabberd_config:get_option(
|
|
|
|
{access, Host}, fun(V) -> V end, []),
|
|
|
|
lists:foreach(
|
|
|
|
fun({ACLName, SpecList}) ->
|
|
|
|
lists:foreach(
|
|
|
|
fun({ACLType, ACLSpecs}) when is_list(ACLSpecs) ->
|
|
|
|
lists:foreach(
|
|
|
|
fun(ACLSpec) ->
|
|
|
|
add(Host, ACLName,
|
|
|
|
{ACLType, ACLSpec})
|
|
|
|
end, lists:flatten(ACLSpecs));
|
|
|
|
({ACLType, ACLSpecs}) ->
|
|
|
|
add(Host, ACLName, {ACLType, ACLSpecs})
|
|
|
|
end, lists:flatten(SpecList))
|
|
|
|
end, ACLs),
|
|
|
|
lists:foreach(
|
|
|
|
fun({Access, Rules}) ->
|
|
|
|
add_access(Host, Access, Rules)
|
|
|
|
end, AccessRules)
|
|
|
|
end, Hosts).
|
|
|
|
|
|
|
|
b(S) ->
|
|
|
|
iolist_to_binary(S).
|
|
|
|
|
|
|
|
nodeprep(S) ->
|
|
|
|
jlib:nodeprep(b(S)).
|
|
|
|
|
|
|
|
nameprep(S) ->
|
|
|
|
jlib:nameprep(b(S)).
|
|
|
|
|
|
|
|
resourceprep(S) ->
|
|
|
|
jlib:resourceprep(b(S)).
|
|
|
|
|
|
|
|
normalize_spec(Spec) ->
|
|
|
|
case Spec of
|
|
|
|
all -> all;
|
|
|
|
none -> none;
|
|
|
|
{user, {U, S}} -> {user, {nodeprep(U), nameprep(S)}};
|
|
|
|
{user, U} -> {user, nodeprep(U)};
|
|
|
|
{shared_group, {G, H}} -> {shared_group, {b(G), nameprep(H)}};
|
|
|
|
{shared_group, G} -> {shared_group, b(G)};
|
|
|
|
{user_regexp, {UR, S}} -> {user_regexp, {b(UR), nameprep(S)}};
|
|
|
|
{user_regexp, UR} -> {user_regexp, b(UR)};
|
|
|
|
{node_regexp, {UR, SR}} -> {node_regexp, {b(UR), b(SR)}};
|
|
|
|
{user_glob, {UR, S}} -> {user_glob, {b(UR), nameprep(S)}};
|
|
|
|
{user_glob, UR} -> {user_glob, b(UR)};
|
|
|
|
{node_glob, {UR, SR}} -> {node_glob, {b(UR), b(SR)}};
|
|
|
|
{server, S} -> {server, nameprep(S)};
|
|
|
|
{resource, R} -> {resource, resourceprep(R)};
|
|
|
|
{server_regexp, SR} -> {server_regexp, b(SR)};
|
|
|
|
{server_glob, S} -> {server_glob, b(S)};
|
|
|
|
{resource_glob, R} -> {resource_glob, b(R)};
|
2014-03-24 19:40:55 +01:00
|
|
|
{ip, {Net, Mask}} ->
|
|
|
|
{ip, {Net, Mask}};
|
2013-08-12 14:25:05 +02:00
|
|
|
{ip, S} ->
|
|
|
|
case parse_ip_netmask(b(S)) of
|
|
|
|
{ok, Net, Mask} ->
|
|
|
|
{ip, {Net, Mask}};
|
|
|
|
error ->
|
|
|
|
?INFO_MSG("Invalid network address: ~p", [S]),
|
|
|
|
none
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
|
|
|
-spec match_rule(global | binary(), access_name(),
|
|
|
|
jid() | ljid() | inet:ip_address()) -> any().
|
|
|
|
|
|
|
|
match_rule(_Host, all, _JID) ->
|
|
|
|
allow;
|
|
|
|
match_rule(_Host, none, _JID) ->
|
|
|
|
deny;
|
|
|
|
match_rule(Host, Access, JID) ->
|
|
|
|
GAccess = ets:lookup(access, {Access, global}),
|
|
|
|
LAccess = if Host /= global ->
|
|
|
|
ets:lookup(access, {Access, Host});
|
|
|
|
true ->
|
|
|
|
[]
|
|
|
|
end,
|
|
|
|
case GAccess ++ LAccess of
|
|
|
|
[] ->
|
|
|
|
deny;
|
|
|
|
AccessList ->
|
|
|
|
Rules = lists:flatmap(
|
|
|
|
fun(#access{rules = Rs}) ->
|
|
|
|
Rs
|
|
|
|
end, AccessList),
|
|
|
|
match_acls(Rules, JID, Host)
|
2003-01-19 21:17:56 +01:00
|
|
|
end.
|
2003-01-18 20:42:48 +01:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
match_acls([], _, _Host) -> deny;
|
2013-08-12 14:25:05 +02:00
|
|
|
match_acls([{ACL, Access} | ACLs], JID, Host) ->
|
2005-06-20 05:18:13 +02:00
|
|
|
case match_acl(ACL, JID, Host) of
|
2013-03-14 10:33:02 +01:00
|
|
|
true -> Access;
|
|
|
|
_ -> match_acls(ACLs, JID, Host)
|
2003-01-18 20:42:48 +01:00
|
|
|
end.
|
|
|
|
|
2013-08-12 14:25:05 +02:00
|
|
|
-spec match_acl(atom(),
|
|
|
|
jid() | ljid() | inet:ip_address(),
|
|
|
|
binary()) -> boolean().
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2013-08-12 14:25:05 +02:00
|
|
|
match_acl(all, _JID, _Host) ->
|
|
|
|
true;
|
|
|
|
match_acl(none, _JID, _Host) ->
|
|
|
|
false;
|
|
|
|
match_acl(ACL, IP, Host) when tuple_size(IP) == 4;
|
|
|
|
tuple_size(IP) == 8 ->
|
|
|
|
lists:any(
|
|
|
|
fun(#acl{aclspec = {ip, {Net, Mask}}}) ->
|
|
|
|
is_ip_match(IP, Net, Mask);
|
|
|
|
(_) ->
|
|
|
|
false
|
|
|
|
end,
|
|
|
|
ets:lookup(acl, {ACL, Host}) ++
|
|
|
|
ets:lookup(acl, {ACL, global}));
|
2005-06-20 05:18:13 +02:00
|
|
|
match_acl(ACL, JID, Host) ->
|
2013-08-12 14:25:05 +02:00
|
|
|
{User, Server, Resource} = jlib:jid_tolower(JID),
|
|
|
|
lists:any(
|
|
|
|
fun(#acl{aclspec = Spec}) ->
|
|
|
|
case Spec of
|
|
|
|
all -> true;
|
|
|
|
{user, {U, S}} -> U == User andalso S == Server;
|
|
|
|
{user, U} ->
|
|
|
|
U == User andalso
|
|
|
|
lists:member(Server, ?MYHOSTS);
|
|
|
|
{server, S} -> S == Server;
|
|
|
|
{resource, R} -> R == Resource;
|
|
|
|
{shared_group, {G, H}} ->
|
|
|
|
Mod = loaded_shared_roster_module(H),
|
|
|
|
Mod:is_user_in_group({User, Server}, G, H);
|
|
|
|
{shared_group, G} ->
|
|
|
|
Mod = loaded_shared_roster_module(Host),
|
|
|
|
Mod:is_user_in_group({User, Server}, G, Host);
|
|
|
|
{user_regexp, {UR, S}} ->
|
|
|
|
S == Server andalso is_regexp_match(User, UR);
|
|
|
|
{user_regexp, UR} ->
|
|
|
|
lists:member(Server, ?MYHOSTS)
|
|
|
|
andalso is_regexp_match(User, UR);
|
|
|
|
{server_regexp, SR} ->
|
|
|
|
is_regexp_match(Server, SR);
|
|
|
|
{resource_regexp, RR} ->
|
|
|
|
is_regexp_match(Resource, RR);
|
|
|
|
{node_regexp, {UR, SR}} ->
|
|
|
|
is_regexp_match(Server, SR) andalso
|
|
|
|
is_regexp_match(User, UR);
|
|
|
|
{user_glob, {UR, S}} ->
|
|
|
|
S == Server andalso is_glob_match(User, UR);
|
|
|
|
{user_glob, UR} ->
|
|
|
|
lists:member(Server, ?MYHOSTS)
|
|
|
|
andalso is_glob_match(User, UR);
|
|
|
|
{server_glob, SR} -> is_glob_match(Server, SR);
|
|
|
|
{resource_glob, RR} ->
|
|
|
|
is_glob_match(Resource, RR);
|
|
|
|
{node_glob, {UR, SR}} ->
|
|
|
|
is_glob_match(Server, SR) andalso
|
|
|
|
is_glob_match(User, UR);
|
|
|
|
WrongSpec ->
|
|
|
|
?ERROR_MSG("Wrong ACL expression: ~p~nCheck your "
|
|
|
|
"config file and reload it with the override_a"
|
|
|
|
"cls option enabled",
|
|
|
|
[WrongSpec]),
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
ets:lookup(acl, {ACL, Host}) ++
|
|
|
|
ets:lookup(acl, {ACL, global})).
|
2003-01-29 21:21:14 +01:00
|
|
|
|
|
|
|
is_regexp_match(String, RegExp) ->
|
2011-11-22 23:11:21 +01:00
|
|
|
case ejabberd_regexp:run(String, RegExp) of
|
2013-03-14 10:33:02 +01:00
|
|
|
nomatch -> false;
|
|
|
|
match -> true;
|
|
|
|
{error, ErrDesc} ->
|
|
|
|
?ERROR_MSG("Wrong regexp ~p in ACL: ~p",
|
|
|
|
[RegExp, ErrDesc]),
|
|
|
|
false
|
2003-01-29 21:21:14 +01:00
|
|
|
end.
|
|
|
|
|
|
|
|
is_glob_match(String, Glob) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
is_regexp_match(String,
|
|
|
|
ejabberd_regexp:sh_to_awk(Glob)).
|
2003-01-29 21:21:14 +01:00
|
|
|
|
2013-08-12 14:25:05 +02:00
|
|
|
is_ip_match({_, _, _, _} = IP, {_, _, _, _} = Net, Mask) ->
|
|
|
|
IPInt = ip_to_integer(IP),
|
|
|
|
NetInt = ip_to_integer(Net),
|
|
|
|
M = bnot (1 bsl (32 - Mask) - 1),
|
|
|
|
IPInt band M =:= NetInt band M;
|
|
|
|
is_ip_match({_, _, _, _, _, _, _, _} = IP,
|
|
|
|
{_, _, _, _, _, _, _, _} = Net, Mask) ->
|
|
|
|
IPInt = ip_to_integer(IP),
|
|
|
|
NetInt = ip_to_integer(Net),
|
|
|
|
M = bnot (1 bsl (128 - Mask) - 1),
|
|
|
|
IPInt band M =:= NetInt band M;
|
|
|
|
is_ip_match(_, _, _) ->
|
|
|
|
false.
|
|
|
|
|
|
|
|
ip_to_integer({IP1, IP2, IP3, IP4}) ->
|
|
|
|
IP1 bsl 8 bor IP2 bsl 8 bor IP3 bsl 8 bor IP4;
|
|
|
|
ip_to_integer({IP1, IP2, IP3, IP4, IP5, IP6, IP7,
|
|
|
|
IP8}) ->
|
|
|
|
IP1 bsl 16 bor IP2 bsl 16 bor IP3 bsl 16 bor IP4 bsl 16
|
|
|
|
bor IP5
|
|
|
|
bsl 16
|
|
|
|
bor IP6
|
|
|
|
bsl 16
|
|
|
|
bor IP7
|
|
|
|
bsl 16
|
|
|
|
bor IP8.
|
|
|
|
|
2012-04-04 12:37:43 +02:00
|
|
|
loaded_shared_roster_module(Host) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
case gen_mod:is_loaded(Host, mod_shared_roster_ldap) of
|
2013-03-14 10:33:02 +01:00
|
|
|
true -> mod_shared_roster_ldap;
|
|
|
|
false -> mod_shared_roster
|
|
|
|
end.
|
|
|
|
|
2013-08-12 14:25:05 +02:00
|
|
|
parse_ip_netmask(S) ->
|
|
|
|
case str:tokens(S, <<"/">>) of
|
|
|
|
[IPStr] ->
|
|
|
|
case inet_parse:address(binary_to_list(IPStr)) of
|
|
|
|
{ok, {_, _, _, _} = IP} -> {ok, IP, 32};
|
|
|
|
{ok, {_, _, _, _, _, _, _, _} = IP} -> {ok, IP, 128};
|
|
|
|
_ -> error
|
|
|
|
end;
|
|
|
|
[IPStr, MaskStr] ->
|
|
|
|
case catch jlib:binary_to_integer(MaskStr) of
|
|
|
|
Mask when is_integer(Mask), Mask >= 0 ->
|
|
|
|
case inet_parse:address(binary_to_list(IPStr)) of
|
|
|
|
{ok, {_, _, _, _} = IP} when Mask =< 32 ->
|
|
|
|
{ok, IP, Mask};
|
|
|
|
{ok, {_, _, _, _, _, _, _, _} = IP} when Mask =< 128 ->
|
|
|
|
{ok, IP, Mask};
|
|
|
|
_ -> error
|
|
|
|
end;
|
|
|
|
_ -> error
|
|
|
|
end;
|
|
|
|
_ -> error
|
2012-04-04 12:37:43 +02:00
|
|
|
end.
|
2013-08-12 14:25:05 +02:00
|
|
|
|
|
|
|
transform_options(Opts) ->
|
|
|
|
Opts1 = lists:foldl(fun transform_options/2, [], Opts),
|
|
|
|
{ACLOpts, Opts2} = lists:mapfoldl(
|
|
|
|
fun({acl, Os}, Acc) ->
|
|
|
|
{Os, Acc};
|
|
|
|
(O, Acc) ->
|
|
|
|
{[], [O|Acc]}
|
|
|
|
end, [], Opts1),
|
|
|
|
{AccessOpts, Opts3} = lists:mapfoldl(
|
|
|
|
fun({access, Os}, Acc) ->
|
|
|
|
{Os, Acc};
|
|
|
|
(O, Acc) ->
|
|
|
|
{[], [O|Acc]}
|
|
|
|
end, [], Opts2),
|
|
|
|
ACLOpts1 = ejabberd_config:collect_options(lists:flatten(ACLOpts)),
|
|
|
|
AccessOpts1 = case ejabberd_config:collect_options(
|
|
|
|
lists:flatten(AccessOpts)) of
|
|
|
|
[] -> [];
|
|
|
|
L1 -> [{access, L1}]
|
|
|
|
end,
|
|
|
|
ACLOpts2 = case lists:map(
|
|
|
|
fun({ACLName, Os}) ->
|
|
|
|
{ACLName, ejabberd_config:collect_options(Os)}
|
|
|
|
end, ACLOpts1) of
|
|
|
|
[] -> [];
|
|
|
|
L2 -> [{acl, L2}]
|
|
|
|
end,
|
|
|
|
ACLOpts2 ++ AccessOpts1 ++ Opts3.
|
|
|
|
|
|
|
|
transform_options({acl, Name, Type}, Opts) ->
|
|
|
|
T = case Type of
|
|
|
|
all -> all;
|
|
|
|
none -> none;
|
2013-11-06 17:43:24 +01:00
|
|
|
{user, U} -> {user, [b(U)]};
|
|
|
|
{user, U, S} -> {user, [[{b(U), b(S)}]]};
|
|
|
|
{shared_group, G} -> {shared_group, [b(G)]};
|
|
|
|
{shared_group, G, H} -> {shared_group, [[{b(G), b(H)}]]};
|
|
|
|
{user_regexp, UR} -> {user_regexp, [b(UR)]};
|
|
|
|
{user_regexp, UR, S} -> {user_regexp, [[{b(UR), b(S)}]]};
|
|
|
|
{node_regexp, UR, SR} -> {node_regexp, [[{b(UR), b(SR)}]]};
|
|
|
|
{user_glob, UR} -> {user_glob, [b(UR)]};
|
|
|
|
{user_glob, UR, S} -> {user_glob, [[{b(UR), b(S)}]]};
|
|
|
|
{node_glob, UR, SR} -> {node_glob, [[{b(UR), b(SR)}]]};
|
|
|
|
{server, S} -> {server, [b(S)]};
|
|
|
|
{resource, R} -> {resource, [b(R)]};
|
|
|
|
{server_regexp, SR} -> {server_regexp, [b(SR)]};
|
|
|
|
{server_glob, S} -> {server_glob, [b(S)]};
|
|
|
|
{ip, S} -> {ip, [b(S)]};
|
|
|
|
{resource_glob, R} -> {resource_glob, [b(R)]}
|
2013-08-12 14:25:05 +02:00
|
|
|
end,
|
|
|
|
[{acl, [{Name, [T]}]}|Opts];
|
|
|
|
transform_options({access, Name, Rules}, Opts) ->
|
|
|
|
NewRules = [{ACL, Action} || {Action, ACL} <- Rules],
|
|
|
|
[{access, [{Name, NewRules}]}|Opts];
|
|
|
|
transform_options(Opt, Opts) ->
|
|
|
|
[Opt|Opts].
|