2003-02-01 21:21:28 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : ejabberd_app.erl
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2008-02-28 01:30:23 +01:00
|
|
|
%%% Purpose : ejabberd's application callback module
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Created : 31 Jan 2003 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2018-01-05 21:18:58 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2018 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
|
|
|
%%%
|
2003-02-01 21:21:28 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(ejabberd_app).
|
2015-06-01 14:38:27 +02:00
|
|
|
|
2007-12-24 12:41:41 +01:00
|
|
|
-author('alexey@process-one.net').
|
2003-02-01 21:21:28 +01:00
|
|
|
|
|
|
|
-behaviour(application).
|
|
|
|
|
2017-07-06 14:47:00 +02:00
|
|
|
-export([start/2, prep_stop/1, stop/1]).
|
2003-02-01 21:21:28 +01:00
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("logger.hrl").
|
2008-02-28 01:30:23 +01:00
|
|
|
|
|
|
|
%%%
|
|
|
|
%%% Application API
|
|
|
|
%%%
|
|
|
|
|
2003-10-18 21:15:12 +02:00
|
|
|
start(normal, _Args) ->
|
2017-03-18 08:24:42 +01:00
|
|
|
{T1, _} = statistics(wall_clock),
|
2013-06-27 10:58:56 +02:00
|
|
|
ejabberd_logger:start(),
|
2009-08-24 23:21:04 +02:00
|
|
|
write_pid_file(),
|
2013-04-08 11:12:54 +02:00
|
|
|
start_apps(),
|
2016-07-28 15:57:35 +02:00
|
|
|
start_elixir_application(),
|
2013-07-06 18:11:01 +02:00
|
|
|
ejabberd:check_app(ejabberd),
|
2016-09-08 11:34:42 +02:00
|
|
|
setup_if_elixir_conf_used(),
|
2018-05-09 10:44:24 +02:00
|
|
|
case ejabberd_config:start() of
|
|
|
|
ok ->
|
|
|
|
ejabberd_mnesia:start(),
|
|
|
|
file_queue_init(),
|
|
|
|
maybe_add_nameservers(),
|
|
|
|
case ejabberd_sup:start_link() of
|
|
|
|
{ok, SupPid} ->
|
2018-06-21 13:35:19 +02:00
|
|
|
ejabberd_system_monitor:start(),
|
2018-05-09 10:44:24 +02:00
|
|
|
register_elixir_config_hooks(),
|
|
|
|
ejabberd_cluster:wait_for_sync(infinity),
|
2018-09-29 22:06:34 +02:00
|
|
|
ejabberd_hooks:run(ejabberd_started, []),
|
2018-05-09 10:44:24 +02:00
|
|
|
{T2, _} = statistics(wall_clock),
|
|
|
|
?INFO_MSG("ejabberd ~s is started in the node ~p in ~.2fs",
|
2018-06-14 13:00:47 +02:00
|
|
|
[ejabberd_config:get_version(),
|
|
|
|
node(), (T2-T1)/1000]),
|
2018-05-09 10:44:24 +02:00
|
|
|
lists:foreach(fun erlang:garbage_collect/1, processes()),
|
|
|
|
{ok, SupPid};
|
|
|
|
Err ->
|
|
|
|
?CRITICAL_MSG("Failed to start ejabberd application: ~p", [Err]),
|
|
|
|
ejabberd:halt()
|
|
|
|
end;
|
|
|
|
{error, Reason} ->
|
|
|
|
?CRITICAL_MSG("Failed to start ejabberd application: ~p", [Reason]),
|
2018-03-29 11:14:31 +02:00
|
|
|
ejabberd:halt()
|
2017-02-26 13:10:59 +01:00
|
|
|
end;
|
2003-02-01 21:21:28 +01:00
|
|
|
start(_, _) ->
|
|
|
|
{error, badarg}.
|
|
|
|
|
2008-02-28 01:30:23 +01:00
|
|
|
%% Prepare the application for termination.
|
2008-10-25 00:07:38 +02:00
|
|
|
%% This function is called when an application is about to be stopped,
|
2008-02-28 01:30:23 +01:00
|
|
|
%% before shutting down the processes of the application.
|
|
|
|
prep_stop(State) ->
|
2018-11-19 16:11:33 +01:00
|
|
|
ejabberd_hooks:run(ejabberd_stopping, []),
|
2012-07-25 13:02:21 +02:00
|
|
|
ejabberd_listener:stop_listeners(),
|
2017-02-23 08:12:19 +01:00
|
|
|
ejabberd_sm:stop(),
|
2016-06-07 18:41:38 +02:00
|
|
|
gen_mod:stop_modules(),
|
2008-02-28 01:30:23 +01:00
|
|
|
State.
|
|
|
|
|
|
|
|
%% All the processes were killed when this function is called
|
|
|
|
stop(_State) ->
|
2018-06-14 13:00:47 +02:00
|
|
|
?INFO_MSG("ejabberd ~s is stopped in the node ~p",
|
|
|
|
[ejabberd_config:get_version(), node()]),
|
2009-08-24 23:21:04 +02:00
|
|
|
delete_pid_file(),
|
2010-05-28 00:48:04 +02:00
|
|
|
%%ejabberd_debug:stop(),
|
2003-02-01 21:21:28 +01:00
|
|
|
ok.
|
|
|
|
|
2008-02-28 01:30:23 +01:00
|
|
|
|
|
|
|
%%%
|
|
|
|
%%% Internal functions
|
|
|
|
%%%
|
|
|
|
|
2009-03-05 21:03:18 +01:00
|
|
|
%% If ejabberd is running on some Windows machine, get nameservers and add to Erlang
|
|
|
|
maybe_add_nameservers() ->
|
|
|
|
case os:type() of
|
|
|
|
{win32, _} -> add_windows_nameservers();
|
|
|
|
_ -> ok
|
|
|
|
end.
|
|
|
|
|
|
|
|
add_windows_nameservers() ->
|
2009-03-11 19:36:27 +01:00
|
|
|
IPTs = win32_dns:get_nameservers(),
|
2009-03-05 21:03:18 +01:00
|
|
|
?INFO_MSG("Adding machine's DNS IPs to Erlang system:~n~p", [IPTs]),
|
|
|
|
lists:foreach(fun(IPT) -> inet_db:add_ns(IPT) end, IPTs).
|
2009-08-24 23:21:04 +02:00
|
|
|
|
|
|
|
%%%
|
|
|
|
%%% PID file
|
|
|
|
%%%
|
|
|
|
|
|
|
|
write_pid_file() ->
|
|
|
|
case ejabberd:get_pid_file() of
|
|
|
|
false ->
|
|
|
|
ok;
|
|
|
|
PidFilename ->
|
|
|
|
write_pid_file(os:getpid(), PidFilename)
|
|
|
|
end.
|
|
|
|
|
|
|
|
write_pid_file(Pid, PidFilename) ->
|
|
|
|
case file:open(PidFilename, [write]) of
|
|
|
|
{ok, Fd} ->
|
|
|
|
io:format(Fd, "~s~n", [Pid]),
|
|
|
|
file:close(Fd);
|
|
|
|
{error, Reason} ->
|
|
|
|
?ERROR_MSG("Cannot write PID file ~s~nReason: ~p", [PidFilename, Reason]),
|
|
|
|
throw({cannot_write_pid_file, PidFilename, Reason})
|
|
|
|
end.
|
|
|
|
|
|
|
|
delete_pid_file() ->
|
|
|
|
case ejabberd:get_pid_file() of
|
|
|
|
false ->
|
|
|
|
ok;
|
|
|
|
PidFilename ->
|
|
|
|
file:delete(PidFilename)
|
|
|
|
end.
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2017-03-10 13:12:43 +01:00
|
|
|
file_queue_init() ->
|
|
|
|
QueueDir = case ejabberd_config:queue_dir() of
|
|
|
|
undefined ->
|
2017-04-03 11:57:23 +02:00
|
|
|
MnesiaDir = mnesia:system_info(directory),
|
2017-03-10 13:12:43 +01:00
|
|
|
filename:join(MnesiaDir, "queue");
|
|
|
|
Path ->
|
|
|
|
Path
|
|
|
|
end,
|
|
|
|
p1_queue:start(QueueDir).
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
start_apps() ->
|
2015-04-07 09:03:37 +02:00
|
|
|
crypto:start(),
|
2013-04-08 11:12:54 +02:00
|
|
|
ejabberd:start_app(sasl),
|
|
|
|
ejabberd:start_app(ssl),
|
2018-09-27 19:37:27 +02:00
|
|
|
ejabberd:start_app(pkix),
|
2017-04-27 18:44:58 +02:00
|
|
|
ejabberd:start_app(p1_utils),
|
2016-02-03 11:30:48 +01:00
|
|
|
ejabberd:start_app(fast_yaml),
|
2016-02-03 16:13:16 +01:00
|
|
|
ejabberd:start_app(fast_tls),
|
2016-11-21 08:23:09 +01:00
|
|
|
ejabberd:start_app(xmpp),
|
2017-09-17 09:26:48 +02:00
|
|
|
ejabberd:start_app(cache_tab),
|
2018-01-15 10:54:57 +01:00
|
|
|
ejabberd:start_app(eimp).
|
2015-06-01 14:38:27 +02:00
|
|
|
|
2016-09-08 11:34:42 +02:00
|
|
|
setup_if_elixir_conf_used() ->
|
|
|
|
case ejabberd_config:is_using_elixir_config() of
|
|
|
|
true -> 'Elixir.Ejabberd.Config.Store':start_link();
|
|
|
|
false -> ok
|
|
|
|
end.
|
|
|
|
|
|
|
|
register_elixir_config_hooks() ->
|
|
|
|
case ejabberd_config:is_using_elixir_config() of
|
|
|
|
true -> 'Elixir.Ejabberd.Config':start_hooks();
|
|
|
|
false -> ok
|
|
|
|
end.
|
|
|
|
|
2016-07-28 15:57:35 +02:00
|
|
|
start_elixir_application() ->
|
2016-09-08 16:29:19 +02:00
|
|
|
case ejabberd_config:is_elixir_enabled() of
|
|
|
|
true ->
|
|
|
|
case application:ensure_started(elixir) of
|
|
|
|
ok -> ok;
|
2016-09-08 18:11:54 +02:00
|
|
|
{error, _Msg} -> ?ERROR_MSG("Elixir application not started.", [])
|
2016-09-08 16:29:19 +02:00
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end.
|