2014-05-08 14:08:07 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
2017-01-03 15:58:52 +01:00
|
|
|
%%% File : ejabberd_stun.erl
|
|
|
|
%%% Author : Evgeny Khramtsov <ekhramtsov@process-one.net>
|
|
|
|
%%% Purpose : STUN RFC-5766
|
2014-05-08 14:08:07 +02:00
|
|
|
%%% Created : 8 May 2014 by Evgeny Khramtsov <ekhramtsov@process-one.net>
|
2015-01-21 14:52:37 +01:00
|
|
|
%%%
|
2017-01-03 15:58:52 +01:00
|
|
|
%%%
|
2017-01-02 21:41:53 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2013-2017 ProcessOne
|
2015-01-21 14:52:37 +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.
|
|
|
|
%%%
|
|
|
|
%%% 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
|
|
|
%%%
|
2014-05-08 14:08:07 +02:00
|
|
|
%%%-------------------------------------------------------------------
|
2017-11-10 17:51:22 +01:00
|
|
|
|
2014-05-08 14:08:07 +02:00
|
|
|
-module(ejabberd_stun).
|
|
|
|
|
2015-05-21 17:02:36 +02:00
|
|
|
-protocol({rfc, 5766}).
|
2015-06-22 13:11:11 +02:00
|
|
|
-protocol({xep, 176, '1.0'}).
|
2015-05-21 17:02:36 +02:00
|
|
|
|
2017-05-23 12:12:48 +02:00
|
|
|
-ifndef(STUN).
|
|
|
|
-include("logger.hrl").
|
|
|
|
-export([socket_type/0, start/2, listen_opt_type/1]).
|
|
|
|
log_error() ->
|
|
|
|
?CRITICAL_MSG("ejabberd is not compiled with STUN/TURN support", []).
|
|
|
|
socket_type() ->
|
|
|
|
log_error(),
|
|
|
|
raw.
|
|
|
|
listen_opt_type(_) ->
|
|
|
|
log_error(),
|
|
|
|
[].
|
|
|
|
start(_, _) ->
|
|
|
|
log_error(),
|
|
|
|
{error, sip_not_compiled}.
|
|
|
|
-else.
|
2015-06-01 14:38:27 +02:00
|
|
|
-export([tcp_init/2, udp_init/2, udp_recv/5, start/2,
|
2017-04-30 18:01:47 +02:00
|
|
|
socket_type/0, listen_opt_type/1]).
|
2014-05-08 14:08:07 +02:00
|
|
|
|
|
|
|
-include("ejabberd.hrl").
|
|
|
|
-include("logger.hrl").
|
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% API
|
|
|
|
%%%===================================================================
|
|
|
|
tcp_init(Socket, Opts) ->
|
2016-02-03 11:26:14 +01:00
|
|
|
ejabberd:start_app(stun),
|
2014-05-08 14:08:07 +02:00
|
|
|
stun:tcp_init(Socket, prepare_turn_opts(Opts)).
|
|
|
|
|
|
|
|
udp_init(Socket, Opts) ->
|
2016-02-03 11:26:14 +01:00
|
|
|
ejabberd:start_app(stun),
|
2014-05-08 14:08:07 +02:00
|
|
|
stun:udp_init(Socket, prepare_turn_opts(Opts)).
|
|
|
|
|
|
|
|
udp_recv(Socket, Addr, Port, Packet, Opts) ->
|
|
|
|
stun:udp_recv(Socket, Addr, Port, Packet, Opts).
|
|
|
|
|
|
|
|
start(Opaque, Opts) ->
|
|
|
|
stun:start(Opaque, Opts).
|
|
|
|
|
|
|
|
socket_type() ->
|
|
|
|
raw.
|
|
|
|
|
|
|
|
%%%===================================================================
|
|
|
|
%%% Internal functions
|
|
|
|
%%%===================================================================
|
|
|
|
prepare_turn_opts(Opts) ->
|
|
|
|
UseTurn = proplists:get_bool(use_turn, Opts),
|
|
|
|
prepare_turn_opts(Opts, UseTurn).
|
|
|
|
|
|
|
|
prepare_turn_opts(Opts, _UseTurn = false) ->
|
2017-12-24 10:27:51 +01:00
|
|
|
set_certfile(Opts);
|
2014-05-08 14:08:07 +02:00
|
|
|
prepare_turn_opts(Opts, _UseTurn = true) ->
|
|
|
|
NumberOfMyHosts = length(?MYHOSTS),
|
|
|
|
case proplists:get_value(turn_ip, Opts) of
|
|
|
|
undefined ->
|
|
|
|
?WARNING_MSG("option 'turn_ip' is undefined, "
|
|
|
|
"more likely the TURN relay won't be working "
|
|
|
|
"properly", []);
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end,
|
|
|
|
AuthFun = fun ejabberd_auth:get_password_s/2,
|
2017-05-08 13:34:35 +02:00
|
|
|
Shaper = proplists:get_value(shaper, Opts, none),
|
|
|
|
AuthType = proplists:get_value(auth_type, Opts, user),
|
|
|
|
Realm = case proplists:get_value(auth_realm, Opts) of
|
2014-05-08 14:08:07 +02:00
|
|
|
undefined when AuthType == user ->
|
|
|
|
if NumberOfMyHosts > 1 ->
|
|
|
|
?WARNING_MSG("you have several virtual "
|
|
|
|
"hosts configured, but option "
|
|
|
|
"'auth_realm' is undefined and "
|
|
|
|
"'auth_type' is set to 'user', "
|
|
|
|
"more likely the TURN relay won't "
|
|
|
|
"be working properly. Using ~s as "
|
|
|
|
"a fallback", [?MYNAME]);
|
|
|
|
true ->
|
|
|
|
ok
|
|
|
|
end,
|
|
|
|
[{auth_realm, ?MYNAME}];
|
|
|
|
_ ->
|
|
|
|
[]
|
|
|
|
end,
|
|
|
|
MaxRate = shaper:get_max_rate(Shaper),
|
2017-12-24 10:27:51 +01:00
|
|
|
Opts1 = Realm ++ [{auth_fun, AuthFun},{shaper, MaxRate} |
|
|
|
|
lists:keydelete(shaper, 1, Opts)],
|
|
|
|
set_certfile(Opts1).
|
|
|
|
|
|
|
|
set_certfile(Opts) ->
|
|
|
|
case lists:keymember(certfile, 1, Opts) of
|
|
|
|
true ->
|
|
|
|
Opts;
|
|
|
|
false ->
|
|
|
|
Realm = proplists:get_value(auth_realm, Opts, ?MYNAME),
|
|
|
|
case ejabberd_pkix:get_certfile(Realm) of
|
|
|
|
{ok, CertFile} ->
|
|
|
|
[{certfile, CertFile}|Opts];
|
|
|
|
error ->
|
|
|
|
case ejabberd_config:get_option({domain_certfile, Realm}) of
|
|
|
|
undefined ->
|
|
|
|
Opts;
|
|
|
|
CertFile ->
|
|
|
|
[{certfile, CertFile}|Opts]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end.
|
2017-04-30 18:01:47 +02:00
|
|
|
|
|
|
|
listen_opt_type(use_turn) ->
|
|
|
|
fun(B) when is_boolean(B) -> B end;
|
|
|
|
listen_opt_type(turn_ip) ->
|
|
|
|
fun(S) ->
|
|
|
|
{ok, Addr} = inet_parse:ipv4_address(binary_to_list(S)),
|
|
|
|
Addr
|
|
|
|
end;
|
|
|
|
listen_opt_type(shaper) ->
|
|
|
|
fun acl:shaper_rules_validator/1;
|
|
|
|
listen_opt_type(auth_type) ->
|
|
|
|
fun(anonymous) -> anonymous;
|
|
|
|
(user) -> user
|
|
|
|
end;
|
|
|
|
listen_opt_type(auth_realm) ->
|
|
|
|
fun iolist_to_binary/1;
|
|
|
|
listen_opt_type(tls) ->
|
|
|
|
fun(B) when is_boolean(B) -> B end;
|
|
|
|
listen_opt_type(certfile) ->
|
2017-05-12 15:27:09 +02:00
|
|
|
fun(S) ->
|
2017-12-24 10:27:51 +01:00
|
|
|
%% We cannot deprecate the option for now:
|
|
|
|
%% I think STUN/TURN clients are too stupid to set SNI
|
2017-05-12 15:27:09 +02:00
|
|
|
ejabberd_pkix:add_certfile(S),
|
|
|
|
iolist_to_binary(S)
|
|
|
|
end;
|
2017-04-30 18:01:47 +02:00
|
|
|
listen_opt_type(turn_min_port) ->
|
|
|
|
fun(P) when is_integer(P), P > 0, P =< 65535 -> P end;
|
|
|
|
listen_opt_type(turn_max_port) ->
|
|
|
|
fun(P) when is_integer(P), P > 0, P =< 65535 -> P end;
|
|
|
|
listen_opt_type(turn_max_allocations) ->
|
|
|
|
fun(I) when is_integer(I), I>0 -> I;
|
|
|
|
(unlimited) -> infinity;
|
|
|
|
(infinity) -> infinity
|
|
|
|
end;
|
|
|
|
listen_opt_type(turn_max_permissions) ->
|
|
|
|
fun(I) when is_integer(I), I>0 -> I;
|
|
|
|
(unlimited) -> infinity;
|
|
|
|
(infinity) -> infinity
|
|
|
|
end;
|
|
|
|
listen_opt_type(server_name) ->
|
|
|
|
fun iolist_to_binary/1;
|
|
|
|
listen_opt_type(_) ->
|
|
|
|
[shaper, auth_type, auth_realm, tls, certfile, turn_min_port,
|
|
|
|
turn_max_port, turn_max_allocations, turn_max_permissions,
|
|
|
|
server_name].
|
2017-05-23 12:12:48 +02:00
|
|
|
-endif.
|