mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
New ejabberd router for multicast packets (EJAB-329)
This commit is contained in:
parent
bc963e7855
commit
9c12790011
@ -37,6 +37,7 @@
|
|||||||
ejabberd_rdbms,
|
ejabberd_rdbms,
|
||||||
ejabberd_receiver,
|
ejabberd_receiver,
|
||||||
ejabberd_router,
|
ejabberd_router,
|
||||||
|
ejabberd_router_multicast,
|
||||||
ejabberd_s2s,
|
ejabberd_s2s,
|
||||||
ejabberd_s2s_in,
|
ejabberd_s2s_in,
|
||||||
ejabberd_s2s_out,
|
ejabberd_s2s_out,
|
||||||
@ -126,6 +127,7 @@
|
|||||||
ejabberd_sup,
|
ejabberd_sup,
|
||||||
ejabberd_auth,
|
ejabberd_auth,
|
||||||
ejabberd_router,
|
ejabberd_router,
|
||||||
|
ejabberd_router_multicast,
|
||||||
ejabberd_sm,
|
ejabberd_sm,
|
||||||
ejabberd_s2s,
|
ejabberd_s2s,
|
||||||
ejabberd_local,
|
ejabberd_local,
|
||||||
|
230
src/ejabberd_router_multicast.erl
Normal file
230
src/ejabberd_router_multicast.erl
Normal file
@ -0,0 +1,230 @@
|
|||||||
|
%%%----------------------------------------------------------------------
|
||||||
|
%%% File : ejabberd_router_multicast.erl
|
||||||
|
%%% Author : Badlop <badlop@process-one.net>
|
||||||
|
%%% Purpose : Multicast router
|
||||||
|
%%% Created : 11 Aug 2007 by Badlop <badlop@process-one.net>
|
||||||
|
%%%
|
||||||
|
%%%
|
||||||
|
%%% 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
|
||||||
|
%%%
|
||||||
|
%%%----------------------------------------------------------------------
|
||||||
|
|
||||||
|
-module(ejabberd_router_multicast).
|
||||||
|
-author('badlop@process-one.net').
|
||||||
|
|
||||||
|
-behaviour(gen_server).
|
||||||
|
|
||||||
|
%% API
|
||||||
|
-export([route_multicast/4,
|
||||||
|
register_route/1,
|
||||||
|
unregister_route/1
|
||||||
|
]).
|
||||||
|
|
||||||
|
-export([start_link/0]).
|
||||||
|
|
||||||
|
%% gen_server callbacks
|
||||||
|
-export([init/1, handle_call/3, handle_cast/2, handle_info/2,
|
||||||
|
terminate/2, code_change/3]).
|
||||||
|
|
||||||
|
-include_lib("exmpp/include/exmpp.hrl").
|
||||||
|
|
||||||
|
-include("ejabberd.hrl").
|
||||||
|
|
||||||
|
-record(route_multicast, {domain, pid}).
|
||||||
|
-record(state, {}).
|
||||||
|
|
||||||
|
%%====================================================================
|
||||||
|
%% API
|
||||||
|
%%====================================================================
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
%% Function: start_link() -> {ok,Pid} | ignore | {error,Error}
|
||||||
|
%% Description: Starts the server
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
start_link() ->
|
||||||
|
gen_server:start_link({local, ?MODULE}, ?MODULE, [], []).
|
||||||
|
|
||||||
|
route_multicast(From, Domain, Destinations, Packet) ->
|
||||||
|
case catch do_route(From, Domain, Destinations, Packet) of
|
||||||
|
{'EXIT', Reason} ->
|
||||||
|
?ERROR_MSG("~p~nwhen processing: ~p",
|
||||||
|
[Reason, {From, Domain, Destinations, Packet}]);
|
||||||
|
_ ->
|
||||||
|
ok
|
||||||
|
end.
|
||||||
|
|
||||||
|
register_route(Domain) ->
|
||||||
|
try
|
||||||
|
LDomain = exmpp_stringprep:nameprep(Domain),
|
||||||
|
Pid = self(),
|
||||||
|
F = fun() ->
|
||||||
|
mnesia:write(#route_multicast{domain = LDomain,
|
||||||
|
pid = Pid})
|
||||||
|
end,
|
||||||
|
mnesia:transaction(F)
|
||||||
|
catch
|
||||||
|
_ ->
|
||||||
|
erlang:error({invalid_domain, Domain})
|
||||||
|
end.
|
||||||
|
|
||||||
|
unregister_route(Domain) ->
|
||||||
|
try
|
||||||
|
LDomain = exmpp_stringprep:nameprep(Domain),
|
||||||
|
LDomainB = list_to_binary(LDomain),
|
||||||
|
Pid = self(),
|
||||||
|
F = fun() ->
|
||||||
|
case mnesia:match_object(
|
||||||
|
#route_multicast{domain = LDomainB,
|
||||||
|
pid = Pid,
|
||||||
|
_ = '_'}) of
|
||||||
|
[R] ->
|
||||||
|
mnesia:delete_object(R);
|
||||||
|
_ ->
|
||||||
|
ok
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
mnesia:transaction(F)
|
||||||
|
catch
|
||||||
|
_ ->
|
||||||
|
erlang:error({invalid_domain, Domain})
|
||||||
|
end.
|
||||||
|
|
||||||
|
%%====================================================================
|
||||||
|
%% gen_server callbacks
|
||||||
|
%%====================================================================
|
||||||
|
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
%% Function: init(Args) -> {ok, State} |
|
||||||
|
%% {ok, State, Timeout} |
|
||||||
|
%% ignore |
|
||||||
|
%% {stop, Reason}
|
||||||
|
%% Description: Initiates the server
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
init([]) ->
|
||||||
|
mnesia:create_table(route_multicast,
|
||||||
|
[{ram_copies, [node()]},
|
||||||
|
{type, bag},
|
||||||
|
{attributes,
|
||||||
|
record_info(fields, route_multicast)}]),
|
||||||
|
mnesia:add_table_copy(route_multicast, node(), ram_copies),
|
||||||
|
mnesia:subscribe({table, route_multicast, simple}),
|
||||||
|
lists:foreach(
|
||||||
|
fun(Pid) ->
|
||||||
|
erlang:monitor(process, Pid)
|
||||||
|
end,
|
||||||
|
mnesia:dirty_select(route_multicast,
|
||||||
|
[{{route_multicast, '_', '$1'}, [], ['$1']}])),
|
||||||
|
{ok, #state{}}.
|
||||||
|
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
%% Function: %% handle_call(Request, From, State) -> {reply, Reply, State} |
|
||||||
|
%% {reply, Reply, State, Timeout} |
|
||||||
|
%% {noreply, State} |
|
||||||
|
%% {noreply, State, Timeout} |
|
||||||
|
%% {stop, Reason, Reply, State} |
|
||||||
|
%% {stop, Reason, State}
|
||||||
|
%% Description: Handling call messages
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
handle_call(_Request, _From, State) ->
|
||||||
|
Reply = ok,
|
||||||
|
{reply, Reply, State}.
|
||||||
|
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
%% Function: handle_cast(Msg, State) -> {noreply, State} |
|
||||||
|
%% {noreply, State, Timeout} |
|
||||||
|
%% {stop, Reason, State}
|
||||||
|
%% Description: Handling cast messages
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
handle_cast(_Msg, State) ->
|
||||||
|
{noreply, State}.
|
||||||
|
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
%% Function: handle_info(Info, State) -> {noreply, State} |
|
||||||
|
%% {noreply, State, Timeout} |
|
||||||
|
%% {stop, Reason, State}
|
||||||
|
%% Description: Handling all non call/cast messages
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
handle_info({route_multicast, From, Domain, Destinations, Packet}, State) ->
|
||||||
|
case catch do_route(From, Domain, Destinations, Packet) of
|
||||||
|
{'EXIT', Reason} ->
|
||||||
|
?ERROR_MSG("~p~nwhen processing: ~p",
|
||||||
|
[Reason, {From, Domain, Destinations, Packet}]);
|
||||||
|
_ ->
|
||||||
|
ok
|
||||||
|
end,
|
||||||
|
{noreply, State};
|
||||||
|
|
||||||
|
handle_info({mnesia_table_event,
|
||||||
|
{write, #route_multicast{pid = Pid}, _ActivityId}},
|
||||||
|
State) ->
|
||||||
|
erlang:monitor(process, Pid),
|
||||||
|
{noreply, State};
|
||||||
|
handle_info({'DOWN', _Ref, _Type, Pid, _Info}, State) ->
|
||||||
|
F = fun() ->
|
||||||
|
Es = mnesia:select(
|
||||||
|
route_multicast,
|
||||||
|
[{#route_multicast{pid = Pid, _ = '_'}, [], ['$_']}]),
|
||||||
|
lists:foreach(
|
||||||
|
fun(E) ->
|
||||||
|
mnesia:delete_object(E)
|
||||||
|
end, Es)
|
||||||
|
end,
|
||||||
|
mnesia:transaction(F),
|
||||||
|
{noreply, State};
|
||||||
|
handle_info(_Info, State) ->
|
||||||
|
{noreply, State}.
|
||||||
|
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
%% Function: terminate(Reason, State) -> void()
|
||||||
|
%% Description: This function is called by a gen_server when it is about to
|
||||||
|
%% terminate. It should be the opposite of Module:init/1 and do any necessary
|
||||||
|
%% cleaning up. When it returns, the gen_server terminates with Reason.
|
||||||
|
%% The return value is ignored.
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
terminate(_Reason, _State) ->
|
||||||
|
ok.
|
||||||
|
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
%% Func: code_change(OldVsn, State, Extra) -> {ok, NewState}
|
||||||
|
%% Description: Convert process state when code is changed
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
code_change(_OldVsn, State, _Extra) ->
|
||||||
|
{ok, State}.
|
||||||
|
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
%%% Internal functions
|
||||||
|
%%--------------------------------------------------------------------
|
||||||
|
%% From = #jid
|
||||||
|
%% Destinations = [#jid]
|
||||||
|
do_route(From, Domain, Destinations, Packet) ->
|
||||||
|
?DEBUG("route_multicast~nfrom ~p~ndomain ~p~ndestinations ~p~npacket ~p~n",
|
||||||
|
[From, Domain, Destinations, Packet]),
|
||||||
|
%% Try to find an appropriate multicast service
|
||||||
|
case mnesia:dirty_read(route_multicast, Domain) of
|
||||||
|
%% If no multicast service is available in this server, send manually
|
||||||
|
[] -> do_route_normal(From, Destinations, Packet);
|
||||||
|
%% If available, send the packet using multicast service
|
||||||
|
[R] ->
|
||||||
|
case R#route_multicast.pid of
|
||||||
|
Pid when is_pid(Pid) ->
|
||||||
|
Pid ! {route_trusted, From, Destinations, Packet};
|
||||||
|
_ -> do_route_normal(From, Destinations, Packet)
|
||||||
|
end
|
||||||
|
end.
|
||||||
|
|
||||||
|
do_route_normal(From, Destinations, Packet) ->
|
||||||
|
[ejabberd_router:route(From, To, Packet) || To <- Destinations].
|
@ -63,6 +63,13 @@ init([]) ->
|
|||||||
brutal_kill,
|
brutal_kill,
|
||||||
worker,
|
worker,
|
||||||
[ejabberd_router]},
|
[ejabberd_router]},
|
||||||
|
Router_multicast =
|
||||||
|
{ejabberd_router_multicast,
|
||||||
|
{ejabberd_router_multicast, start_link, []},
|
||||||
|
permanent,
|
||||||
|
brutal_kill,
|
||||||
|
worker,
|
||||||
|
[ejabberd_router_multicast]},
|
||||||
SM =
|
SM =
|
||||||
{ejabberd_sm,
|
{ejabberd_sm,
|
||||||
{ejabberd_sm, start_link, []},
|
{ejabberd_sm, start_link, []},
|
||||||
@ -182,6 +189,7 @@ init([]) ->
|
|||||||
NodeGroups,
|
NodeGroups,
|
||||||
SystemMonitor,
|
SystemMonitor,
|
||||||
Router,
|
Router,
|
||||||
|
Router_multicast,
|
||||||
SM,
|
SM,
|
||||||
S2S,
|
S2S,
|
||||||
Local,
|
Local,
|
||||||
|
Loading…
Reference in New Issue
Block a user