blob: 3d93feb6cb55d8e7c37cfb5ae2f4b4c69cdf4dac [file] [log] [blame]
Harald Welte5c9f3b52013-07-26 22:40:25 +08001% Osmocom adaptor to interface the M2UA core with osmo_sccp
2
3% (C) 2013 by Harald Welte <laforge@gnumonks.org>
4%
5% All Rights Reserved
6%
7% This program is free software; you can redistribute it and/or modify
8% it under the terms of the GNU Affero General Public License as
9% published by the Free Software Foundation; either version 3 of the
10% License, or (at your option) any later version.
11%
12% This program is distributed in the hope that it will be useful,
13% but WITHOUT ANY WARRANTY; without even the implied warranty of
14% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15% GNU General Public License for more details.
16%
17% You should have received a copy of the GNU Affero General Public License
18% along with this program. If not, see <http://www.gnu.org/licenses/>.
19%
20% Additional Permission under GNU AGPL version 3 section 7:
21%
22% If you modify this Program, or any covered work, by linking or
23% combining it with runtime libraries of Erlang/OTP as released by
24% Ericsson on http://www.erlang.org (or a modified version of these
25% libraries), containing parts covered by the terms of the Erlang Public
26% License (http://www.erlang.org/EPLICENSE), the licensors of this
27% Program grant you additional permission to convey the resulting work
28% without the need to license the runtime libraries of Erlang/OTP under
29% the GNU Affero General Public License. Corresponding Source for a
30% non-source form of such a combination shall include the source code
31% for the parts of the runtime libraries of Erlang/OTP used as well as
32% that of the covered work.
33
34-module(ss7_link_m2ua).
35-author('Harald Welte <laforge@gnumonks.org>').
36-behavior(gen_server).
37
38-include_lib("osmo_ss7/include/osmo_util.hrl").
39-include_lib("osmo_ss7/include/m2ua.hrl").
40-include_lib("osmo_ss7/include/sccp.hrl").
41-include_lib("osmo_ss7/include/osmo_ss7.hrl").
42
43-export([start_link/1, init/1]).
44
Harald Welte0d8af6b2013-07-27 15:02:17 +080045-export([handle_cast/2, terminate/2]).
Harald Welte5c9f3b52013-07-26 22:40:25 +080046
47-record(loop_dat, {
48 m2ua_pid,
49 link
50 }).
51
Harald Welte0d8af6b2013-07-27 15:02:17 +080052start_link(Args = #sigtran_link{name=LinkName}) ->
53 Name = list_to_atom("ss7_link_m2ua_" ++ LinkName),
54 gen_server:start_link({local, Name}, ?MODULE, Args, [{debug, [trace]}]).
Harald Welte5c9f3b52013-07-26 22:40:25 +080055
56init(L = #sigtran_link{type = m2ua, name = Name, linkset_name = LinksetName,
Harald Welte0d8af6b2013-07-27 15:02:17 +080057 sls = Sls, local = Local, remote = Remote, role = Role}) ->
Harald Welte5c9f3b52013-07-26 22:40:25 +080058 #sigtran_peer{ip = LocalIp, port = LocalPort} = Local,
59 #sigtran_peer{ip = RemoteIp, port = RemotePort} = Remote,
60 % start the M2UA link to the SG
Harald Welte0d8af6b2013-07-27 15:02:17 +080061 Opts = [{module, sctp_m2ua}, {module_args, [Role]},
62 {sctp_role, ss7_links:role2sctp_role(Role)},
Harald Welte5c9f3b52013-07-26 22:40:25 +080063 {user_pid, self()}, {sctp_remote_ip, RemoteIp},
64 {sctp_remote_port, RemotePort}, {sctp_local_port, LocalPort},
Harald Welte0d8af6b2013-07-27 15:02:17 +080065 {sctp_local_ip, LocalIp},
Harald Welte5c9f3b52013-07-26 22:40:25 +080066 {user_fun, fun m2ua_tx_to_user/2}, {user_args, self()}],
67 {ok, M2uaPid} = sctp_core:start_link(Opts),
68 % FIXME: register this link with SCCP_SCRC
69 ok = ss7_links:register_link(LinksetName, Sls, Name),
70 {ok, #loop_dat{m2ua_pid = M2uaPid, link = L}}.
71
72% % instantiate SCCP routing instance
73% {ok, ScrcPid} = sccp_scrc:start_link([{mtp_tx_action, {callback_fn, fun scrc_tx_to_mtp/2, M3uaPid}}]),
74% loop(#loop_dat{m2ua_pid = M3uaPid, scrc_pid = ScrcPid}).
75
76
77set_link_state(#sigtran_link{linkset_name = LinksetName, sls = Sls}, State) ->
78 ok = ss7_links:set_link_state(LinksetName, Sls, State).
79
80scrc_tx_to_mtp(Prim, Args) ->
81 M2uaPid = Args,
82 gen_fsm:send_event(M2uaPid, Prim).
83
84% Callback that we pass to the m3ua_core, which it will call when it wants to
85% send a primitive up the stack to SCCP
86m2ua_tx_to_user(P=#primitive{subsystem = 'MTP'}, Args) ->
87 % send it directly to the 'service' that has bound
88 ss7_links:mtp3_rx(P);
89m2ua_tx_to_user(P=#primitive{subsystem = 'M'}, Args) ->
90 % send management primitives into the m2ua_link process
91 UserPid = Args,
92 gen_server:cast(UserPid, P).
93
94handle_cast(P = #primitive{subsystem = 'MTP', gen_name = 'TRANSFER', spec_name = request}, L) ->
95 scrc_tx_to_mtp(P, L#loop_dat.m2ua_pid),
96 {noreply, L};
97% This is what we receive from m2ua_tx_to_user/2
Harald Welte0d8af6b2013-07-27 15:02:17 +080098
Harald Welte5c9f3b52013-07-26 22:40:25 +080099handle_cast(#primitive{subsystem = 'M', gen_name = 'ASP_UP', spec_name = confirm}, L) ->
100 io:format("~p: ASP_UP.ind -> ASP_ACTIVE.req~n", [?MODULE]),
101 set_link_state(L#loop_dat.link, up),
102 gen_fsm:send_event(L#loop_dat.m2ua_pid, osmo_util:make_prim('M','ASP_ACTIVE',request)),
103 {noreply, L};
104handle_cast(#primitive{subsystem = 'M', gen_name = 'ASP_ACTIVE', spec_name = confirm}, L) ->
105 io:format("~p: ASP_ACTIVE.ind - M2UA now active and ready~n", [?MODULE]),
106 set_link_state(L#loop_dat.link, active),
107 %tx_sccp_udt(L#loop_dat.scrc_pid),
108 {noreply, L};
109handle_cast(#primitive{subsystem = 'M', gen_name = 'ASP_DOWN'}, L) ->
110 io:format("~p: ASP_DOWN.ind~n", [?MODULE]),
111 set_link_state(L#loop_dat.link, down),
112 {noreply, L};
113handle_cast(#primitive{subsystem = 'M', gen_name = 'ASP_INACTIVE'}, L) ->
114 io:format("~p: ASP_INACTIVE.ind~n", [?MODULE]),
115 set_link_state(L#loop_dat.link, up),
116 {noreply, L};
117handle_cast(P, L) ->
118 io:format("~p: Ignoring M2UA prim ~p~n", [?MODULE, P]),
119 {noreply, L}.
120
121terminate(Reason, _S) ->
122 io:format("terminating ~p with reason ~p", [?MODULE, Reason]),
123 ok.
124
125tx_sccp_udt(ScrcPid) ->
126 CallingP = #sccp_addr{ssn = ?SCCP_SSN_MSC, point_code = osmo_util:pointcode2int(itu, {1,2,2})},
127 CalledP = #sccp_addr{ssn = ?SCCP_SSN_HLR, point_code = osmo_util:pointcode2int(itu, {1,1,1})},
128 Data = <<1,2,3,4>>,
129 Opts = [{protocol_class, 0}, {called_party_addr, CalledP},
130 {calling_party_addr, CallingP}, {user_data, Data}],
131 io:format("~p: Sending N-UNITDATA.req to SCRC~n", [?MODULE]),
132 gen_fsm:send_event(ScrcPid, osmo_util:make_prim('N','UNITDATA',request,Opts)).
133