mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-04 16:40:36 +01:00
434 lines
13 KiB
Erlang
434 lines
13 KiB
Erlang
%%%----------------------------------------------------------------------
|
|
%%% File : mod_caps.erl
|
|
%%% Author : Magnus Henoch <henoch@dtek.chalmers.se>
|
|
%%% Purpose : Request and cache Entity Capabilities (XEP-0115)
|
|
%%% Created : 7 Oct 2006 by Magnus Henoch <henoch@dtek.chalmers.se>
|
|
%%%
|
|
%%%
|
|
%%% ejabberd, Copyright (C) 2002-2010 ProcessOne
|
|
%%%
|
|
%%% 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.
|
|
%%%
|
|
%%% 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
|
|
%%%
|
|
%%% 2009, improvements from ProcessOne to support correct PEP handling
|
|
%%% through s2s, use less memory, and speedup global caps handling
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-module(mod_caps).
|
|
-author('henoch@dtek.chalmers.se').
|
|
|
|
-behaviour(gen_server).
|
|
-behaviour(gen_mod).
|
|
|
|
-export([read_caps/1,
|
|
caps_stream_features/2,
|
|
disco_features/5,
|
|
disco_identity/5,
|
|
disco_info/5,
|
|
get_features/1]).
|
|
|
|
%% gen_mod callbacks
|
|
-export([start/2, start_link/2,
|
|
stop/1]).
|
|
|
|
%% gen_server callbacks
|
|
-export([init/1,
|
|
handle_info/2,
|
|
handle_call/3,
|
|
handle_cast/2,
|
|
terminate/2,
|
|
code_change/3
|
|
]).
|
|
|
|
%% hook handlers
|
|
-export([user_send_packet/3]).
|
|
|
|
-include("ejabberd.hrl").
|
|
-include("jlib.hrl").
|
|
|
|
-define(PROCNAME, ejabberd_mod_caps).
|
|
|
|
-record(caps, {node, version, hash, exts}).
|
|
-record(caps_features, {node_pair, features = []}).
|
|
|
|
-record(state, {host}).
|
|
|
|
%%====================================================================
|
|
%% API
|
|
%%====================================================================
|
|
start_link(Host, Opts) ->
|
|
Proc = gen_mod:get_module_proc(Host, ?PROCNAME),
|
|
gen_server:start_link({local, Proc}, ?MODULE, [Host, Opts], []).
|
|
|
|
start(Host, Opts) ->
|
|
Proc = gen_mod:get_module_proc(Host, ?PROCNAME),
|
|
ChildSpec =
|
|
{Proc,
|
|
{?MODULE, start_link, [Host, Opts]},
|
|
transient,
|
|
1000,
|
|
worker,
|
|
[?MODULE]},
|
|
supervisor:start_child(ejabberd_sup, ChildSpec).
|
|
|
|
stop(Host) ->
|
|
Proc = gen_mod:get_module_proc(Host, ?PROCNAME),
|
|
gen_server:call(Proc, stop),
|
|
supervisor:terminate_child(ejabberd_sup, Proc),
|
|
supervisor:delete_child(ejabberd_sup, Proc).
|
|
|
|
%% get_features returns a list of features implied by the given caps
|
|
%% record (as extracted by read_caps) or 'unknown' if features are
|
|
%% not completely collected at the moment.
|
|
get_features(nothing) ->
|
|
[];
|
|
get_features(#caps{node = Node, version = Version, exts = Exts}) ->
|
|
SubNodes = [Version | Exts],
|
|
lists:foldl(
|
|
fun(SubNode, Acc) ->
|
|
case mnesia:dirty_read({caps_features,
|
|
node_to_binary(Node, SubNode)}) of
|
|
[] ->
|
|
Acc;
|
|
[#caps_features{features = Features}] ->
|
|
binary_to_features(Features) ++ Acc
|
|
end
|
|
end, [], SubNodes).
|
|
|
|
%% read_caps takes a list of XML elements (the child elements of a
|
|
%% <presence/> stanza) and returns an opaque value representing the
|
|
%% Entity Capabilities contained therein, or the atom nothing if no
|
|
%% capabilities are advertised.
|
|
read_caps(Els) ->
|
|
read_caps(Els, nothing).
|
|
|
|
read_caps([{xmlelement, "c", Attrs, _Els} | Tail], Result) ->
|
|
case xml:get_attr_s("xmlns", Attrs) of
|
|
?NS_CAPS ->
|
|
Node = xml:get_attr_s("node", Attrs),
|
|
Version = xml:get_attr_s("ver", Attrs),
|
|
Hash = xml:get_attr_s("hash", Attrs),
|
|
Exts = string:tokens(xml:get_attr_s("ext", Attrs), " "),
|
|
read_caps(Tail, #caps{node = Node, hash = Hash,
|
|
version = Version, exts = Exts});
|
|
_ ->
|
|
read_caps(Tail, Result)
|
|
end;
|
|
read_caps([{xmlelement, "x", Attrs, _Els} | Tail], Result) ->
|
|
case xml:get_attr_s("xmlns", Attrs) of
|
|
?NS_MUC_USER ->
|
|
nothing;
|
|
_ ->
|
|
read_caps(Tail, Result)
|
|
end;
|
|
read_caps([_ | Tail], Result) ->
|
|
read_caps(Tail, Result);
|
|
read_caps([], Result) ->
|
|
Result.
|
|
|
|
%%====================================================================
|
|
%% Hooks
|
|
%%====================================================================
|
|
user_send_packet(#jid{luser = User, lserver = Server} = From,
|
|
#jid{luser = User, lserver = Server, lresource = ""},
|
|
{xmlelement, "presence", Attrs, Els}) ->
|
|
Type = xml:get_attr_s("type", Attrs),
|
|
if Type == ""; Type == "available" ->
|
|
case read_caps(Els) of
|
|
nothing ->
|
|
ok;
|
|
#caps{version = Version, exts = Exts} = Caps ->
|
|
feature_request(Server, From, Caps, [Version | Exts])
|
|
end;
|
|
true ->
|
|
ok
|
|
end;
|
|
user_send_packet(_From, _To, _Packet) ->
|
|
ok.
|
|
|
|
caps_stream_features(Acc, MyHost) ->
|
|
case make_my_disco_hash(MyHost) of
|
|
"" ->
|
|
Acc;
|
|
Hash ->
|
|
[{xmlelement, "c", [{"xmlns", ?NS_CAPS},
|
|
{"hash", "sha-1"},
|
|
{"node", ?EJABBERD_URI},
|
|
{"ver", Hash}], []} | Acc]
|
|
end.
|
|
|
|
disco_features(_Acc, From, To, ?EJABBERD_URI ++ "#" ++ [_|_], Lang) ->
|
|
ejabberd_hooks:run_fold(disco_local_features,
|
|
To#jid.lserver,
|
|
empty,
|
|
[From, To, "", Lang]);
|
|
disco_features(Acc, _From, _To, _Node, _Lang) ->
|
|
Acc.
|
|
|
|
disco_identity(_Acc, From, To, ?EJABBERD_URI ++ "#" ++ [_|_], Lang) ->
|
|
ejabberd_hooks:run_fold(disco_local_identity,
|
|
To#jid.lserver,
|
|
[],
|
|
[From, To, "", Lang]);
|
|
disco_identity(Acc, _From, _To, _Node, _Lang) ->
|
|
Acc.
|
|
|
|
disco_info(_Acc, Host, Module, ?EJABBERD_URI ++ "#" ++ [_|_], Lang) ->
|
|
ejabberd_hooks:run_fold(disco_info,
|
|
Host,
|
|
[],
|
|
[Host, Module, "", Lang]);
|
|
disco_info(Acc, _Host, _Module, _Node, _Lang) ->
|
|
Acc.
|
|
|
|
%%====================================================================
|
|
%% gen_server callbacks
|
|
%%====================================================================
|
|
init([Host, _Opts]) ->
|
|
mnesia:create_table(caps_features,
|
|
[{disc_copies, [node()]},
|
|
{local_content, true},
|
|
{attributes, record_info(fields, caps_features)}]),
|
|
mnesia:add_table_copy(caps_features, node(), disc_copies),
|
|
ejabberd_hooks:add(user_send_packet, Host,
|
|
?MODULE, user_send_packet, 75),
|
|
ejabberd_hooks:add(c2s_stream_features, Host,
|
|
?MODULE, caps_stream_features, 75),
|
|
ejabberd_hooks:add(s2s_stream_features, Host,
|
|
?MODULE, caps_stream_features, 75),
|
|
ejabberd_hooks:add(disco_local_features, Host,
|
|
?MODULE, disco_features, 75),
|
|
ejabberd_hooks:add(disco_local_identity, Host,
|
|
?MODULE, disco_identity, 75),
|
|
ejabberd_hooks:add(disco_info, Host,
|
|
?MODULE, disco_info, 75),
|
|
{ok, #state{host = Host}}.
|
|
|
|
handle_call(stop, _From, State) ->
|
|
{stop, normal, ok, State};
|
|
handle_call(_Req, _From, State) ->
|
|
{reply, {error, badarg}, State}.
|
|
|
|
handle_cast(_Msg, State) ->
|
|
{noreply, State}.
|
|
|
|
handle_info(_Info, State) ->
|
|
{noreply, State}.
|
|
|
|
terminate(_Reason, State) ->
|
|
Host = State#state.host,
|
|
ejabberd_hooks:delete(user_send_packet, Host,
|
|
?MODULE, user_send_packet, 75),
|
|
ejabberd_hooks:delete(c2s_stream_features, Host,
|
|
?MODULE, caps_stream_features, 75),
|
|
ejabberd_hooks:delete(s2s_stream_features, Host,
|
|
?MODULE, caps_stream_features, 75),
|
|
ejabberd_hooks:delete(disco_local_features, Host,
|
|
?MODULE, disco_features, 75),
|
|
ejabberd_hooks:delete(disco_local_identity, Host,
|
|
?MODULE, disco_identity, 75),
|
|
ejabberd_hooks:delete(disco_info, Host,
|
|
?MODULE, disco_info, 75),
|
|
ok.
|
|
|
|
code_change(_OldVsn, State, _Extra) ->
|
|
{ok, State}.
|
|
|
|
%%====================================================================
|
|
%% Aux functions
|
|
%%====================================================================
|
|
feature_request(Host, From, Caps, [SubNode | Tail] = SubNodes) ->
|
|
Node = Caps#caps.node,
|
|
BinaryNode = node_to_binary(Node, SubNode),
|
|
case mnesia:dirty_read({caps_features, BinaryNode}) of
|
|
[] ->
|
|
IQ = #iq{type = get,
|
|
xmlns = ?NS_DISCO_INFO,
|
|
sub_el = [{xmlelement, "query",
|
|
[{"xmlns", ?NS_DISCO_INFO},
|
|
{"node", Node ++ "#" ++ SubNode}],
|
|
[]}]},
|
|
F = fun(IQReply) ->
|
|
feature_response(
|
|
IQReply, Host, From, Caps, SubNodes)
|
|
end,
|
|
ejabberd_local:route_iq(
|
|
jlib:make_jid("", Host, ""), From, IQ, F);
|
|
_ ->
|
|
feature_request(Host, From, Caps, Tail)
|
|
end;
|
|
feature_request(_Host, _From, _Caps, []) ->
|
|
ok.
|
|
|
|
feature_response(#iq{type = result,
|
|
sub_el = [{xmlelement, _, _, Els}]},
|
|
Host, From, Caps, [SubNode | SubNodes]) ->
|
|
BinaryNode = node_to_binary(Caps#caps.node, SubNode),
|
|
IsValid = case Caps#caps.hash of
|
|
"md2" ->
|
|
Caps#caps.version == make_disco_hash(Els, md2);
|
|
"md5" ->
|
|
Caps#caps.version == make_disco_hash(Els, md5);
|
|
"sha-1" ->
|
|
Caps#caps.version == make_disco_hash(Els, sha1);
|
|
"sha-224" ->
|
|
Caps#caps.version == make_disco_hash(Els, sha224);
|
|
"sha-256" ->
|
|
Caps#caps.version == make_disco_hash(Els, sha256);
|
|
"sha-384" ->
|
|
Caps#caps.version == make_disco_hash(Els, sha384);
|
|
"sha-512" ->
|
|
Caps#caps.version == make_disco_hash(Els, sha512);
|
|
_ ->
|
|
true
|
|
end,
|
|
if IsValid ->
|
|
Features = lists:flatmap(
|
|
fun({xmlelement, "feature", FAttrs, _}) ->
|
|
[xml:get_attr_s("var", FAttrs)];
|
|
(_) ->
|
|
[]
|
|
end, Els),
|
|
mnesia:dirty_write(
|
|
#caps_features{node_pair = BinaryNode,
|
|
features = features_to_binary(Features)});
|
|
true ->
|
|
mnesia:dirty_write(#caps_features{node_pair = BinaryNode})
|
|
end,
|
|
feature_request(Host, From, Caps, SubNodes);
|
|
feature_response(timeout, _Host, _From, _Caps, _SubNodes) ->
|
|
ok;
|
|
feature_response(_IQResult, Host, From, Caps, [SubNode | SubNodes]) ->
|
|
%% We got type=error or invalid type=result stanza, so
|
|
%% we cache empty feature not to probe the client permanently
|
|
BinaryNode = node_to_binary(Caps#caps.node, SubNode),
|
|
mnesia:dirty_write(#caps_features{node_pair = BinaryNode}),
|
|
feature_request(Host, From, Caps, SubNodes).
|
|
|
|
node_to_binary(Node, SubNode) ->
|
|
{list_to_binary(Node), list_to_binary(SubNode)}.
|
|
|
|
features_to_binary(L) -> [list_to_binary(I) || I <- L].
|
|
binary_to_features(L) -> [binary_to_list(I) || I <- L].
|
|
|
|
make_my_disco_hash(Host) ->
|
|
JID = jlib:make_jid("", Host, ""),
|
|
case {ejabberd_hooks:run_fold(disco_local_features,
|
|
Host,
|
|
empty,
|
|
[JID, JID, "", ""]),
|
|
ejabberd_hooks:run_fold(disco_local_identity,
|
|
Host,
|
|
[],
|
|
[JID, JID, "", ""]),
|
|
ejabberd_hooks:run_fold(disco_info,
|
|
Host,
|
|
[],
|
|
[Host, undefined, "", ""])} of
|
|
{{result, Features}, Identities, Info} ->
|
|
Feats = lists:map(
|
|
fun({{Feat, _Host}}) ->
|
|
{xmlelement, "feature", [{"var", Feat}], []};
|
|
(Feat) ->
|
|
{xmlelement, "feature", [{"var", Feat}], []}
|
|
end, Features),
|
|
make_disco_hash(Identities ++ Info ++ Feats, sha1);
|
|
_Err ->
|
|
""
|
|
end.
|
|
|
|
make_disco_hash(DiscoEls, Algo) ->
|
|
Concat = [concat_identities(DiscoEls),
|
|
concat_features(DiscoEls),
|
|
concat_info(DiscoEls)],
|
|
base64:encode_to_string(
|
|
if Algo == md2 ->
|
|
sha:md2(Concat);
|
|
Algo == md5 ->
|
|
crypto:md5(Concat);
|
|
Algo == sha1 ->
|
|
crypto:sha(Concat);
|
|
Algo == sha224 ->
|
|
sha:sha224(Concat);
|
|
Algo == sha256 ->
|
|
sha:sha256(Concat);
|
|
Algo == sha384 ->
|
|
sha:sha384(Concat);
|
|
Algo == sha512 ->
|
|
sha:sha512(Concat)
|
|
end).
|
|
|
|
concat_features(Els) ->
|
|
lists:usort(
|
|
lists:flatmap(
|
|
fun({xmlelement, "feature", Attrs, _}) ->
|
|
[[xml:get_attr_s("var", Attrs), $<]];
|
|
(_) ->
|
|
[]
|
|
end, Els)).
|
|
|
|
concat_identities(Els) ->
|
|
lists:sort(
|
|
lists:flatmap(
|
|
fun({xmlelement, "identity", Attrs, _}) ->
|
|
[[xml:get_attr_s("category", Attrs), $/,
|
|
xml:get_attr_s("type", Attrs), $/,
|
|
xml:get_attr_s("xml:lang", Attrs), $/,
|
|
xml:get_attr_s("name", Attrs), $<]];
|
|
(_) ->
|
|
[]
|
|
end, Els)).
|
|
|
|
concat_info(Els) ->
|
|
lists:sort(
|
|
lists:flatmap(
|
|
fun({xmlelement, "x", Attrs, Fields}) ->
|
|
case {xml:get_attr_s("xmlns", Attrs),
|
|
xml:get_attr_s("type", Attrs)} of
|
|
{?NS_XDATA, "result"} ->
|
|
[concat_xdata_fields(Fields)];
|
|
_ ->
|
|
[]
|
|
end;
|
|
(_) ->
|
|
[]
|
|
end, Els)).
|
|
|
|
concat_xdata_fields(Fields) ->
|
|
[Form, Res] =
|
|
lists:foldl(
|
|
fun({xmlelement, "field", Attrs, Els} = El,
|
|
[FormType, VarFields] = Acc) ->
|
|
case xml:get_attr_s("var", Attrs) of
|
|
"" ->
|
|
Acc;
|
|
"FORM_TYPE" ->
|
|
[xml:get_subtag_cdata(El, "value"), VarFields];
|
|
Var ->
|
|
[FormType,
|
|
[[[Var, $<],
|
|
lists:sort(
|
|
lists:flatmap(
|
|
fun({xmlelement, "value", _, VEls}) ->
|
|
[[xml:get_cdata(VEls), $<]];
|
|
(_) ->
|
|
[]
|
|
end, Els))] | VarFields]]
|
|
end;
|
|
(_, Acc) ->
|
|
Acc
|
|
end, ["", []], Fields),
|
|
[Form, $<, lists:sort(Res)].
|