blob: 6c4f30e767c494e574396f9259e87de933c2decd [file] [log] [blame]
Harald Welteae026692017-12-09 01:03:01 +01001module BSSAP_Adapter {
Harald Welte28d943e2017-11-25 15:00:50 +01002
Harald Welteae026692017-12-09 01:03:01 +01003/* This module implements a 'dumb' BSSAP adapter. It creates the M3UA and SCCP components and stacks a BSSAP
4 * codec port on top. As a result, it provides the ability to transceive SCCP-User-SAP primitives with
5 * deoded BSSAP payload. Use this if you want to have full control about what you transmit or receive,
6 * without any automatisms in place. Allows you to refuse connections or other abnormal behavior. */
Harald Welte28d943e2017-11-25 15:00:50 +01007
Harald Welteae026692017-12-09 01:03:01 +01008import from General_Types all;
9import from Osmocom_Types all;
10
11import from M3UA_Types all;
12import from M3UA_Emulation all;
13import from MTP3asp_Types all;
14import from MTP3asp_PortType all;
Harald Welte28d943e2017-11-25 15:00:50 +010015
16import from SCCP_Types all;
17import from SCCPasp_Types all;
18import from SCCP_Emulation all;
19
Harald Welteae026692017-12-09 01:03:01 +010020import from SCTPasp_Types all;
21import from SCTPasp_PortType all;
Harald Welte28d943e2017-11-25 15:00:50 +010022
Harald Welteae026692017-12-09 01:03:01 +010023import from BSSAP_CodecPort all;
Harald Welte28d943e2017-11-25 15:00:50 +010024import from BSSMAP_Templates all;
Harald Welte624f9632017-12-16 19:26:04 +010025import from BSSMAP_Emulation all;
26
Harald Weltea4ca4462018-02-09 00:17:14 +010027type record BSSAP_Adapter {
Harald Welte28d943e2017-11-25 15:00:50 +010028 /* component references */
Harald Weltea4ca4462018-02-09 00:17:14 +010029 M3UA_CT vc_M3UA,
30 SCCP_CT vc_SCCP,
Harald Welteae026692017-12-09 01:03:01 +010031
Harald Weltea4ca4462018-02-09 00:17:14 +010032 MSC_SCCP_MTP3_parameters sccp_pars,
33 SCCP_PAR_Address sccp_addr_own,
34 SCCP_PAR_Address sccp_addr_peer,
Harald Welte624f9632017-12-16 19:26:04 +010035
36 /* handler mode */
Harald Weltea4ca4462018-02-09 00:17:14 +010037 BSSMAP_Emulation_CT vc_BSSMAP
Harald Welte28d943e2017-11-25 15:00:50 +010038}
39
Harald Weltea4ca4462018-02-09 00:17:14 +010040type record BSSAP_Configuration {
41 charstring sccp_service_type,
42 SCTP_Association_Address sctp_addr,
43 integer own_pc,
44 integer own_ssn,
45 integer peer_pc,
46 integer peer_ssn,
Philipp Maier75932982018-03-27 14:52:35 +020047 octetstring sio,
48 integer rctx
Harald Weltea4ca4462018-02-09 00:17:14 +010049};
Harald Welte28d943e2017-11-25 15:00:50 +010050
Harald Welteae026692017-12-09 01:03:01 +010051/* construct a SCCP_PAR_Address with just PC + SSN and no GT */
Harald Weltea4ca4462018-02-09 00:17:14 +010052template (value) SCCP_PAR_Address ts_SccpAddr_PC_SSN(integer pc, integer ssn, octetstring sio,
53 charstring sccp_srv_type) := {
Harald Welteae026692017-12-09 01:03:01 +010054 addressIndicator := {
55 pointCodeIndic := '1'B,
56 ssnIndicator := '1'B,
57 globalTitleIndic := '0000'B,
58 routingIndicator := '1'B
59 },
Harald Weltea4ca4462018-02-09 00:17:14 +010060 signPointCode := SCCP_SPC_int2bit(pc, sccp_srv_type, sio),
Harald Welteae026692017-12-09 01:03:01 +010061 subsystemNumber := ssn,
62 globalTitle := omit
63}
64
Harald Weltea4ca4462018-02-09 00:17:14 +010065private function init_pars(inout BSSAP_Adapter ba, in BSSAP_Configuration cfg) {
66 ba.sccp_pars := {
Harald Welteae026692017-12-09 01:03:01 +010067 sio := {
Harald Weltea4ca4462018-02-09 00:17:14 +010068 ni := substr(oct2bit(cfg.sio),0,2),
69 prio := substr(oct2bit(cfg.sio),2,2),
70 si := substr(oct2bit(cfg.sio),4,4)
Harald Welteae026692017-12-09 01:03:01 +010071 },
Harald Weltea4ca4462018-02-09 00:17:14 +010072 opc := cfg.own_pc,
73 dpc := cfg.peer_pc,
Harald Welteae026692017-12-09 01:03:01 +010074 sls := 0,
Harald Weltea4ca4462018-02-09 00:17:14 +010075 sccp_serviceType := cfg.sccp_service_type,
76 ssn := cfg.own_ssn
Harald Welteae026692017-12-09 01:03:01 +010077 };
Harald Weltea4ca4462018-02-09 00:17:14 +010078 ba.sccp_addr_own := valueof(ts_SccpAddr_PC_SSN(cfg.own_pc, cfg.own_ssn, cfg.sio, cfg.sccp_service_type));
79 ba.sccp_addr_peer := valueof(ts_SccpAddr_PC_SSN(cfg.peer_pc, cfg.peer_ssn, cfg.sio, cfg.sccp_service_type));
Harald Welteae026692017-12-09 01:03:01 +010080}
81
82
Harald Weltea4ca4462018-02-09 00:17:14 +010083function f_bssap_init(inout BSSAP_Adapter ba, in BSSAP_Configuration cfg, charstring id,
84 template BssmapOps ops) {
85 init_pars(ba, cfg);
86 ops.sccp_addr_local := ba.sccp_addr_own;
87 ops.sccp_addr_peer := ba.sccp_addr_peer;
Harald Welteae026692017-12-09 01:03:01 +010088
Harald Welte28d943e2017-11-25 15:00:50 +010089 /* create components */
Harald Weltea4ca4462018-02-09 00:17:14 +010090 ba.vc_M3UA := M3UA_CT.create(id & "-M3UA");
91 ba.vc_SCCP := SCCP_CT.create(id & "-SCCP");
Harald Welte67089ee2018-01-17 22:19:03 +010092 if (isvalue(ops)) {
Harald Weltea4ca4462018-02-09 00:17:14 +010093 ba.vc_BSSMAP := BSSMAP_Emulation_CT.create(id & "-BSSMAP");
Harald Welte624f9632017-12-16 19:26:04 +010094 }
Harald Welte28d943e2017-11-25 15:00:50 +010095
Harald Weltea4ca4462018-02-09 00:17:14 +010096 map(ba.vc_M3UA:SCTP_PORT, system:sctp);
Harald Welte28d943e2017-11-25 15:00:50 +010097
Harald Welteae026692017-12-09 01:03:01 +010098 /* connect MTP3 service provider (M3UA) to lower side of SCCP */
Harald Weltea4ca4462018-02-09 00:17:14 +010099 connect(ba.vc_M3UA:MTP3_SP_PORT, ba.vc_SCCP:MTP3_SCCP_PORT);
Harald Welte28d943e2017-11-25 15:00:50 +0100100
Philipp Maier75932982018-03-27 14:52:35 +0200101 ba.vc_M3UA.start(f_M3UA_Emulation(cfg.sctp_addr, cfg.rctx));
Harald Weltea4ca4462018-02-09 00:17:14 +0100102 ba.vc_SCCP.start(SCCPStart(ba.sccp_pars));
Harald Welteb0ec4ee2018-01-21 13:53:17 +0100103
Harald Welte67089ee2018-01-17 22:19:03 +0100104 if (isvalue(ops)) {
Harald Welteb0ec4ee2018-01-21 13:53:17 +0100105 timer T := 5.0;
106 T.start;
Harald Weltea4ca4462018-02-09 00:17:14 +0100107 //T.timeout;
108 log("Connecting BSSMAP Emulation to SCCP_SP_PORT and starting emulation");
Harald Welteb0ec4ee2018-01-21 13:53:17 +0100109 /* connect BSSNAP component to upposer side of SCCP */
Harald Weltea4ca4462018-02-09 00:17:14 +0100110 connect(ba.vc_BSSMAP:BSSAP, ba.vc_SCCP:SCCP_SP_PORT);
Harald Welteb0ec4ee2018-01-21 13:53:17 +0100111 /* start the BSSMAP emulation */
Harald Weltea4ca4462018-02-09 00:17:14 +0100112 ba.vc_BSSMAP.start(BSSMAP_Emulation.main(valueof(ops), ""));
Harald Welteae026692017-12-09 01:03:01 +0100113 }
114}
115
116
Harald Welte28d943e2017-11-25 15:00:50 +0100117}