blob: 95fba70a354c5077a958cc7eada90e882b7174de [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/>.
19
20-module(ss7_link_m3ua).
21-author('Harald Welte <laforge@gnumonks.org>').
22-behavior(gen_server).
23
24-include_lib("osmo_ss7/include/osmo_util.hrl").
25-include_lib("osmo_ss7/include/m3ua.hrl").
26-include_lib("osmo_ss7/include/sccp.hrl").
27-include_lib("osmo_ss7/include/osmo_ss7.hrl").
28
29-export([start_link/1, init/1]).
30
31-export([handle_cast/2]).
32
33-record(loop_dat, {
34 m3ua_pid,
35 link
36 }).
37
38start_link(Args) ->
39 gen_server:start_link(?MODULE, Args, [{debug, [trace]}]).
40
41init(L = #sigtran_link{type = m3ua, name = Name, linkset_name = LinksetName,
42 sls = Sls, local = Local, remote = Remote}) ->
43 #sigtran_peer{ip = LocalIp, port = LocalPort} = Local,
44 #sigtran_peer{ip = RemoteIp, port = RemotePort} = Remote,
45 % start the M3UA link to the SG
46 Opts = [{user_pid, self()}, {sctp_remote_ip, RemoteIp},
47 {sctp_remote_port, RemotePort}, {sctp_local_port, LocalPort},
48 {user_fun, fun m3ua_tx_to_user/2}, {user_args, self()}],
49 {ok, M3uaPid} = m3ua_core:start_link(Opts),
50 % FIXME: register this link with SCCP_SCRC
51 ok = ss7_links:register_link(LinksetName, Sls, Name),
52 {ok, #loop_dat{m3ua_pid = M3uaPid, link = L}}.
53
54% % instantiate SCCP routing instance
55% {ok, ScrcPid} = sccp_scrc:start_link([{mtp_tx_action, {callback_fn, fun scrc_tx_to_mtp/2, M3uaPid}}]),
56% loop(#loop_dat{m3ua_pid = M3uaPid, scrc_pid = ScrcPid}).
57
58
59set_link_state(#sigtran_link{linkset_name = LinksetName, sls = Sls}, State) ->
60 ok = ss7_links:set_link_state(LinksetName, Sls, State).
61
62scrc_tx_to_mtp(Prim, Args) ->
63 M3uaPid = Args,
64 gen_fsm:send_event(M3uaPid, Prim).
65
66% Callback that we pass to the m3ua_core, which it will call when it wants to
67% send a primitive up the stack to SCCP
Harald Welte7dadde82011-10-19 13:40:39 +020068m3ua_tx_to_user(P=#primitive{subsystem = 'MTP'}, Args) ->
69 % send it directly to the 'service' that has bound
70 ss7_links:mtp3_rx(P);
71m3ua_tx_to_user(P=#primitive{subsystem = 'M'}, Args) ->
72 % send management primitives into the m3ua_link process
Harald Weltec6e466e2011-10-10 14:03:50 +020073 UserPid = Args,
Harald Welte7dadde82011-10-19 13:40:39 +020074 gen_server:cast(UserPid, P).
Harald Weltec6e466e2011-10-10 14:03:50 +020075
76handle_cast(P = #primitive{subsystem = 'MTP', gen_name = 'TRANSFER', spec_name = request}, L) ->
77 scrc_tx_to_mtp(P, L#loop_dat.m3ua_pid),
78 {noreply, L};
79% This is what we receive from m3ua_tx_to_user/2
80handle_cast(#primitive{subsystem = 'M', gen_name = 'SCTP_ESTABLISH', spec_name = confirm}, L) ->
81 io:format("~p: SCTP_ESTABLISH.ind -> ASP_UP.req~n", [?MODULE]),
82 gen_fsm:send_event(L#loop_dat.m3ua_pid, osmo_util:make_prim('M','ASP_UP',request)),
83 {noreply, L};
84handle_cast(#primitive{subsystem = 'M', gen_name = 'ASP_UP', spec_name = confirm}, L) ->
85 io:format("~p: ASP_UP.ind -> ASP_ACTIVE.req~n", [?MODULE]),
86 set_link_state(L#loop_dat.link, up),
87 gen_fsm:send_event(L#loop_dat.m3ua_pid, osmo_util:make_prim('M','ASP_ACTIVE',request)),
88 {noreply, L};
89handle_cast(#primitive{subsystem = 'M', gen_name = 'ASP_ACTIVE', spec_name = confirm}, L) ->
90 io:format("~p: ASP_ACTIVE.ind - M3UA now active and ready~n", [?MODULE]),
91 set_link_state(L#loop_dat.link, active),
92 %tx_sccp_udt(L#loop_dat.scrc_pid),
93 {noreply, L};
94handle_cast(#primitive{subsystem = 'M', gen_name = 'ASP_DOWN'}, L) ->
95 io:format("~p: ASP_DOWN.ind~n", [?MODULE]),
96 set_link_state(L#loop_dat.link, down),
97 {noreply, L};
98handle_cast(#primitive{subsystem = 'M', gen_name = 'ASP_INACTIVE'}, L) ->
Harald Weltef0e315d2011-10-11 18:48:42 +020099 io:format("~p: ASP_INACTIVE.ind~n", [?MODULE]),
100 set_link_state(L#loop_dat.link, up),
Harald Weltec6e466e2011-10-10 14:03:50 +0200101 {noreply, L};
102handle_cast(P, L) ->
103 io:format("~p: Ignoring M3UA prim ~p~n", [?MODULE, P]),
104 {noreply, L}.
105
106terminate(Reason, _S) ->
107 io:format("terminating ~p with reason ~p", [?MODULE, Reason]),
108 ok.
109
110tx_sccp_udt(ScrcPid) ->
111 CallingP = #sccp_addr{ssn = ?SCCP_SSN_MSC, point_code = osmo_util:pointcode2int(itu, {1,2,2})},
112 CalledP = #sccp_addr{ssn = ?SCCP_SSN_HLR, point_code = osmo_util:pointcode2int(itu, {1,1,1})},
113 Data = <<1,2,3,4>>,
114 Opts = [{protocol_class, 0}, {called_party_addr, CalledP},
115 {calling_party_addr, CallingP}, {user_data, Data}],
116 io:format("~p: Sending N-UNITDATA.req to SCRC~n", [?MODULE]),
117 gen_fsm:send_event(ScrcPid, osmo_util:make_prim('N','UNITDATA',request,Opts)).
118