2010-03-08 13:58:06 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : mod_sic.erl
|
|
|
|
%%% Author : Karim Gemayel <karim.gemayel@process-one.net>
|
|
|
|
%%% Purpose : XEP-0279 Server IP Check
|
|
|
|
%%% Created : 6 Mar 2010 by Karim Gemayel <karim.gemayel@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2017-01-02 21:41:53 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2017 ProcessOne
|
2010-03-08 13:58:06 +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.
|
|
|
|
%%%
|
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.
|
2010-03-08 13:58:06 +01:00
|
|
|
%%%
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(mod_sic).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2015-05-21 17:02:36 +02:00
|
|
|
-protocol({xep, 279, '0.2'}).
|
|
|
|
|
2010-03-08 13:58:06 +01:00
|
|
|
-author('karim.gemayel@process-one.net').
|
|
|
|
|
|
|
|
-behaviour(gen_mod).
|
|
|
|
|
2016-07-30 12:30:29 +02:00
|
|
|
-export([start/2, stop/1, process_local_iq/1,
|
|
|
|
process_sm_iq/1, mod_opt_type/1, depends/2]).
|
2010-03-08 13:58:06 +01:00
|
|
|
|
|
|
|
-include("ejabberd.hrl").
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("logger.hrl").
|
2016-07-30 12:30:29 +02:00
|
|
|
-include("xmpp.hrl").
|
2010-03-08 13:58:06 +01:00
|
|
|
|
|
|
|
start(Host, Opts) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
IQDisc = gen_mod:get_opt(iqdisc, Opts, fun gen_iq_handler:check_type/1,
|
|
|
|
one_queue),
|
2016-07-30 12:30:29 +02:00
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_local, Host, ?NS_SIC_0,
|
|
|
|
?MODULE, process_local_iq, IQDisc),
|
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_sm, Host, ?NS_SIC_0,
|
|
|
|
?MODULE, process_sm_iq, IQDisc),
|
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_local, Host, ?NS_SIC_1,
|
|
|
|
?MODULE, process_local_iq, IQDisc),
|
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_sm, Host, ?NS_SIC_1,
|
|
|
|
?MODULE, process_sm_iq, IQDisc).
|
2010-03-08 13:58:06 +01:00
|
|
|
|
|
|
|
stop(Host) ->
|
2016-07-30 12:30:29 +02:00
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_local, Host, ?NS_SIC_0),
|
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_sm, Host, ?NS_SIC_0),
|
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_local, Host, ?NS_SIC_1),
|
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_sm, Host, ?NS_SIC_1).
|
2010-03-08 13:58:06 +01:00
|
|
|
|
2016-07-06 13:58:48 +02:00
|
|
|
depends(_Host, _Opts) ->
|
|
|
|
[].
|
|
|
|
|
2016-07-30 12:30:29 +02:00
|
|
|
process_local_iq(#iq{from = #jid{user = User, server = Server,
|
|
|
|
resource = Resource},
|
|
|
|
type = get} = IQ) ->
|
2010-03-08 13:58:06 +01:00
|
|
|
get_ip({User, Server, Resource}, IQ);
|
2016-07-30 12:30:29 +02:00
|
|
|
process_local_iq(#iq{type = set, lang = Lang} = IQ) ->
|
2016-03-31 10:00:29 +02:00
|
|
|
Txt = <<"Value 'set' of 'type' attribute is not allowed">>,
|
2016-07-30 12:30:29 +02:00
|
|
|
xmpp:make_error(IQ, xmpp:err_not_allowed(Txt, Lang)).
|
2010-03-08 13:58:06 +01:00
|
|
|
|
2016-07-30 12:30:29 +02:00
|
|
|
process_sm_iq(#iq{from = #jid{user = User, server = Server,
|
|
|
|
resource = Resource},
|
|
|
|
to = #jid{user = User, server = Server},
|
|
|
|
type = get} = IQ) ->
|
2010-03-08 13:58:06 +01:00
|
|
|
get_ip({User, Server, Resource}, IQ);
|
2016-07-30 12:30:29 +02:00
|
|
|
process_sm_iq(#iq{type = get, lang = Lang} = IQ) ->
|
2016-03-31 10:00:29 +02:00
|
|
|
Txt = <<"Query to another users is forbidden">>,
|
2016-07-30 12:30:29 +02:00
|
|
|
xmpp:make_error(IQ, xmpp:err_forbidden(Txt, Lang));
|
|
|
|
process_sm_iq(#iq{type = set, lang = Lang} = IQ) ->
|
2016-03-31 10:00:29 +02:00
|
|
|
Txt = <<"Value 'set' of 'type' attribute is not allowed">>,
|
2016-07-30 12:30:29 +02:00
|
|
|
xmpp:make_error(IQ, xmpp:err_not_allowed(Txt, Lang)).
|
2010-03-08 13:58:06 +01:00
|
|
|
|
|
|
|
get_ip({User, Server, Resource},
|
2016-07-30 12:30:29 +02:00
|
|
|
#iq{lang = Lang, sub_els = [#sic{xmlns = NS}]} = IQ) ->
|
2010-03-08 13:58:06 +01:00
|
|
|
case ejabberd_sm:get_user_ip(User, Server, Resource) of
|
2016-07-30 12:30:29 +02:00
|
|
|
{IP, Port} when is_tuple(IP) ->
|
|
|
|
Result = case NS of
|
|
|
|
?NS_SIC_0 -> #sic{ip = IP, xmlns = NS};
|
|
|
|
?NS_SIC_1 -> #sic{ip = IP, port = Port, xmlns = NS}
|
|
|
|
end,
|
|
|
|
xmpp:make_iq_result(IQ, Result);
|
|
|
|
_ ->
|
|
|
|
Txt = <<"User session not found">>,
|
|
|
|
xmpp:make_error(IQ, xmpp:err_item_not_found(Txt, Lang))
|
2010-03-08 13:58:06 +01:00
|
|
|
end.
|
2015-06-01 14:38:27 +02:00
|
|
|
|
|
|
|
mod_opt_type(iqdisc) -> fun gen_iq_handler:check_type/1;
|
|
|
|
mod_opt_type(_) -> [iqdisc].
|