blob: d04e4bf2838e92d4da0eb2703e430e3d5db3eb3e [file] [log] [blame]
Harald Weltec6e466e2011-10-10 14:03:50 +02001% Osmocom adaptor to interface the M3UA core with osmo_sccp
2
3% (C) 2011 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/>.
Harald Weltef8bf0322012-04-16 13:10:47 +020019%
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.
Harald Weltec6e466e2011-10-10 14:03:50 +020033
34-module(ss7_link_m3ua).
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/m3ua.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
45-export([handle_cast/2]).
46
47-record(loop_dat, {
48 m3ua_pid,
49 link
50 }).
51
52start_link(Args) ->
53 gen_server:start_link(?MODULE, Args, [{debug, [trace]}]).
54
55init(L = #sigtran_link{type = m3ua, name = Name, linkset_name = LinksetName,
56 sls = Sls, local = Local, remote = Remote}) ->
57 #sigtran_peer{ip = LocalIp, port = LocalPort} = Local,
58 #sigtran_peer{ip = RemoteIp, port = RemotePort} = Remote,
59 % start the M3UA link to the SG
60 Opts = [{user_pid, self()}, {sctp_remote_ip, RemoteIp},
61 {sctp_remote_port, RemotePort}, {sctp_local_port, LocalPort},
62 {user_fun, fun m3ua_tx_to_user/2}, {user_args, self()}],
63 {ok, M3uaPid} = m3ua_core:start_link(Opts),
64 % FIXME: register this link with SCCP_SCRC
65 ok = ss7_links:register_link(LinksetName, Sls, Name),
66 {ok, #loop_dat{m3ua_pid = M3uaPid, link = L}}.
67
68% % instantiate SCCP routing instance
69% {ok, ScrcPid} = sccp_scrc:start_link([{mtp_tx_action, {callback_fn, fun scrc_tx_to_mtp/2, M3uaPid}}]),
70% loop(#loop_dat{m3ua_pid = M3uaPid, scrc_pid = ScrcPid}).
71
72
73set_link_state(#sigtran_link{linkset_name = LinksetName, sls = Sls}, State) ->
74 ok = ss7_links:set_link_state(LinksetName, Sls, State).
75
76scrc_tx_to_mtp(Prim, Args) ->
77 M3uaPid = Args,
78 gen_fsm:send_event(M3uaPid, Prim).
79
80% Callback that we pass to the m3ua_core, which it will call when it wants to
81% send a primitive up the stack to SCCP
Harald Welte7dadde82011-10-19 13:40:39 +020082m3ua_tx_to_user(P=#primitive{subsystem = 'MTP'}, Args) ->
83 % send it directly to the 'service' that has bound
84 ss7_links:mtp3_rx(P);
85m3ua_tx_to_user(P=#primitive{subsystem = 'M'}, Args) ->
86 % send management primitives into the m3ua_link process
Harald Weltec6e466e2011-10-10 14:03:50 +020087 UserPid = Args,
Harald Welte7dadde82011-10-19 13:40:39 +020088 gen_server:cast(UserPid, P).
Harald Weltec6e466e2011-10-10 14:03:50 +020089
90handle_cast(P = #primitive{subsystem = 'MTP', gen_name = 'TRANSFER', spec_name = request}, L) ->
91 scrc_tx_to_mtp(P, L#loop_dat.m3ua_pid),
92 {noreply, L};
93% This is what we receive from m3ua_tx_to_user/2
94handle_cast(#primitive{subsystem = 'M', gen_name = 'SCTP_ESTABLISH', spec_name = confirm}, L) ->
95 io:format("~p: SCTP_ESTABLISH.ind -> ASP_UP.req~n", [?MODULE]),
96 gen_fsm:send_event(L#loop_dat.m3ua_pid, osmo_util:make_prim('M','ASP_UP',request)),
97 {noreply, L};
98handle_cast(#primitive{subsystem = 'M', gen_name = 'ASP_UP', spec_name = confirm}, L) ->
99 io:format("~p: ASP_UP.ind -> ASP_ACTIVE.req~n", [?MODULE]),
100 set_link_state(L#loop_dat.link, up),
101 gen_fsm:send_event(L#loop_dat.m3ua_pid, osmo_util:make_prim('M','ASP_ACTIVE',request)),
102 {noreply, L};
103handle_cast(#primitive{subsystem = 'M', gen_name = 'ASP_ACTIVE', spec_name = confirm}, L) ->
104 io:format("~p: ASP_ACTIVE.ind - M3UA now active and ready~n", [?MODULE]),
105 set_link_state(L#loop_dat.link, active),
106 %tx_sccp_udt(L#loop_dat.scrc_pid),
107 {noreply, L};
108handle_cast(#primitive{subsystem = 'M', gen_name = 'ASP_DOWN'}, L) ->
109 io:format("~p: ASP_DOWN.ind~n", [?MODULE]),
110 set_link_state(L#loop_dat.link, down),
111 {noreply, L};
112handle_cast(#primitive{subsystem = 'M', gen_name = 'ASP_INACTIVE'}, L) ->
Harald Weltef0e315d2011-10-11 18:48:42 +0200113 io:format("~p: ASP_INACTIVE.ind~n", [?MODULE]),
114 set_link_state(L#loop_dat.link, up),
Harald Weltec6e466e2011-10-10 14:03:50 +0200115 {noreply, L};
116handle_cast(P, L) ->
117 io:format("~p: Ignoring M3UA prim ~p~n", [?MODULE, P]),
118 {noreply, L}.
119
120terminate(Reason, _S) ->
121 io:format("terminating ~p with reason ~p", [?MODULE, Reason]),
122 ok.
123
124tx_sccp_udt(ScrcPid) ->
125 CallingP = #sccp_addr{ssn = ?SCCP_SSN_MSC, point_code = osmo_util:pointcode2int(itu, {1,2,2})},
126 CalledP = #sccp_addr{ssn = ?SCCP_SSN_HLR, point_code = osmo_util:pointcode2int(itu, {1,1,1})},
127 Data = <<1,2,3,4>>,
128 Opts = [{protocol_class, 0}, {called_party_addr, CalledP},
129 {calling_party_addr, CallingP}, {user_data, Data}],
130 io:format("~p: Sending N-UNITDATA.req to SCRC~n", [?MODULE]),
131 gen_fsm:send_event(ScrcPid, osmo_util:make_prim('N','UNITDATA',request,Opts)).
132