2002-11-30 19:46:16 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : ejabberd_local.erl
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2004-11-05 22:14:31 +01:00
|
|
|
%%% Purpose : Route local packets
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Created : 30 Nov 2002 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2024-01-22 16:40:01 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2024 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
|
|
|
%%%
|
2014-02-22 11:27:40 +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.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-12-24 12:41:41 +01:00
|
|
|
%%%
|
2002-11-30 19:46:16 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(ejabberd_local).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2007-12-24 12:41:41 +01:00
|
|
|
-author('alexey@process-one.net').
|
2002-11-30 19:46:16 +01:00
|
|
|
|
2006-01-29 05:38:31 +01:00
|
|
|
-behaviour(gen_server).
|
|
|
|
|
|
|
|
%% API
|
2017-01-11 14:25:43 +01:00
|
|
|
-export([start/0, start_link/0]).
|
2002-11-30 19:46:16 +01:00
|
|
|
|
2018-05-09 09:30:00 +02:00
|
|
|
-export([route/1,
|
2017-11-10 16:02:22 +01:00
|
|
|
get_features/1,
|
|
|
|
bounce_resource_packet/1,
|
2017-02-23 08:12:19 +01:00
|
|
|
host_up/1, host_down/1]).
|
2002-11-30 19:46:16 +01:00
|
|
|
|
2006-01-29 05:38:31 +01:00
|
|
|
%% gen_server callbacks
|
2013-03-14 10:33:02 +01:00
|
|
|
-export([init/1, handle_call/3, handle_cast/2,
|
|
|
|
handle_info/2, terminate/2, code_change/3]).
|
2006-01-29 05:38:31 +01:00
|
|
|
|
2017-11-10 16:02:22 +01:00
|
|
|
%% deprecated functions: use ejabberd_router:route_iq/3,4
|
|
|
|
-export([route_iq/2, route_iq/3]).
|
|
|
|
-deprecated([{route_iq, 2}, {route_iq, 3}]).
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("logger.hrl").
|
2017-01-23 11:51:05 +01:00
|
|
|
-include_lib("stdlib/include/ms_transform.hrl").
|
2020-09-03 13:45:57 +02:00
|
|
|
-include_lib("xmpp/include/xmpp.hrl").
|
2018-12-13 11:45:45 +01:00
|
|
|
-include("ejabberd_stacktrace.hrl").
|
2019-06-22 16:08:45 +02:00
|
|
|
-include("translate.hrl").
|
2002-11-30 19:46:16 +01:00
|
|
|
|
2006-01-29 05:38:31 +01:00
|
|
|
-record(state, {}).
|
|
|
|
|
|
|
|
%%====================================================================
|
|
|
|
%% API
|
|
|
|
%%====================================================================
|
|
|
|
%%--------------------------------------------------------------------
|
|
|
|
%% Function: start_link() -> {ok,Pid} | ignore | {error,Error}
|
|
|
|
%% Description: Starts the server
|
|
|
|
%%--------------------------------------------------------------------
|
2017-01-11 14:25:43 +01:00
|
|
|
start() ->
|
|
|
|
ChildSpec = {?MODULE, {?MODULE, start_link, []},
|
|
|
|
transient, 1000, worker, [?MODULE]},
|
|
|
|
supervisor:start_child(ejabberd_sup, ChildSpec).
|
|
|
|
|
2003-02-01 21:21:28 +01:00
|
|
|
start_link() ->
|
2013-03-14 10:33:02 +01:00
|
|
|
gen_server:start_link({local, ?MODULE}, ?MODULE, [],
|
|
|
|
[]).
|
2002-12-11 21:57:45 +01:00
|
|
|
|
2019-07-07 21:12:14 +02:00
|
|
|
-spec route(stanza()) -> ok.
|
2017-02-16 09:00:26 +01:00
|
|
|
route(Packet) ->
|
2019-09-23 14:17:20 +02:00
|
|
|
?DEBUG("Local route:~n~ts", [xmpp:pp(Packet)]),
|
2019-07-07 21:12:14 +02:00
|
|
|
Type = xmpp:get_type(Packet),
|
|
|
|
To = xmpp:get_to(Packet),
|
|
|
|
if To#jid.luser /= <<"">> ->
|
|
|
|
ejabberd_sm:route(Packet);
|
|
|
|
is_record(Packet, iq), To#jid.lresource == <<"">> ->
|
|
|
|
gen_iq_handler:handle(?MODULE, Packet);
|
|
|
|
Type == result; Type == error ->
|
|
|
|
ok;
|
|
|
|
true ->
|
|
|
|
ejabberd_hooks:run(local_send_to_resource_hook,
|
|
|
|
To#jid.lserver, [Packet])
|
2004-11-05 22:14:31 +01:00
|
|
|
end.
|
|
|
|
|
2017-11-10 16:02:22 +01:00
|
|
|
-spec route_iq(iq(), function()) -> ok.
|
|
|
|
route_iq(IQ, Fun) ->
|
|
|
|
route_iq(IQ, Fun, undefined).
|
|
|
|
|
|
|
|
-spec route_iq(iq(), function(), undefined | non_neg_integer()) -> ok.
|
|
|
|
route_iq(IQ, Fun, Timeout) ->
|
|
|
|
ejabberd_router:route_iq(IQ, Fun, undefined, Timeout).
|
2007-12-01 06:16:30 +01:00
|
|
|
|
2017-02-16 09:00:26 +01:00
|
|
|
-spec bounce_resource_packet(stanza()) -> ok | stop.
|
|
|
|
bounce_resource_packet(#presence{to = #jid{lresource = <<"">>}}) ->
|
2016-11-18 11:38:08 +01:00
|
|
|
ok;
|
2017-02-16 09:00:26 +01:00
|
|
|
bounce_resource_packet(#message{to = #jid{lresource = <<"">>}, type = headline}) ->
|
2016-11-12 11:27:15 +01:00
|
|
|
ok;
|
2017-02-16 09:00:26 +01:00
|
|
|
bounce_resource_packet(Packet) ->
|
2016-07-18 14:01:32 +02:00
|
|
|
Lang = xmpp:get_lang(Packet),
|
2019-06-22 16:08:45 +02:00
|
|
|
Txt = ?T("No available resource found"),
|
2016-11-25 09:41:24 +01:00
|
|
|
Err = xmpp:err_item_not_found(Txt, Lang),
|
2017-02-16 09:00:26 +01:00
|
|
|
ejabberd_router:route_error(Packet, Err),
|
2016-11-18 11:38:08 +01:00
|
|
|
stop.
|
2006-01-29 05:38:31 +01:00
|
|
|
|
2017-01-23 11:51:05 +01:00
|
|
|
-spec get_features(binary()) -> [binary()].
|
|
|
|
get_features(Host) ->
|
2018-05-09 09:30:00 +02:00
|
|
|
gen_iq_handler:get_features(?MODULE, Host).
|
2017-01-23 11:51:05 +01:00
|
|
|
|
2006-01-29 05:38:31 +01:00
|
|
|
%%====================================================================
|
|
|
|
%% gen_server callbacks
|
|
|
|
%%====================================================================
|
|
|
|
|
|
|
|
init([]) ->
|
2017-03-28 15:31:37 +02:00
|
|
|
process_flag(trap_exit, true),
|
2019-06-14 11:33:26 +02:00
|
|
|
lists:foreach(fun host_up/1, ejabberd_option:hosts()),
|
2017-02-23 08:12:19 +01:00
|
|
|
ejabberd_hooks:add(host_up, ?MODULE, host_up, 10),
|
|
|
|
ejabberd_hooks:add(host_down, ?MODULE, host_down, 100),
|
2018-05-09 09:30:00 +02:00
|
|
|
gen_iq_handler:start(?MODULE),
|
2009-07-30 10:58:21 +02:00
|
|
|
update_table(),
|
2006-01-29 05:38:31 +01:00
|
|
|
{ok, #state{}}.
|
|
|
|
|
2019-07-12 10:55:36 +02:00
|
|
|
handle_call(Request, From, State) ->
|
|
|
|
?WARNING_MSG("Unexpected call from ~p: ~p", [From, Request]),
|
|
|
|
{noreply, State}.
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2019-07-12 10:55:36 +02:00
|
|
|
handle_cast(Msg, State) ->
|
|
|
|
?WARNING_MSG("Unexpected cast: ~p", [Msg]),
|
|
|
|
{noreply, State}.
|
2017-02-14 08:25:08 +01:00
|
|
|
|
2017-02-16 09:00:26 +01:00
|
|
|
handle_info({route, Packet}, State) ->
|
|
|
|
route(Packet),
|
2017-02-14 08:25:08 +01:00
|
|
|
{noreply, State};
|
|
|
|
handle_info(Info, State) ->
|
2019-06-24 19:32:34 +02:00
|
|
|
?WARNING_MSG("Unexpected info: ~p", [Info]),
|
2015-10-07 00:06:58 +02:00
|
|
|
{noreply, State}.
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2015-10-07 00:06:58 +02:00
|
|
|
terminate(_Reason, _State) ->
|
2019-06-14 11:33:26 +02:00
|
|
|
lists:foreach(fun host_down/1, ejabberd_option:hosts()),
|
2017-02-23 08:12:19 +01:00
|
|
|
ejabberd_hooks:delete(host_up, ?MODULE, host_up, 10),
|
|
|
|
ejabberd_hooks:delete(host_down, ?MODULE, host_down, 100),
|
2015-10-07 00:06:58 +02:00
|
|
|
ok.
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2015-10-07 00:06:58 +02:00
|
|
|
code_change(_OldVsn, State, _Extra) ->
|
|
|
|
{ok, State}.
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2015-10-07 00:06:58 +02:00
|
|
|
%%--------------------------------------------------------------------
|
|
|
|
%%% Internal functions
|
|
|
|
%%--------------------------------------------------------------------
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec update_table() -> ok.
|
2009-07-30 10:58:21 +02:00
|
|
|
update_table() ->
|
2017-11-10 16:02:22 +01:00
|
|
|
catch mnesia:delete_table(iq_response),
|
|
|
|
ok.
|
2009-07-30 10:58:21 +02:00
|
|
|
|
2017-02-23 08:12:19 +01:00
|
|
|
host_up(Host) ->
|
2017-03-15 08:27:22 +01:00
|
|
|
Owner = case whereis(?MODULE) of
|
|
|
|
undefined -> self();
|
|
|
|
Pid -> Pid
|
|
|
|
end,
|
|
|
|
ejabberd_router:register_route(Host, Host, {apply, ?MODULE, route}, Owner),
|
2017-02-23 08:12:19 +01:00
|
|
|
ejabberd_hooks:add(local_send_to_resource_hook, Host,
|
|
|
|
?MODULE, bounce_resource_packet, 100).
|
|
|
|
|
|
|
|
host_down(Host) ->
|
2017-03-28 15:31:37 +02:00
|
|
|
Owner = case whereis(?MODULE) of
|
|
|
|
undefined -> self();
|
|
|
|
Pid -> Pid
|
|
|
|
end,
|
|
|
|
ejabberd_router:unregister_route(Host, Owner),
|
2017-02-23 08:12:19 +01:00
|
|
|
ejabberd_hooks:delete(local_send_to_resource_hook, Host,
|
|
|
|
?MODULE, bounce_resource_packet, 100).
|