2017-04-30 18:01:47 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
2017-11-10 17:51:22 +01:00
|
|
|
%%% File : ejabberd_sip.erl
|
|
|
|
%%% Author : Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2019-04-01 15:53:28 +02:00
|
|
|
%%% Purpose :
|
2017-04-30 18:01:47 +02:00
|
|
|
%%% Created : 30 Apr 2017 by Evgeny Khramtsov <ekhramtsov@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2024-01-22 16:40:01 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2013-2024 ProcessOne
|
2017-04-30 18:01:47 +02: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.
|
|
|
|
%%%
|
|
|
|
%%% 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.
|
|
|
|
%%%
|
|
|
|
%%%-------------------------------------------------------------------
|
2017-11-10 17:51:22 +01:00
|
|
|
|
2017-04-30 18:01:47 +02:00
|
|
|
-module(ejabberd_sip).
|
2018-09-17 10:21:02 +02:00
|
|
|
-behaviour(ejabberd_listener).
|
2017-04-30 18:01:47 +02:00
|
|
|
|
2017-05-23 12:12:48 +02:00
|
|
|
-ifndef(SIP).
|
|
|
|
-include("logger.hrl").
|
2019-04-01 15:53:28 +02:00
|
|
|
-export([accept/1, start/3, start_link/3, listen_options/0]).
|
2018-09-18 17:19:42 +02:00
|
|
|
fail() ->
|
2019-09-23 14:17:20 +02:00
|
|
|
?CRITICAL_MSG("Listening module ~ts is not available: "
|
2018-09-18 17:19:42 +02:00
|
|
|
"ejabberd is not compiled with SIP support",
|
|
|
|
[?MODULE]),
|
|
|
|
erlang:error(sip_not_compiled).
|
2018-09-17 10:21:02 +02:00
|
|
|
accept(_) ->
|
2018-09-18 17:19:42 +02:00
|
|
|
fail().
|
2018-09-18 11:53:36 +02:00
|
|
|
listen_options() ->
|
2018-09-18 17:19:42 +02:00
|
|
|
fail().
|
2019-04-01 15:53:28 +02:00
|
|
|
start(_, _, _) ->
|
2018-09-18 17:19:42 +02:00
|
|
|
fail().
|
2019-04-01 15:53:28 +02:00
|
|
|
start_link(_, _, _) ->
|
2018-09-18 17:19:42 +02:00
|
|
|
fail().
|
2017-05-23 12:12:48 +02:00
|
|
|
-else.
|
2017-04-30 18:01:47 +02:00
|
|
|
%% API
|
2019-04-01 15:53:28 +02:00
|
|
|
-export([tcp_init/2, udp_init/2, udp_recv/5, start/3,
|
2019-06-14 11:33:26 +02:00
|
|
|
start_link/3, accept/1]).
|
|
|
|
-export([listen_opt_type/1, listen_options/0]).
|
2017-12-24 10:27:51 +01:00
|
|
|
|
2017-04-30 18:01:47 +02:00
|
|
|
%%%===================================================================
|
|
|
|
%%% API
|
|
|
|
%%%===================================================================
|
|
|
|
tcp_init(Socket, Opts) ->
|
|
|
|
ejabberd:start_app(esip),
|
2017-12-24 10:27:51 +01:00
|
|
|
esip_socket:tcp_init(Socket, set_certfile(Opts)).
|
2017-04-30 18:01:47 +02:00
|
|
|
|
|
|
|
udp_init(Socket, Opts) ->
|
|
|
|
ejabberd:start_app(esip),
|
|
|
|
esip_socket:udp_init(Socket, Opts).
|
|
|
|
|
|
|
|
udp_recv(Sock, Addr, Port, Data, Opts) ->
|
|
|
|
esip_socket:udp_recv(Sock, Addr, Port, Data, Opts).
|
|
|
|
|
2019-04-01 15:53:28 +02:00
|
|
|
start(SockMod, Socket, Opts) ->
|
|
|
|
esip_socket:start({SockMod, Socket}, Opts).
|
2017-04-30 18:01:47 +02:00
|
|
|
|
2019-04-01 15:53:28 +02:00
|
|
|
start_link(gen_tcp, Sock, Opts) ->
|
2018-09-17 10:21:02 +02:00
|
|
|
esip_socket:start_link(Sock, Opts).
|
|
|
|
|
|
|
|
accept(_) ->
|
|
|
|
ok.
|
2017-04-30 18:01:47 +02:00
|
|
|
|
2017-12-24 10:27:51 +01:00
|
|
|
set_certfile(Opts) ->
|
|
|
|
case lists:keymember(certfile, 1, Opts) of
|
|
|
|
true ->
|
|
|
|
Opts;
|
|
|
|
false ->
|
2018-06-14 13:00:47 +02:00
|
|
|
case ejabberd_pkix:get_certfile(ejabberd_config:get_myname()) of
|
2017-12-24 10:27:51 +01:00
|
|
|
{ok, CertFile} ->
|
|
|
|
[{certfile, CertFile}|Opts];
|
|
|
|
error ->
|
2019-06-14 11:33:26 +02:00
|
|
|
Opts
|
2017-12-24 10:27:51 +01:00
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
2019-06-14 11:33:26 +02:00
|
|
|
listen_opt_type(certfile) ->
|
|
|
|
econf:pem().
|
|
|
|
|
2018-09-18 11:53:36 +02:00
|
|
|
listen_options() ->
|
|
|
|
[{tls, false},
|
|
|
|
{certfile, undefined}].
|
2017-04-30 18:01:47 +02:00
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% Internal functions
|
|
|
|
%%%===================================================================
|
2017-05-23 12:12:48 +02:00
|
|
|
-endif.
|