blob: 1f602b93159eff8c5e5883fd5e25f51576ebab9a [file] [log] [blame]
Harald Welte643e2a62017-11-27 15:03:18 +01001module RSL_Types {
2
Vadim Yanitskiyc06688e2020-05-06 15:22:45 +07003/* RSL types defining abstract TTCN-3 data types for the A-bis RSL protocol.
Harald Welte35bb7162018-01-03 21:07:52 +01004 *
5 * RSL is a 3GPP standard protocol used between BTS and BSC in a GSM network.
6 *
7 * (C) 2017 by Harald Welte <laforge@gnumonks.org>
8 * All rights reserved.
9 *
10 * Released under the terms of GNU General Public License, Version 2 or
11 * (at your option) any later version.
Harald Welte34b5a952019-05-27 11:54:11 +020012 *
13 * SPDX-License-Identifier: GPL-2.0-or-later
Harald Welte35bb7162018-01-03 21:07:52 +010014 */
15
Harald Welte643e2a62017-11-27 15:03:18 +010016 import from General_Types all;
17 import from Osmocom_Types all;
Vadim Yanitskiye02dbcc2020-08-25 04:20:51 +070018 import from GSM_RR_Types all;
Harald Welte643e2a62017-11-27 15:03:18 +010019 import from GSM_Types all;
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +070020 import from MobileL3_CommonIE_Types all;
21 import from L3_Templates all;
Harald Welte643e2a62017-11-27 15:03:18 +010022
23 /* Section 9.1 */
24 type enumerated RSL_MessageGroup {
25 RSL_MDISC_RESERVED ('0000000'B),
26 RSL_MDISC_RLL ('0000001'B),
27 RSL_MDISC_DCHAN ('0000100'B),
28 RSL_MDISC_CCHAN ('0000110'B),
29 RSL_MDISC_TRX_MGMT ('0001000'B),
30 RSL_MDISC_LCS ('0010000'B),
31 RSL_MDISC_IPACCESS ('0111111'B)
32 } with { variant "FIELDLENGTH(7)" };
33
34 /* Section 9.1 */
35 type record RSL_MessageDiscriminator {
36 RSL_MessageGroup msg_group,
37 boolean transparent
38 } with { variant "FIELDORDER(msb)" };
39
Harald Welteefa7d912018-04-18 23:22:15 +020040 template (value) RSL_MessageDiscriminator ts_RSL_MsgDisc(RSL_MessageGroup mg, boolean t := true) := {
Harald Welte643e2a62017-11-27 15:03:18 +010041 msg_group := mg,
42 transparent := t
43 }
Harald Welteefa7d912018-04-18 23:22:15 +020044 template RSL_MessageDiscriminator tr_RSL_MsgDisc(template RSL_MessageGroup mg, boolean t := true) := {
45 msg_group := mg,
46 transparent := t
47 }
48
Harald Welte643e2a62017-11-27 15:03:18 +010049
50 /* Section 9.2 */
51 type enumerated RSL_MessageType {
52 /* Radio Link Layer Management */
53 RSL_MT_DATA_REQ ('00000001'B),
54 RSL_MT_DATA_IND ('00000010'B),
55 RSL_MT_ERROR_IND ('00000011'B),
56 RSL_MT_EST_REQ ('00000100'B),
57 RSL_MT_EST_CONF ('00000101'B),
58 RSL_MT_EST_IND ('00000110'B),
59 RSL_MT_REL_REQ ('00000111'B),
60 RSL_MT_REL_CONF ('00001000'B),
61 RSL_MT_REL_IND ('00001001'B),
62 RSL_MT_UNIT_DATA_REQ ('00001010'B),
63 RSL_MT_UNIT_DATA_IND ('00001011'B),
64
65 /* non-standard below */
66 RSL_MT_SUSP_REQ ('00001100'B),
67 RSL_MT_SUSP_CONF ('00001101'B),
68 RSL_MT_RES_REQ ('00001110'B),
69 RSL_MT_RECON_REQ ('00001111'B),
70
71 /* Common Channel Management / TRX Management */
72 RSL_MT_BCCH_INFO ('00010001'B),
Harald Welte319be822017-12-07 17:50:26 +010073 RSL_MT_CCCH_LOAD_IND ('00010010'B),
74 RSL_MT_CHAN_RQD ('00010011'B),
75 RSL_MT_DELETE_IND ('00010100'B),
76 RSL_MT_PAGING_CMD ('00010101'B),
77 RSL_MT_IMMEDIATE_ASSIGN_CMD ('00010110'B),
78 RSL_MT_SMS_BC_REQ ('00010111'B),
79 RSL_MT_CHAN_CONF ('00011000'B), /* non-standard element */
Harald Welte643e2a62017-11-27 15:03:18 +010080 /* empty */
81 RSL_MT_RF_RES_IND ('00011001'B),
Harald Welte319be822017-12-07 17:50:26 +010082 RSL_MT_SACCH_FILL ('00011010'B),
83 RSL_MT_OVERLOAD ('00011011'B),
84 RSL_MT_ERROR_REPORT ('00011100'B),
85 RSL_MT_SMS_BC_CMD ('00011101'B),
86 RSL_MT_CBCH_LOAD_IND ('00011110'B),
87 RSL_MT_NOT_CMD ('00011111'B),
Harald Welte643e2a62017-11-27 15:03:18 +010088
89 /* Dedicate Channel Management */
90 RSL_MT_CHAN_ACTIV ('00100001'B),
Harald Welte319be822017-12-07 17:50:26 +010091 RSL_MT_CHAN_ACTIV_ACK ('00100010'B),
92 RSL_MT_CHAN_ACTIV_NACK ('00100011'B),
93 RSL_MT_CONN_FAIL ('00100100'B),
94 RSL_MT_DEACTIVATE_SACCH ('00100101'B),
95 RSL_MT_ENCR_CMD ('00100110'B),
96 RSL_MT_HANDO_DET ('00100111'B),
97 RSL_MT_MEAS_RES ('00101000'B),
98 RSL_MT_MODE_MODIFY_REQ ('00101001'B),
99 RSL_MT_MODE_MODIFY_ACK ('00101010'B),
100 RSL_MT_MODE_MODIFY_NACK ('00101011'B),
101 RSL_MT_PHY_CONTEXT_REQ ('00101100'B),
102 RSL_MT_PHY_CONTEXT_CONF ('00101101'B),
103 RSL_MT_RF_CHAN_REL ('00101110'B),
104 RSL_MT_MS_POWER_CONTROL ('00101111'B),
105 RSL_MT_BS_POWER_CONTROL ('00110000'B), /* 0x30 */
106 RSL_MT_PREPROC_CONFIG ('00110001'B),
107 RSL_MT_PREPROC_MEAS_RES ('00110010'B),
108 RSL_MT_RF_CHAN_REL_ACK ('00110011'B),
109 RSL_MT_SACCH_INFO_MODIFY('00110100'B),
110 RSL_MT_TALKER_DET ('00110101'B),
111 RSL_MT_LISTENER_DET ('00110110'B),
112 RSL_MT_REMOTE_CODEC_CONF_REP ('00110111'B),
113 RSL_MT_RTD_REP ('00111000'B),
114 RSL_MT_PRE_HANDO_NOTIF ('00111001'B),
115 RSL_MT_MR_CODEC_MOD_REQ ('00111010'B),
116 RSL_MT_MR_CODEC_MOD_ACK ('00111011'B),
117 RSL_MT_MR_CODEC_MOD_NACK ('00111100'B),
118 RSL_MT_MR_CODEC_MOD_PER ('00111101'B),
119 RSL_MT_TFO_REP ('00111110'B),
120 RSL_MT_TFO_MOD_REQ ('00111111'B), /* 0x3f */
Harald Welte643e2a62017-11-27 15:03:18 +0100121
122 RSL_MT_LOCATION_INFO ('01000001'B),
123
124 /* ip.access specific RSL message types */
125 RSL_MT_IPAC_DIR_RETR_ENQ ('01000000'B),
126
127 RSL_MT_IPAC_PDCH_ACT ('01001000'B),
Harald Welte319be822017-12-07 17:50:26 +0100128 RSL_MT_IPAC_PDCH_ACT_ACK ('01001001'B),
129 RSL_MT_IPAC_PDCH_ACT_NACK ('01001010'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100130 RSL_MT_IPAC_PDCH_DEACT ('01001011'B),
Harald Welte319be822017-12-07 17:50:26 +0100131 RSL_MT_IPAC_PDCH_DEACT_ACK ('01001100'B),
132 RSL_MT_IPAC_PDCH_DEACT_NACK ('01001101'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100133
134 RSL_MT_IPAC_CONNECT_MUX ('01010000'B),
Harald Weltef3075002017-12-16 22:31:41 +0100135 RSL_MT_IPAC_CONNECT_MUX_ACK ('01010001'B),
136 RSL_MT_IPAC_CONNECT_MUX_NACK ('01010010'B),
137 RSL_MT_IPAC_BIND_MUX ('01010011'B),
138 RSL_MT_IPAC_BIND_MUX_ACK ('01010100'B),
139 RSL_MT_IPAC_BIND_MUX_NACK ('01010101'B),
140 RSL_MT_IPAC_DISC_MUX ('01010110'B),
141 RSL_MT_IPAC_DISC_MUX_ACK ('01010111'B),
142 RSL_MT_IPAC_DISC_MUX_NACK ('01011000'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100143 RSL_MT_IPAC_MEAS_PREPROC_DFT ('01100000'B),
Harald Weltef3075002017-12-16 22:31:41 +0100144 RSL_MT_IPAC_HO_CAN_ENQ ('01100001'B),
145 RSL_MT_IPAC_HO_CAN_RES ('01100010'B),
146 RSL_MT_IPAC_CRCX ('01110000'B),
147 RSL_MT_IPAC_CRCX_ACK ('01110001'B),
148 RSL_MT_IPAC_CRCX_NACK ('01110010'B),
149 RSL_MT_IPAC_MDCX ('01110011'B),
150 RSL_MT_IPAC_MDCX_ACK ('01110100'B),
151 RSL_MT_IPAC_MDCX_NACK ('01110101'B),
152 RSL_MT_IPAC_DLCX_IND ('01110110'B),
153 RSL_MT_IPAC_DLCX ('01110111'B),
154 RSL_MT_IPAC_DLCX_ACK ('01111000'B),
Harald Welte908ce542019-09-04 23:05:40 +0200155 RSL_MT_IPAC_DLCX_NACK ('01111001'B),
156
157 RSL_MT_OSMO_ETWS_CMD ('01111111'B)
Harald Welte643e2a62017-11-27 15:03:18 +0100158 } with { variant "FIELDLENGTH(8)" };
159
160 /*! RSL Information Element Identifiers (Chapter 9.3) */
161 type enumerated RSL_IE_Type {
162 RSL_IE_CHAN_NR ('00000001'B),
Harald Welte319be822017-12-07 17:50:26 +0100163 RSL_IE_LINK_IDENT ('00000010'B),
164 RSL_IE_ACT_TYPE ('00000011'B),
165 RSL_IE_BS_POWER ('00000100'B),
166 RSL_IE_CHAN_IDENT ('00000101'B),
167 RSL_IE_CHAN_MODE ('00000110'B),
168 RSL_IE_ENCR_INFO ('00000111'B),
169 RSL_IE_FRAME_NUMBER ('00001000'B),
170 RSL_IE_HANDO_REF ('00001001'B),
171 RSL_IE_L1_INFO ('00001010'B),
172 RSL_IE_L3_INFO ('00001011'B),
173 RSL_IE_MS_IDENTITY ('00001100'B),
174 RSL_IE_MS_POWER ('00001101'B),
175 RSL_IE_PAGING_GROUP ('00001110'B),
176 RSL_IE_PAGING_LOAD ('00001111'B),
177 RSL_IE_PYHS_CONTEXT ('00010000'B),
178 RSL_IE_ACCESS_DELAY ('00010001'B),
179 RSL_IE_RACH_LOAD ('00010010'B),
180 RSL_IE_REQ_REFERENCE ('00010011'B),
181 RSL_IE_RELEASE_MODE ('00010100'B),
182 RSL_IE_RESOURCE_INFO ('00010101'B),
183 RSL_IE_RLM_CAUSE ('00010110'B),
184 RSL_IE_STARTNG_TIME ('00010111'B),
185 RSL_IE_TIMING_ADVANCE ('00011000'B),
186 RSL_IE_UPLINK_MEAS ('00011001'B),
187 RSL_IE_CAUSE ('00011010'B),
188 RSL_IE_MEAS_RES_NR ('00011011'B),
189 RSL_IE_MSG_ID ('00011100'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100190 /* reserved */
191 RSL_IE_SYSINFO_TYPE ('00011110'B),
Harald Welte319be822017-12-07 17:50:26 +0100192 RSL_IE_MS_POWER_PARAM ('00011111'B),
193 RSL_IE_BS_POWER_PARAM ('00100000'B),
194 RSL_IE_PREPROC_PARAM ('00100001'B),
195 RSL_IE_PREPROC_MEAS ('00100010'B),
196 RSL_IE_IMM_ASS_INFO ('00100011'B),/* Phase 1 (3.6.0), later Full below */
197 RSL_IE_SMSCB_INFO ('00100100'B),
198 RSL_IE_MS_TIMING_OFFSET ('00100101'B),
199 RSL_IE_ERR_MSG ('00100110'B),
200 RSL_IE_FULL_BCCH_INFO ('00100111'B),
201 RSL_IE_CHAN_NEEDED ('00101000'B),
202 RSL_IE_CB_CMD_TYPE ('00101001'B),
203 RSL_IE_SMSCB_MSG ('00101010'B),
204 RSL_IE_FULL_IMM_ASS_INFO ('00101011'B),
205 RSL_IE_SACCH_INFO ('00101100'B),
206 RSL_IE_CBCH_LOAD_INFO ('00101101'B),
207 RSL_IE_SMSCB_CHAN_INDICATOR ('00101110'B),
208 RSL_IE_GROUP_CALL_REF ('00101111'B),
209 RSL_IE_CHAN_DESC ('00110000'B),
210 RSL_IE_NCH_DRX_INFO ('00110001'B),
211 RSL_IE_CMD_INDICATOR ('00110010'B),
212 RSL_IE_EMLPP_PRIO ('00110011'B),
213 RSL_IE_UIC ('00110100'B),
214 RSL_IE_MAIN_CHAN_REF ('00110101'B),
215 RSL_IE_MR_CONFIG ('00110110'B),
216 RSL_IE_MR_CONTROL ('00110111'B),
217 RSL_IE_SUP_CODEC_TYPES ('00111000'B),
218 RSL_IE_CODEC_CONFIG ('00111001'B),
219 RSL_IE_RTD ('00111010'B),
220 RSL_IE_TFO_STATUS ('00111011'B),
221 RSL_IE_LLP_APDU ('00111100'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100222
Vadim Yanitskiy1f532152021-11-01 20:37:56 +0300223 RSL_IE_OSMO_REP_ACCH_CAP ('01100000'B),
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +0000224 RSL_IE_OSMO_TRAINING_SEQUENCE ('01100001'B),
Vadim Yanitskiya203d3b2021-11-01 21:32:31 +0300225 RSL_IE_OSMO_TOP_ACCH_CAP ('01100010'B),
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +0000226
Harald Welte643e2a62017-11-27 15:03:18 +0100227 /* ip.access */
228 RSL_IE_IPAC_SRTP_CONFIG ('11100000'B),
Harald Welte319be822017-12-07 17:50:26 +0100229 RSL_IE_IPAC_PROXY_UDP ('11100001'B),
230 RSL_IE_IPAC_BSCMPL_TOUT ('11100010'B),
Harald Welte643e2a62017-11-27 15:03:18 +0100231
232 RSL_IE_IPAC_REMOTE_IP ('11110000'B),
Harald Welte319be822017-12-07 17:50:26 +0100233 RSL_IE_IPAC_REMOTE_PORT ('11110001'B),
234 RSL_IE_IPAC_RTP_PAYLOAD ('11110010'B),
235 RSL_IE_IPAC_LOCAL_PORT ('11110011'B),
236 RSL_IE_IPAC_SPEECH_MODE ('11110100'B),
237 RSL_IE_IPAC_LOCAL_IP ('11110101'B),
238 RSL_IE_IPAC_CONN_STAT ('11110110'B),
239 RSL_IE_IPAC_HO_C_PARMS ('11110111'B),
240 RSL_IE_IPAC_CONN_ID ('11111000'B),
241 RSL_IE_IPAC_RTP_CSD_FMT ('11111001'B),
242 RSL_IE_IPAC_RTP_JIT_BUF ('11111010'B),
243 RSL_IE_IPAC_RTP_COMPR ('11111011'B),
244 RSL_IE_IPAC_RTP_PAYLOAD2 ('11111100'B),
245 RSL_IE_IPAC_RTP_MPLEX ('11111101'B),
246 RSL_IE_IPAC_RTP_MPLEX_ID ('11111110'B)
Harald Welte643e2a62017-11-27 15:03:18 +0100247 } with { variant "FIELDLENGTH(8)" };
248
249 type record RSL_LV {
250 uint8_t len,
251 octetstring payload
252 } with { variant (len) "LENGTHTO(payload)" }
253
Harald Welteefa7d912018-04-18 23:22:15 +0200254 template (value) RSL_LV ts_RSL_LV(template (value) octetstring pl) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100255 len := 0,
256 payload := pl
257 }
258
Harald Welte51d74102017-12-10 23:05:02 +0100259 template RSL_LV tr_RSL_LV(template octetstring pl) := {
260 len := ?,
261 payload := pl
262 }
263
Harald Welte15bb5b52017-12-07 17:52:04 +0100264 type record RSL_L16V {
265 uint16_t len,
266 octetstring payload
267 } with { variant (len) "LENGTHTO(payload)" }
268
Harald Welteefa7d912018-04-18 23:22:15 +0200269 template (value) RSL_L16V ts_RSL_L16V(template (value) octetstring pl) := {
Harald Welte15bb5b52017-12-07 17:52:04 +0100270 len := 0,
271 payload := pl
272 }
273
Harald Welte7794d5b2017-12-16 23:00:20 +0100274 template RSL_L16V tr_RSL_L16V(template octetstring pl) := {
275 len := ?,
276 payload := pl
277 }
278
Harald Welte643e2a62017-11-27 15:03:18 +0100279 type record RSL_IE_V {
280 uint8_t val
281 }
282
283 /* 9.3.3 */
284 type record RSL_IE_ActivationType {
285 boolean reactivation,
286 uint4_t reserved,
Harald Welte921f9e02019-05-19 22:27:11 +0200287 RSL_ActivationAbits a_bits
288 };
289 type enumerated RSL_ActivationAbits {
290 ACT_REL_TO_IMM_ASSIGN ('000'B),
291 ACT_REL_TO_NORM_ASSIGN ('001'B),
292 ACT_REL_TO_ASYNC_HANDOVER ('010'B),
293 ACT_REL_TO_SYNC_HANDOVER ('011'B),
294 ACT_REL_TO_ADDL_ASSIGN ('100'B),
295 ACT_REL_TO_MSLOT_CONFIG ('101'B),
296 ACT_REL_TO_OSMO_PDCH ('111'B)
297 } with { variant "FIELDLENGTH(3)" };
Harald Welte643e2a62017-11-27 15:03:18 +0100298
Harald Welte921f9e02019-05-19 22:27:11 +0200299 const RSL_IE_ActivationType t_RSL_IE_ActType_IA := {
Harald Welte643e2a62017-11-27 15:03:18 +0100300 reactivation := false,
301 reserved := 0,
Harald Welte921f9e02019-05-19 22:27:11 +0200302 a_bits := ACT_REL_TO_IMM_ASSIGN
303 }
304 const RSL_IE_ActivationType t_RSL_IE_ActType_ASS := {
305 reactivation := false,
306 reserved := 0,
307 a_bits := ACT_REL_TO_NORM_ASSIGN
308 }
309 const RSL_IE_ActivationType t_RSL_IE_ActType_HO_ASYNC := {
310 reactivation := false,
311 reserved := 0,
312 a_bits := ACT_REL_TO_ASYNC_HANDOVER
313 }
314 const RSL_IE_ActivationType t_RSL_IE_ActType_HO_SYNC := {
315 reactivation := false,
316 reserved := 0,
317 a_bits := ACT_REL_TO_SYNC_HANDOVER
Harald Welte643e2a62017-11-27 15:03:18 +0100318 }
319
Harald Welte94e0c342018-04-07 11:33:23 +0200320 /* osmocom-style dynamic PDCH */
Harald Welte921f9e02019-05-19 22:27:11 +0200321 const RSL_IE_ActivationType t_RSL_IE_ActType_PDCH := {
Harald Welte94e0c342018-04-07 11:33:23 +0200322 reactivation := false,
323 reserved := 1,
Harald Welte921f9e02019-05-19 22:27:11 +0200324 a_bits := ACT_REL_TO_OSMO_PDCH
Harald Welte94e0c342018-04-07 11:33:23 +0200325 }
326
Vadim Yanitskiye02dbcc2020-08-25 04:20:51 +0700327 /* 9.3.5 */
328 type record RSL_IE_ChannelIdent {
329 uint8_t len,
330 /* 3GPP TS 44.018 Channel Description IE (TV) */
331 ChannelDescriptionTV ch_desc,
332 /* 3GPP TS 44.018 Mobile Allocation IE (shall be empty) */
333 MobileAllocationTLV ma
334 } with { variant (len) "LENGTHTO(ch_desc,ma)" };
335
336 template (value) RSL_IE_ChannelIdent
337 ts_RSL_ChannelIdent(template (value) ChannelDescription ch_desc) := {
338 len := 0, /* overwritten */
339 ch_desc := {
340 iei := '64'O,
341 v := ch_desc
342 },
343 /* Shall be included but empty */
344 ma := {
345 iei := '72'O,
346 v := {
347 len := 0,
348 ma := ''B
349 }
350 }
351 };
352
353 template RSL_IE_ChannelIdent
354 tr_RSL_ChannelIdent(template (present) ChannelDescription ch_desc := ?,
355 template (present) MobileAllocationLV ma := ?) := {
356 len := ?,
357 ch_desc := {
358 iei := '64'O,
359 v := ch_desc
360 },
361 /* Shall be included but empty */
362 ma := {
363 iei := '72'O,
364 v := ma
365 }
366 };
367
Harald Welte643e2a62017-11-27 15:03:18 +0100368 /* 9.3.6 */
369 type enumerated RSL_SpeechDataInd {
370 RSL_SPDI_SPEECH ('00000001'B),
371 RSL_SPDI_DATA ('00000010'B),
372 RSL_SPDI_SIGN ('00000011'B)
373 } with { variant "FIELDLENGTH(8)" };
374 type enumerated RSL_ChanRateType {
375 RSL_CHRT_SDCCH ('00000001'B),
376 RSL_CHRT_TCH_F ('00001000'B),
377 RSL_CHRT_TCH_H ('00001001'B),
378 RSL_CHRT_TCH_F_BD_MSLOT ('00001010'B),
379 RSL_CHRT_TCH_F_DL_MSLOT ('00011010'B),
380 RSL_CHRT_TCH_F_GROUP ('00011000'B),
381 RSL_CHRT_TCH_H_GROUP ('00011001'B),
382 RSL_CHRT_TCH_F_BCAST ('00101000'B),
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +0000383 RSL_CHRT_TCH_H_BCAST ('00101001'B),
384 RSL_CHRT_OSMO_TCH_F_VAMOS ('10001000'B),
385 RSL_CHRT_OSMO_TCH_H_VAMOS ('10001001'B)
Harald Welte643e2a62017-11-27 15:03:18 +0100386 } with { variant "FIELDLENGTH(8)" };
387 type enumerated RSL_SpeechAlgo {
388 RSL_CMOD_NO_RESOURCE ('00000000'B),
389 RSL_CMOD_SP_GSM1 ('00000001'B),
390 RSL_CMOD_SP_GSM2 ('00010001'B),
391 RSL_CMOD_SP_GSM3 ('00100001'B),
392 RSL_CMOD_SP_GSM4 ('00110001'B),
393 RSL_CMOD_SP_GSM5 ('00001001'B),
394 RSL_CMOD_SP_GSM6 ('00001101'B)
395 } with { variant "FIELDLENGTH(8)" };
396 type record RSL_IE_ChannelMode {
Harald Welte8f2c21d2017-12-07 17:52:40 +0100397 uint8_t len,
Harald Welte643e2a62017-11-27 15:03:18 +0100398 BIT6 reserved,
399 boolean dtx_d,
400 boolean dtx_u,
401 RSL_SpeechDataInd spd_ind,
402 RSL_ChanRateType ch_rate_type,
403 RSL_SpeechAlgo coding_alg_rate
Harald Welte8f2c21d2017-12-07 17:52:40 +0100404 } with { variant (len) "LENGTHTO(reserved,dtx_d,dtx_u,spd_ind,ch_rate_type,coding_alg_rate)" }
Harald Welte643e2a62017-11-27 15:03:18 +0100405
Vadim Yanitskiy8fc43df2020-10-20 02:11:05 +0700406 template (value) RSL_IE_ChannelMode ts_RSL_ChanMode_SIGN(RSL_ChanRateType t := RSL_CHRT_SDCCH,
407 boolean dtx_downlink := false) := {
Harald Welte8f2c21d2017-12-07 17:52:40 +0100408 len := 0, /* overwritten */
Harald Welte643e2a62017-11-27 15:03:18 +0100409 reserved := '000000'B,
Stefan Sperling4880be42018-08-07 18:12:59 +0200410 dtx_d := dtx_downlink,
Harald Welte643e2a62017-11-27 15:03:18 +0100411 dtx_u := false,
412 spd_ind := RSL_SPDI_SIGN,
Philipp Maierac693462020-10-14 20:21:44 +0200413 ch_rate_type := t,
Harald Welte643e2a62017-11-27 15:03:18 +0100414 coding_alg_rate := RSL_CMOD_NO_RESOURCE
415 }
416
Stefan Sperling4880be42018-08-07 18:12:59 +0200417 template (value) RSL_IE_ChannelMode ts_RSL_ChanMode(RSL_ChanRateType t, RSL_SpeechAlgo alg,
418 boolean dtx_downlink := false) := {
Harald Welte8f2c21d2017-12-07 17:52:40 +0100419 len := 0, /* overwritten */
Harald Welte643e2a62017-11-27 15:03:18 +0100420 reserved := '000000'B,
Stefan Sperling4880be42018-08-07 18:12:59 +0200421 dtx_d := dtx_downlink,
Harald Welte643e2a62017-11-27 15:03:18 +0100422 dtx_u := false,
423 spd_ind := RSL_SPDI_SPEECH,
424 ch_rate_type := t,
425 coding_alg_rate := alg
426 }
Harald Welte3618d9d2018-03-21 18:45:27 +0100427 template RSL_IE_ChannelMode tr_RSL_ChanMode(template RSL_ChanRateType t,
428 template RSL_SpeechAlgo alg) := {
429 len := ?,
430 reserved := '000000'B,
431 dtx_d := ?,
432 dtx_u := ?,
433 spd_ind := RSL_SPDI_SPEECH,
434 ch_rate_type := t,
435 coding_alg_rate := alg
436 }
Harald Welte643e2a62017-11-27 15:03:18 +0100437
Vadim Yanitskiy117c1762020-06-16 01:40:10 +0700438 /* 9.3.4 BS Power IE */
Harald Welte643e2a62017-11-27 15:03:18 +0100439 type record RSL_IE_BS_Power {
Vadim Yanitskiy117c1762020-06-16 01:40:10 +0700440 uint2_t reserved,
Harald Welte643e2a62017-11-27 15:03:18 +0100441 boolean epc,
442 boolean fpc,
Vadim Yanitskiy117c1762020-06-16 01:40:10 +0700443 uint4_t power_level
Harald Welte643e2a62017-11-27 15:03:18 +0100444 }
445
Vadim Yanitskiy117c1762020-06-16 01:40:10 +0700446 template (value) RSL_IE_BS_Power ts_RSL_IE_BS_Power(uint4_t power_level,
Eric Wildae8f2622019-06-18 17:05:11 +0200447 boolean epc := false, boolean fpc := false) := {
448 reserved := 0,
449 epc := epc,
450 fpc := fpc,
451 power_level := power_level
452 }
Vadim Yanitskiy2a5a1ef2021-06-30 00:51:48 +0200453 template RSL_IE_BS_Power
454 tr_RSL_IE_BS_Power(template (present) uint4_t power_level,
455 template (present) boolean epc := ?,
456 template (present) boolean fpc := ?) := {
457 reserved := ?,
458 epc := epc,
459 fpc := fpc,
460 power_level := power_level
461 }
Eric Wildae8f2622019-06-18 17:05:11 +0200462
Harald Welte73cd2712017-12-17 00:44:52 +0100463 /* 9.3.7 */
Harald Weltee613f962018-04-18 22:38:16 +0200464 type enumerated RSL_AlgId {
465 RSL_ALG_ID_A5_0 ('00000001'B),
466 RSL_ALG_ID_A5_1 ('00000010'B),
467 RSL_ALG_ID_A5_2 ('00000011'B),
468 RSL_ALG_ID_A5_3 ('00000100'B),
469 RSL_ALG_ID_A5_4 ('00000101'B),
470 RSL_ALG_ID_A5_5 ('00000110'B),
471 RSL_ALG_ID_A5_6 ('00000111'B),
472 RSL_ALG_ID_A5_7 ('00001000'B)
473 } with { variant "FIELDLENGTH(8)" };
Harald Welte73cd2712017-12-17 00:44:52 +0100474 type record RSL_IE_EncryptionInfo {
475 uint8_t len,
Harald Weltee613f962018-04-18 22:38:16 +0200476 RSL_AlgId alg_id,
Harald Welte73cd2712017-12-17 00:44:52 +0100477 octetstring key
478 } with { variant (len) "LENGTHTO(alg_id,key)" };
479
Harald Weltee613f962018-04-18 22:38:16 +0200480 template RSL_IE_EncryptionInfo tr_RSL_IE_EncrInfo(template RSL_AlgId alg,
481 template octetstring key) := {
Harald Welte73cd2712017-12-17 00:44:52 +0100482 len := ?,
483 alg_id := alg,
484 key := key
485 }
Harald Weltee613f962018-04-18 22:38:16 +0200486 template (value) RSL_IE_EncryptionInfo ts_RSL_IE_EncrInfo(template (value) RSL_AlgId alg,
487 octetstring key) := {
Harald Welteefa7d912018-04-18 23:22:15 +0200488 len := 0, /* overwritten */
489 alg_id := alg,
490 key := key
491 }
492
493
Harald Welte73cd2712017-12-17 00:44:52 +0100494
Harald Welte643e2a62017-11-27 15:03:18 +0100495 /* 9.3.8 */
496 type record RSL_IE_FrameNumber {
497 uint5_t t1_p,
498 uint6_t t3,
499 uint5_t t2
500 }
501 type RSL_IE_FrameNumber RSL_IE_StartingTime;
502
503 /* 9.3.10 */
504 type record RSL_IE_L1Info {
505 uint5_t ms_power_lvl,
506 boolean fpc,
507 uint2_t reserved,
508 uint8_t actual_ta
509 }
510
511 /* 9.3.13 */
512 type record RSL_IE_MS_Power {
513 uint2_t reserved,
514 boolean fpc_epc,
515 uint5_t power_level
516 }
Pau Espin Pedrolf7630a62019-10-28 15:07:08 +0100517 template RSL_IE_MS_Power tr_RSL_IE_MS_Power(template uint5_t power_level := ?,
518 template boolean fpc_epc := false) := {
519 reserved := 0,
520 fpc_epc := fpc_epc,
521 power_level := power_level
522 }
Harald Welte10280172019-05-19 22:28:04 +0200523 template (value) RSL_IE_MS_Power ts_RSL_IE_MS_Power(uint5_t power_level,
524 boolean fpc_epc := false) := {
525 reserved := 0,
526 fpc_epc := fpc_epc,
527 power_level := power_level
528 }
Harald Welte643e2a62017-11-27 15:03:18 +0100529
Harald Welted5f521e2017-12-07 17:53:06 +0100530 /* 9.3.18 */
531 type record RSL_IE_RachLoad {
532 uint8_t len,
533 uint16_t slot_count,
534 uint16_t busy_count,
535 uint16_t access_count
536 } with { variant (len) "LENGTHTO(slot_count,busy_count,access_count)" }
537
Harald Welteefa7d912018-04-18 23:22:15 +0200538 template (value) RSL_IE_RachLoad ts_RSL_IE_RachLoad(uint16_t slot, uint16_t busy, uint16_t acc) := {
Harald Welted5f521e2017-12-07 17:53:06 +0100539 len := 0, /* overwritten */
540 slot_count := slot,
541 busy_count := busy,
542 access_count := acc
543 }
544
Harald Welte68e495b2018-02-25 00:05:57 +0100545 template RSL_IE_RachLoad tr_RSL_IE_RachLoad(template uint16_t slot,
546 template uint16_t busy,
547 template uint16_t acc) := {
548 len := ?, /* overwritten */
549 slot_count := slot,
550 busy_count := busy,
551 access_count := acc
552 }
553
Harald Welte643e2a62017-11-27 15:03:18 +0100554 /* 9.3.19 */
555 type record RSL_IE_RequestRef {
556 OCT1 ra,
557 RSL_IE_FrameNumber frame_nr
558 }
559
560 /* 3GPP TS 44.018 / 10.5.2.38 Starting Time */
Harald Welte94e0c342018-04-07 11:33:23 +0200561 template (value) RSL_IE_FrameNumber ts_RSL_IE_FrameNumber(GsmFrameNumber fn) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100562 t1_p := (fn / 1326) mod 32,
563 t3 := fn mod 51,
564 t2 := fn mod 26
565 }
566
Harald Welte9abd1282018-02-19 19:18:17 +0100567 function tr_RSL_IE_FrameNumber(template GsmFrameNumber fn) return template RSL_IE_FrameNumber {
568 if (istemplatekind(fn, "?")) {
569 return ?;
570 } else {
571 return ts_RSL_IE_FrameNumber(valueof(fn));
572 }
573 }
574
Harald Welteefa7d912018-04-18 23:22:15 +0200575 template (value) RSL_IE_RequestRef ts_RSL_IE_ReqRef(OCT1 ra, GsmFrameNumber frame_nr) := {
Harald Welte643e2a62017-11-27 15:03:18 +0100576 ra := ra,
577 frame_nr := ts_RSL_IE_FrameNumber(frame_nr)
578 }
579
Harald Welte9abd1282018-02-19 19:18:17 +0100580 template RSL_IE_RequestRef tr_RSL_IE_ReqRef(template OCT1 ra, template GsmFrameNumber frame_nr) := {
581 ra := ra,
582 frame_nr := tr_RSL_IE_FrameNumber(frame_nr)
583 }
584
Vadim Yanitskiy9f699532021-06-03 17:29:22 +0200585 /* 9.3.21 Resource Information */
586 type record RSL_IE_ResourceInfo {
587 uint8_t len,
588 RSL_ResourceInfo info
589 } with { variant (len) "LENGTHTO(info)" };
590
591 type record of RSL_ResourceInfoItem RSL_ResourceInfo;
592 type record RSL_ResourceInfoItem {
593 RslChannelNr chan_nr,
594 uint3_t interf_band,
595 BIT5 rfu ('00000'B)
596 };
597
598 template (value) RSL_ResourceInfoItem
599 ts_RSL_ResourceInfoItem(template (value) RslChannelNr chan_nr,
600 template (value) uint3_t interf_band := 0) := {
601 chan_nr := chan_nr,
602 interf_band := interf_band,
603 rfu := '00000'B
604 }
605 template RSL_ResourceInfoItem
606 tr_RSL_ResourceInfoItem(template (present) RslChannelNr chan_nr := ?,
607 template (present) uint3_t interf_band := ?) := {
608 chan_nr := chan_nr,
609 interf_band := interf_band,
610 rfu := ? /* Tolerate unknown values */
611 }
612
Harald Welte15de8ba2018-06-29 08:51:42 +0200613 /* Osmocom Extension */
614 type record RSL_IE_UplinkMeasSuppMeasInfo {
615 int16_t toa256_mean,
616 int16_t toa256_min,
617 int16_t toa256_max,
618 uint16_t toa256_std_dev
619 };
620
Harald Welte2691adf2018-02-22 17:32:39 +0100621 /* 9.3.25 */
622 type record RSL_IE_UplinkMeas {
623 uint8_t len,
624 BIT1 rfu,
625 boolean dtx_d,
626 uint6_t rxlev_f_u,
627 BIT2 reserved1,
628 uint6_t rxlev_s_u,
629 BIT2 reserved2,
630 uint3_t rxq_f_u,
631 uint3_t rxq_s_u,
Harald Welte15de8ba2018-06-29 08:51:42 +0200632 RSL_IE_UplinkMeasSuppMeasInfo supp_meas_info optional
Harald Welte2691adf2018-02-22 17:32:39 +0100633 } with { variant (len) "LENGTHTO(rfu,dtx_d,rxlev_f_u,reserved1,rxlev_s_u,reserved2,rxq_f_u,rxq_s_u,supp_meas_info)" };
Harald Welte9abd1282018-02-19 19:18:17 +0100634
Harald Welte643e2a62017-11-27 15:03:18 +0100635 /* 9.3.26 */
Harald Weltea8ed9062017-12-14 09:46:01 +0100636 type enumerated RSL_Cause {
637 /* normal event */
638 RSL_ERR_RADIO_IF_FAIL ('00'O),
639 RSL_ERR_RADIO_LINK_FAIL ('01'O),
640 RSL_ERR_HANDOVER_ACC_FAIL ('02'O),
641 RSL_ERR_TALKER_ACC_FAIL ('03'O),
642 RSL_ERR_OM_INTERVENTION ('07'O),
643 RSL_ERR_NORMAL_UNSPEC ('0f'O),
644 RSL_ERR_T_MSRFPCI_EXP ('18'O),
645 /* resource unavailable */
646 RSL_ERR_EQUIPMENT_FAIL ('20'O),
647 RSL_ERR_RR_UNAVAIL ('21'O),
648 RSL_ERR_TERR_CH_FAIL ('22'O),
649 RSL_ERR_CCCH_OVERLOAD ('23'O),
650 RSL_ERR_ACCH_OVERLOAD ('24'O),
651 RSL_ERR_PROCESSOR_OVERLOAD ('25'O),
652 RSL_ERR_BTS_NOT_EQUIPPED ('27'O),
653 RSL_ERR_REMOTE_TRAU_FAILURE ('28'O),
654 RSL_ERR_NOTIF_OVERFLOW ('29'O),
655 RSL_ERR_RES_UNAVAIL ('2f'O),
656 /* service or option not available */
657 RSL_ERR_TRANSC_UNAVAIL ('30'O),
658 RSL_ERR_SERV_OPT_UNAVAIL ('3f'O),
659 /* service or option not implemented */
660 RSL_ERR_ENCR_UNIMPL ('40'O),
661 RSL_ERR_SERV_OPT_UNIMPL ('4f'O),
662 /* invalid message */
663 RSL_ERR_RCH_ALR_ACTV_ALLOC ('50'O),
Harald Welte9912eb52018-02-25 13:30:15 +0100664 RSL_ERR_IPA_RCH_NOT_ACTV_ALLOC ('51'O),
665 RSL_ERR_IPA_CONN_INVALID ('52'O),
666 RSL_ERR_IPA_CONN_IN_USE ('53'O),
667 RSL_ERR_IPA_CONN_ALREADY_EXISTS ('54'O),
Harald Weltea8ed9062017-12-14 09:46:01 +0100668 RSL_ERR_INVALID_MESSAGE ('5f'O),
669 /* protocol error */
670 RSL_ERR_MSG_DISCR ('60'O),
671 RSL_ERR_MSG_TYPE ('61'O),
672 RSL_ERR_MSG_SEQ ('62'O),
673 RSL_ERR_IE_ERROR ('63'O),
674 RSL_ERR_MAND_IE_ERROR ('64'O),
675 RSL_ERR_OPT_IE_ERROR ('65'O),
676 RSL_ERR_IE_NONEXIST ('66'O),
677 RSL_ERR_IE_LENGTH ('67'O),
678 RSL_ERR_IE_CONTENT ('68'O),
679 RSL_ERR_PROTO ('6f'O),
680 /* interworking */
681 RSL_ERR_INTERWORKING ('7f'O)
682 };
Harald Welte643e2a62017-11-27 15:03:18 +0100683 type record RSL_IE_Cause {
Harald Welte6efa8e32017-12-09 22:34:06 +0100684 uint8_t len,
Harald Welte643e2a62017-11-27 15:03:18 +0100685 uint1_t e,
686 RSL_Cause cause,
687 octetstring cause_ext optional
Harald Welte6efa8e32017-12-09 22:34:06 +0100688 } with { variant (len) "LENGTHTO(e,cause,cause_ext)" }
Harald Welte643e2a62017-11-27 15:03:18 +0100689
Harald Welteefa7d912018-04-18 23:22:15 +0200690 template (value) RSL_IE_Cause ts_RSL_IE_Cause(RSL_Cause cause) := {
Harald Welte6efa8e32017-12-09 22:34:06 +0100691 len := 0, /* overwritten */
Harald Welte643e2a62017-11-27 15:03:18 +0100692 e := 0,
693 cause := cause,
694 cause_ext := omit
695 }
696
Harald Welte9abd1282018-02-19 19:18:17 +0100697 template RSL_IE_Cause tr_RSL_IE_Cause(template RSL_Cause cause) := {
698 len := ?,
699 e := 0,
700 cause := cause,
701 cause_ext := omit
702 }
703
Harald Weltec8d363c2019-05-19 20:36:48 +0200704 /* 9.3.29 */
705 type record RSL_SacchInfo {
706 uint8_t len,
707 uint8_t num_msgs,
708 RSL_SacchInfoElements elems
709 } with {
710 variant (len) "LENGTHTO(num_msgs,elems)";
711 variant (num_msgs) "LENGTHTO(elems)";
712 variant (num_msgs) "UNIT(elements)"
713 };
714 type record RSL_SacchInfoElement {
715 RSL_IE_SysinfoType si_type,
716 uint8_t len,
717 octetstring msg
718 } with {
719 variant (len) "LENGTHTO(msg)";
720 };
721 type record of RSL_SacchInfoElement RSL_SacchInfoElements;
722 template (value) RSL_SacchInfo ts_RSL_SacchInfo(template (value) RSL_SacchInfoElements elems) := {
723 len := 0, /* overwritten */
724 num_msgs := 0, /* overwritten */
725 elems := elems
726 }
727 template (value) RSL_SacchInfoElement ts_RSL_SacchInfoElem(RSL_IE_SysinfoType tp, octetstring msg) := {
728 si_type := tp,
729 len := lengthof(msg),
730 msg := msg
731 }
732
Eric Wild61edb7e2019-06-03 12:38:31 +0200733 /* 9.3.31 */
734 type record RSL_IE_MS_Power_Parameters {
735 uint8_t len,
736 octetstring params
737 } with {
738 variant (len) "LENGTHTO(params)";
739 };
740 template (value) RSL_IE_MS_Power_Parameters ts_RSL_IE_MS_Power_Parameters(octetstring params) := {
741 len := 0, /* overwritten */
742 params := params
743 }
744
Harald Welte643e2a62017-11-27 15:03:18 +0100745 /* 9.3.40 */
746 type enumerated RSL_ChanNeeded {
747 RSL_CHANNEED_ANY ('00'B),
748 RSL_CHANNEED_SDCCH ('01'B),
749 RSL_CHANNEED_TCH_F ('10'B),
750 RSL_CHANNEED_TCH_ForH ('11'B)
Harald Welte51d74102017-12-10 23:05:02 +0100751 } with { variant "FIELDLENGTH(2)" };
Harald Welte643e2a62017-11-27 15:03:18 +0100752 type record RSL_IE_ChanNeeded {
753 uint6_t reserved,
754 RSL_ChanNeeded chan_needed
755 }
756
Harald Weltecc373202018-09-10 10:28:21 +0200757 /* 9.3.41 CB Command Type */
758 type enumerated RSL_CbCommand {
759 RSL_CB_CMD_NORMAL ('0000'B),
760 RSL_CB_CMD_SCHEDULE ('1000'B),
761 RSL_CB_CMD_DEFAULT ('1110'B),
762 RSL_CB_CMD_NULL ('1111'B)
763 } with { variant "FIELDLENGTH(4)" };
764 type record RSL_IE_CbCommandType {
765 RSL_CbCommand command,
766 boolean default_bcast_null,
767 BIT1 spare,
768 uint2_t last_block
769 };
770 template (value) RSL_IE_CbCommandType ts_RSL_IE_CbCmdType(RSL_CbCommand cmd := RSL_CB_CMD_NORMAL,
771 uint2_t last_block := 1,
772 boolean def_bcast_null := true) := {
773 command := cmd,
774 default_bcast_null := def_bcast_null,
775 spare := '0'B,
776 last_block := last_block
777 }
778
Harald Welte4a129f82019-05-21 16:35:22 +0200779 /* 9.4.43 CBCH Load Information */
780 type record RSL_IE_CbchLoadInfo {
781 boolean overflow,
782 BIT3 spare,
783 uint4_t slot_count
784 };
785 template RSL_IE_CbchLoadInfo tr_CbchLoadInfo(template boolean overflow,
786 template uint4_t slot_count) := {
787 overflow := overflow,
788 spare := ?,
789 slot_count := slot_count
790 }
791 template (value) RSL_IE_CbchLoadInfo ts_CbchLoadInfo(boolean overflow, uint4_t slot_count) := {
792 overflow := overflow,
793 spare := '000'B,
794 slot_count := slot_count
795 }
796
Harald Welte643e2a62017-11-27 15:03:18 +0100797 /* 9.3.53 */
798 type record RSL_IE_MultirateCtrl {
799 uint3_t spare,
800 boolean od,
801 boolean pre,
802 uint2_t rae,
803 boolean tfo
804 }
805
806 type enumerated RSL_IE_SysinfoType {
807 RSL_SYSTEM_INFO_8 ('00000000'B),
808 RSL_SYSTEM_INFO_1 ('00000001'B),
809 RSL_SYSTEM_INFO_2 ('00000010'B),
810 RSL_SYSTEM_INFO_3 ('00000011'B),
811 RSL_SYSTEM_INFO_4 ('00000100'B),
812 RSL_SYSTEM_INFO_5 ('00000101'B),
813 RSL_SYSTEM_INFO_6 ('00000110'B),
814 RSL_SYSTEM_INFO_7 ('00000111'B),
815 RSL_SYSTEM_INFO_16 ('00001000'B),
816 RSL_SYSTEM_INFO_17 ('00001001'B),
817 RSL_SYSTEM_INFO_2bis ('00001010'B),
818 RSL_SYSTEM_INFO_2ter ('00001011'B),
819 RSL_SYSTEM_INFO_5bis ('00001101'B),
820 RSL_SYSTEM_INFO_5ter ('00001110'B),
821 RSL_SYSTEM_INFO_10 ('00001111'B),
822 RSL_EXT_MEAS_ORDER ('01000111'B),
823 RSL_MEAS_INFO ('01001000'B),
824 RSL_SYSTEM_INFO_13 ('00101000'B),
825 RSL_ERIC_SYSTEM_INFO_13 ('00001100'B),
826 RSL_SYSTEM_INFO_2quater ('00101001'B),
827 RSL_SYSTEM_INFO_9 ('00101010'B),
828 RSL_SYSTEM_INFO_18 ('00101011'B),
829 RSL_SYSTEM_INFO_19 ('00101100'B),
830 RSL_SYSTEM_INFO_20 ('00101101'B)
831 } with { variant "FIELDLENGTH(8)" }
832
Harald Welte9958a4d2017-12-14 21:21:33 +0100833 type record RSL_IE_IPA_ConnectionStats {
834 uint8_t len,
835 uint32_t tx_packets,
836 uint32_t tx_octets,
837 uint32_t rx_packets,
838 uint32_t rx_octets,
839 uint32_t lost_packets,
840 uint32_t jitter,
841 uint32_t avg_delay
842 } with { variant (len) "LENGTHTO(tx_packets,tx_octets,rx_packets,rx_octets,lost_packets,jitter,avg_delay)" }
843
844 type enumerated RSL_IPA_SpeechMode {
845 RSL_IPA_SPM_SENDRECV ('00'B),
846 RSL_IPA_SPM_RECVONLY ('01'B),
847 RSL_IPA_SPM_SENDONLY ('10'B),
848 RSL_IPA_SPM_RESERVED ('11'B)
849 } with { variant "FIELDLENGTH(2)" }
850
851 type enumerated RSL_IPA_Codec {
852 RSL_IPA_CODEC_FR ('0000'B),
853 RSL_IPA_CODEC_EFR ('0001'B),
854 RSL_IPA_CODEC_AMR_F ('0010'B),
855 RSL_IPA_CODEC_HR ('0011'B),
856 RSL_IPA_CODEC_AMR_H ('0101'B),
857 RSL_IPA_CODEC_RTP_PT ('1111'B)
858 } with { variant "FIELDLENGTH(4)" }
859
860 type record RSL_IE_IPA_SpeechMode {
861 BIT2 reserved,
862 RSL_IPA_SpeechMode mode,
863 RSL_IPA_Codec codec
864 }
865
Harald Welte0472ab42018-03-12 15:02:26 +0100866 /* 9.3.20 */
867 type enumerated RSL_IE_ReleaseMode {
868 RSL_REL_MODE_NORMAL ('00'B),
869 REL_REL_MODE_LOCAL ('01'B)
870 }
871
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +0000872 type record RSL_IE_OSMO_TrainingSequence {
873 uint8_t len,
874 uint8_t tsc_set,
875 uint8_t tsc
876 } with { variant (len) "LENGTHTO(tsc_set,tsc)" }
877
Vadim Yanitskiy1f532152021-11-01 20:37:56 +0300878 type record RSL_IE_OSMO_RepAcchCap {
879 uint8_t len,
880 BIT1 rfu ('0'B),
881 uint3_t rxqual,
882 boolean ul_sacch,
883 boolean dl_sacch,
884 boolean dl_facch_all,
885 boolean dl_facch_cmd
886 } with { variant (len) "LENGTHTO(rfu,rxqual,ul_sacch,dl_sacch,dl_facch_all,dl_facch_cmd)" }
887
Vadim Yanitskiya203d3b2021-11-01 21:32:31 +0300888 type record RSL_IE_OSMO_TopAcchCap {
889 uint8_t len,
890 boolean sacch_enable,
891 boolean facch_enable,
892 uint3_t rxqual,
893 uint3_t overpower_db
894 } with { variant (len) "LENGTHTO(sacch_enable,facch_enable,rxqual,overpower_db)" }
895
Harald Welte643e2a62017-11-27 15:03:18 +0100896 /* union of all IE bodies */
897 type union RSL_IE_Body {
898 RslChannelNr chan_nr,
899 RslLinkId link_id,
Harald Welte15bb5b52017-12-07 17:52:04 +0100900 RSL_L16V l3_info,
Harald Welte643e2a62017-11-27 15:03:18 +0100901 RSL_LV rlm_cause,
Harald Welte0472ab42018-03-12 15:02:26 +0100902 RSL_IE_ReleaseMode release_mode,
Harald Welte643e2a62017-11-27 15:03:18 +0100903 RSL_IE_ActivationType act_type,
Vadim Yanitskiye02dbcc2020-08-25 04:20:51 +0700904 RSL_IE_ChannelIdent chan_ident,
Harald Welte643e2a62017-11-27 15:03:18 +0100905 RSL_IE_ChannelMode chan_mode,
906 uint8_t handover_ref,
907 RSL_IE_BS_Power bs_power,
Vadim Yanitskiy802508e2020-11-11 07:25:47 +0700908 RSL_LV bs_power_params,
Harald Welte643e2a62017-11-27 15:03:18 +0100909 RSL_IE_MS_Power ms_power,
Eric Wild61edb7e2019-06-03 12:38:31 +0200910 RSL_IE_MS_Power_Parameters ms_power_params,
Harald Welte643e2a62017-11-27 15:03:18 +0100911 uint8_t timing_adv,
912 RSL_IE_MultirateCtrl multirate_ctrl,
Harald Weltea6706152019-05-19 20:38:18 +0200913 uint8_t msg_id,
Harald Welte643e2a62017-11-27 15:03:18 +0100914 RSL_IE_FrameNumber frame_nr,
915 RSL_IE_Cause cause,
916 uint8_t access_delay,
Harald Welted5f521e2017-12-07 17:53:06 +0100917 RSL_IE_RachLoad rach_load,
Harald Welte643e2a62017-11-27 15:03:18 +0100918 uint8_t meas_res_nr,
Harald Welte2691adf2018-02-22 17:32:39 +0100919 uint8_t ms_timing_offset,
920 RSL_IE_UplinkMeas uplink_meas,
Harald Welte643e2a62017-11-27 15:03:18 +0100921 RSL_IE_L1Info l1_info,
922 RSL_IE_SysinfoType sysinfo_type,
923 uint16_t paging_load,
924 uint8_t paging_group,
925 RSL_IE_ChanNeeded chan_needed,
Harald Weltecc373202018-09-10 10:28:21 +0200926 RSL_IE_CbCommandType cb_cmd_type,
927 RSL_LV smscb_message,
Harald Welte4a129f82019-05-21 16:35:22 +0200928 RSL_IE_CbchLoadInfo cbch_load_info,
Vadim Yanitskiy9f699532021-06-03 17:29:22 +0200929 RSL_IE_ResourceInfo resource_info,
Harald Weltec8d363c2019-05-19 20:36:48 +0200930 RSL_SacchInfo sacch_info,
Harald Weltecc373202018-09-10 10:28:21 +0200931
Harald Welte643e2a62017-11-27 15:03:18 +0100932 RSL_IE_StartingTime starting_time,
Harald Welte73cd2712017-12-17 00:44:52 +0100933 RSL_IE_EncryptionInfo encr_info,
Harald Weltea3ff6702019-05-20 20:03:50 +0200934 uint8_t smscb_chan_ind,
Harald Welte643e2a62017-11-27 15:03:18 +0100935 RSL_IE_RequestRef req_ref,
936 RSL_LV full_imm_ass_info,
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +0700937 MobileIdentityLV ms_identity,
Harald Welte643e2a62017-11-27 15:03:18 +0100938
Harald Welte9958a4d2017-12-14 21:21:33 +0100939 uint16_t ipa_conn_id,
940 uint16_t ipa_local_port,
941 uint16_t ipa_remote_port,
Vadim Yanitskiyfc631642021-07-03 02:42:45 +0200942 OCT4 ipa_local_ip,
943 OCT4 ipa_remote_ip,
Harald Welte9958a4d2017-12-14 21:21:33 +0100944 uint8_t ipa_rtp_pt,
945 uint8_t ipa_rtp_pt2,
946 RSL_IE_IPA_ConnectionStats ipa_stats,
947 RSL_IE_IPA_SpeechMode ipa_speech_mode,
948
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +0000949 RSL_IE_OSMO_TrainingSequence osmo_training_sequence,
Vadim Yanitskiy1f532152021-11-01 20:37:56 +0300950 RSL_IE_OSMO_RepAcchCap rep_acch_cap,
Vadim Yanitskiya203d3b2021-11-01 21:32:31 +0300951 RSL_IE_OSMO_TopAcchCap top_acch_cap,
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +0000952
Harald Welte643e2a62017-11-27 15:03:18 +0100953 RSL_LV other
954 }
955
956 type record RSL_IE {
957 RSL_IE_Type iei,
958 RSL_IE_Body body
959 } with { variant (body) "CROSSTAG(
960 chan_nr, iei = RSL_IE_CHAN_NR;
961 link_id, iei = RSL_IE_LINK_IDENT;
962 l3_info, iei = RSL_IE_L3_INFO;
963 rlm_cause, iei = RSL_IE_RLM_CAUSE;
964 release_mode, iei = RSL_IE_RELEASE_MODE;
965 act_type, iei = RSL_IE_ACT_TYPE;
Vadim Yanitskiye02dbcc2020-08-25 04:20:51 +0700966 chan_ident, iei = RSL_IE_CHAN_IDENT;
Harald Welte643e2a62017-11-27 15:03:18 +0100967 chan_mode, iei = RSL_IE_CHAN_MODE;
968 handover_ref, iei = RSL_IE_HANDO_REF;
969 bs_power, iei = RSL_IE_BS_POWER;
Vadim Yanitskiy802508e2020-11-11 07:25:47 +0700970 bs_power_params, iei = RSL_IE_BS_POWER_PARAM;
Harald Welte643e2a62017-11-27 15:03:18 +0100971 ms_power, iei = RSL_IE_MS_POWER;
Eric Wild61edb7e2019-06-03 12:38:31 +0200972 ms_power_params, iei = RSL_IE_MS_POWER_PARAM;
Harald Welte643e2a62017-11-27 15:03:18 +0100973 timing_adv, iei = RSL_IE_TIMING_ADVANCE;
974 multirate_ctrl, iei = RSL_IE_MR_CONTROL;
Harald Weltea6706152019-05-19 20:38:18 +0200975 msg_id, iei = RSL_IE_MSG_ID;
Harald Welte643e2a62017-11-27 15:03:18 +0100976
977 frame_nr, iei = RSL_IE_FRAME_NUMBER;
978 cause, iei = RSL_IE_CAUSE;
979 access_delay, iei = RSL_IE_ACCESS_DELAY;
Harald Welted5f521e2017-12-07 17:53:06 +0100980 rach_load, iei = RSL_IE_RACH_LOAD;
Harald Welte643e2a62017-11-27 15:03:18 +0100981 meas_res_nr, iei = RSL_IE_MEAS_RES_NR;
Harald Welte2691adf2018-02-22 17:32:39 +0100982 ms_timing_offset, iei = RSL_IE_MS_TIMING_OFFSET;
983 uplink_meas, iei = RSL_IE_UPLINK_MEAS;
Harald Welte643e2a62017-11-27 15:03:18 +0100984 l1_info, iei = RSL_IE_L1_INFO;
985 sysinfo_type, iei = RSL_IE_SYSINFO_TYPE;
986 paging_load, iei = RSL_IE_PAGING_LOAD;
987 paging_group, iei = RSL_IE_PAGING_GROUP;
988 chan_needed, iei = RSL_IE_CHAN_NEEDED;
Harald Weltecc373202018-09-10 10:28:21 +0200989 cb_cmd_type, iei = RSL_IE_CB_CMD_TYPE;
990 smscb_message, iei = RSL_IE_SMSCB_MSG;
Harald Welte4a129f82019-05-21 16:35:22 +0200991 cbch_load_info, iei = RSL_IE_CBCH_LOAD_INFO;
Vadim Yanitskiy9f699532021-06-03 17:29:22 +0200992 resource_info, iei = RSL_IE_RESOURCE_INFO;
Harald Weltec8d363c2019-05-19 20:36:48 +0200993 sacch_info, iei = RSL_IE_SACCH_INFO;
Harald Welte643e2a62017-11-27 15:03:18 +0100994 starting_time, iei = RSL_IE_STARTNG_TIME;
Harald Welte73cd2712017-12-17 00:44:52 +0100995 encr_info, iei = RSL_IE_ENCR_INFO;
Harald Weltea3ff6702019-05-20 20:03:50 +0200996 smscb_chan_ind, iei = RSL_IE_SMSCB_CHAN_INDICATOR;
Harald Welte643e2a62017-11-27 15:03:18 +0100997
998 req_ref, iei = RSL_IE_REQ_REFERENCE;
Harald Weltefff69302017-12-07 17:53:42 +0100999 full_imm_ass_info, iei = RSL_IE_FULL_IMM_ASS_INFO;
1000 ms_identity, iei = RSL_IE_MS_IDENTITY;
1001 other, iei = RSL_IE_FULL_BCCH_INFO;
Harald Welte643e2a62017-11-27 15:03:18 +01001002
Harald Welte9958a4d2017-12-14 21:21:33 +01001003 ipa_conn_id, iei = RSL_IE_IPAC_CONN_ID;
1004 ipa_remote_ip, iei = RSL_IE_IPAC_REMOTE_IP;
1005 ipa_remote_port, iei = RSL_IE_IPAC_REMOTE_PORT;
1006 ipa_local_ip, iei = RSL_IE_IPAC_LOCAL_IP;
1007 ipa_local_port, iei = RSL_IE_IPAC_LOCAL_PORT;
1008 ipa_rtp_pt, iei = RSL_IE_IPAC_RTP_PAYLOAD;
1009 ipa_rtp_pt2, iei = RSL_IE_IPAC_RTP_PAYLOAD2;
1010 ipa_stats, iei = RSL_IE_IPAC_CONN_STAT;
1011 ipa_speech_mode, iei = RSL_IE_IPAC_SPEECH_MODE;
1012
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +00001013 osmo_training_sequence, iei = RSL_IE_OSMO_TRAINING_SEQUENCE;
Vadim Yanitskiy1f532152021-11-01 20:37:56 +03001014 rep_acch_cap, iei = RSL_IE_OSMO_REP_ACCH_CAP;
Vadim Yanitskiya203d3b2021-11-01 21:32:31 +03001015 top_acch_cap, iei = RSL_IE_OSMO_TOP_ACCH_CAP;
Neels Hofmeyr2bef0dd2021-04-22 21:46:00 +00001016
Harald Welte643e2a62017-11-27 15:03:18 +01001017 other, OTHERWISE;
1018 )" };
1019
Harald Welte735dd072017-12-12 14:55:17 +01001020 /* For some reason the TTCN-3 RAW codec cannot automatically figure out the IEI
1021 * that it needs to set for a given union-choice (body). So we have to explicitly
1022 * specify the IEI by the caller :( */
Harald Welteefa7d912018-04-18 23:22:15 +02001023 template (value) RSL_IE t_RSL_IE(RSL_IE_Type iei, template (value) RSL_IE_Body body) := {
Harald Welte735dd072017-12-12 14:55:17 +01001024 iei := iei,
Harald Welte643e2a62017-11-27 15:03:18 +01001025 body := body
1026 }
1027
Harald Weltec2877752017-12-07 17:54:35 +01001028 template RSL_IE tr_RSL_IE(template RSL_IE_Body body) := {
1029 iei := ?, /* overwritten? */
1030 body := body
1031 }
1032
1033
Harald Welte643e2a62017-11-27 15:03:18 +01001034 type record of RSL_IE RSL_IE_List;
1035
1036 type record RSL_Message {
1037 RSL_MessageDiscriminator msg_disc,
1038 RSL_MessageType msg_type,
1039 RSL_IE_List ies optional
1040 }
1041
1042 external function enc_RSL_Message(in RSL_Message msg) return octetstring
1043 with { extension "prototype(convert) encode(RAW)" };
1044 external function dec_RSL_Message(in octetstring stream) return RSL_Message
1045 with { extension "prototype(convert) decode(RAW)" };
1046
Harald Weltebc330be2017-12-09 00:56:36 +01001047 template RSL_Message tr_RSL_MsgDiscType(template RSL_MessageDiscriminator m_disc,
Harald Welte643e2a62017-11-27 15:03:18 +01001048 RSL_MessageType m_type) := {
1049 msg_disc := m_disc,
1050 msg_type := m_type,
1051 ies := *
1052 }
1053
Harald Welteefa7d912018-04-18 23:22:15 +02001054 template (value) RSL_Message ts_RSL_MsgDiscType(template (value) RSL_MessageDiscriminator m_disc,
1055 template (value) RSL_MessageType msg_type,
1056 template (omit) RSL_IE_List ies := omit) := {
Harald Welte4a267362017-12-09 17:49:32 +01001057 msg_disc := m_disc,
1058 msg_type := msg_type,
1059 ies := ies
1060 }
1061
Harald Weltebc330be2017-12-09 00:56:36 +01001062template RSL_Message tr_RSL_MsgType(template RSL_MessageType msg_type) := {
1063 msg_disc := ?,
1064 msg_type := msg_type,
1065 ies := *
1066}
1067
1068/* Common Channel Management */
1069template RSL_Message tr_RSL_MsgTypeC(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
1070 msg_disc := { RSL_MDISC_CCHAN, ? }
1071}
1072
1073/* RLL */
1074template RSL_Message tr_RSL_MsgTypeR(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
1075 msg_disc := { RSL_MDISC_RLL, true }
1076}
1077
1078/* Dedicated Channel Management */
1079template RSL_Message tr_RSL_MsgTypeD(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
1080 msg_disc := { RSL_MDISC_DCHAN, ? }
1081}
1082
1083/* Dedicated Channel Management */
1084template RSL_Message tr_RSL_MsgTypeT(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
1085 msg_disc := { RSL_MDISC_TRX_MGMT, ? }
1086}
1087
1088
1089/* dedicated channel or RLL */
1090template RSL_Message tr_RSL_MsgTypeDR(template RSL_MessageType msg_type) modifies tr_RSL_MsgType := {
Harald Weltee5408222018-01-29 21:57:58 +01001091 msg_disc := ({RSL_MDISC_DCHAN,?}, {RSL_MDISC_RLL,?}, {RSL_MDISC_IPACCESS,false})
Harald Weltebc330be2017-12-09 00:56:36 +01001092}
1093
1094
Harald Welte643e2a62017-11-27 15:03:18 +01001095 /* 8.3.1 BSC -> BTS */
Harald Welteefa7d912018-04-18 23:22:15 +02001096 template (value) RSL_Message ts_RSL_DATA_REQ(template (value) RslChannelNr chan_nr,
1097 template (value) RslLinkId link_id,
1098 octetstring l3_info) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001099 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, true),
1100 msg_type := RSL_MT_DATA_REQ,
1101 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001102 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1103 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
1104 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
Harald Welte643e2a62017-11-27 15:03:18 +01001105 }
1106 }
1107
Harald Welte7794d5b2017-12-16 23:00:20 +01001108 template RSL_Message tr_RSL_DATA_REQ(template RslChannelNr chan_nr :=?,
1109 template RslLinkId link_id := ?,
1110 template octetstring l3_info := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001111 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, true),
Harald Welte7794d5b2017-12-16 23:00:20 +01001112 msg_type := RSL_MT_DATA_REQ,
1113 ies :={
1114 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1115 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
1116 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)})
1117 }
1118 }
1119
1120
Harald Welte643e2a62017-11-27 15:03:18 +01001121 /* 8.3.2 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001122 template (value) RSL_Message ts_RSL_DATA_IND(template (value) RslChannelNr chan_nr,
1123 template (value) RslLinkId link_id,
1124 octetstring l3_info) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001125 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, true),
1126 msg_type := RSL_MT_DATA_IND,
1127 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001128 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1129 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
1130 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
Harald Welte643e2a62017-11-27 15:03:18 +01001131 }
1132 }
Harald Welte9abd1282018-02-19 19:18:17 +01001133 template RSL_Message tr_RSL_DATA_IND(template RslChannelNr chan_nr, template RslLinkId link_id,
1134 template octetstring l3_info := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001135 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, true),
Harald Welte9abd1282018-02-19 19:18:17 +01001136 msg_type := RSL_MT_DATA_IND,
1137 ies :={
1138 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1139 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
1140 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)})
1141 }
1142 }
Harald Welte643e2a62017-11-27 15:03:18 +01001143
1144 /* 8.3.3 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001145 template (value) RSL_Message ts_RSL_ERROR_IND(template (value) RslChannelNr chan_nr,
Harald Weltea7d81f12019-06-02 22:33:19 +02001146 template (value) RslLinkId link_id,
1147 template (value) octetstring rlm_cause) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001148 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1149 msg_type := RSL_MT_ERROR_IND,
1150 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001151 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1152 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
Harald Weltea7d81f12019-06-02 22:33:19 +02001153 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{rlm_cause := ts_RSL_LV(rlm_cause)})
Harald Welte643e2a62017-11-27 15:03:18 +01001154 }
1155 }
Harald Welte9abd1282018-02-19 19:18:17 +01001156 template RSL_Message tr_RSL_ERROR_IND(template RslChannelNr chan_nr, template RslLinkId link_id,
Harald Weltea7d81f12019-06-02 22:33:19 +02001157 template octetstring rlm_cause := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001158 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001159 msg_type := RSL_MT_ERROR_IND,
1160 ies :={
1161 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1162 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
Harald Weltea7d81f12019-06-02 22:33:19 +02001163 tr_RSL_IE(RSL_IE_Body:{rlm_cause := tr_RSL_LV(rlm_cause)})
Harald Welte9abd1282018-02-19 19:18:17 +01001164 }
1165 }
Harald Welte643e2a62017-11-27 15:03:18 +01001166
Harald Welteefa7d912018-04-18 23:22:15 +02001167 /* 8.3.4 BTS <- BSC */
1168 template (value) RSL_Message ts_RSL_EST_REQ(template (value) RslChannelNr chan_nr,
1169 template (value) RslLinkId link_id) := {
1170 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1171 msg_type := RSL_MT_EST_REQ,
1172 ies := {
1173 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1174 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id})
1175 }
1176 }
1177 template RSL_Message tr_RSL_EST_REQ(template RslChannelNr chan_nr, template RslLinkId link_id) := {
1178 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
1179 msg_type := RSL_MT_EST_REQ,
1180 ies := {
1181 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1182 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
1183 }
1184 }
1185
1186 /* 8.3.5 BTS -> BSC */
1187 template (value) RSL_Message ts_RSL_EST_CONF(template (value) RslChannelNr chan_nr,
1188 template (value) RslLinkId link_id) := {
1189 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1190 msg_type := RSL_MT_EST_CONF,
1191 ies := {
1192 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1193 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id})
1194 }
1195 }
1196 template RSL_Message tr_RSL_EST_CONF(template RslChannelNr chan_nr, template RslLinkId link_id) := {
1197 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
1198 msg_type := RSL_MT_EST_CONF,
1199 ies := {
1200 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1201 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
1202 }
1203 }
1204
Harald Welte643e2a62017-11-27 15:03:18 +01001205 /* 8.3.6 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001206 template (value) RSL_Message ts_RSL_EST_IND(template (value) RslChannelNr chan_nr,
1207 template (value) RslLinkId link_id,
1208 octetstring l3_info) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001209 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1210 msg_type := RSL_MT_EST_IND,
1211 ies := {
Harald Welte735dd072017-12-12 14:55:17 +01001212 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1213 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
1214 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
Harald Welte643e2a62017-11-27 15:03:18 +01001215 }
1216 }
Harald Welte9abd1282018-02-19 19:18:17 +01001217 template RSL_Message tr_RSL_EST_IND(template RslChannelNr chan_nr, template RslLinkId link_id,
1218 template octetstring l3_info := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001219 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001220 msg_type := RSL_MT_EST_IND,
1221 ies := {
1222 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1223 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
1224 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)})
1225 }
1226 }
Harald Welte0472ab42018-03-12 15:02:26 +01001227 template RSL_Message tr_RSL_EST_IND_NOL3(template RslChannelNr chan_nr, template RslLinkId link_id) :=
1228{
1229 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
1230 msg_type := RSL_MT_EST_IND,
1231 ies := {
1232 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1233 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
1234 }
1235 }
1236
Harald Welte643e2a62017-11-27 15:03:18 +01001237
1238 /* 8.3.7 BSC -> BTS */
Harald Welteefa7d912018-04-18 23:22:15 +02001239 template (value) RSL_Message ts_RSL_REL_REQ(template (value) RslChannelNr chan_nr,
Harald Welte0472ab42018-03-12 15:02:26 +01001240 template (value) RslLinkId link_id,
1241 template (value) RSL_IE_ReleaseMode rel_mode := RSL_REL_MODE_NORMAL) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001242 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1243 msg_type := RSL_MT_REL_REQ,
1244 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001245 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
Harald Welte0472ab42018-03-12 15:02:26 +01001246 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
1247 t_RSL_IE(RSL_IE_RELEASE_MODE, RSL_IE_Body:{release_mode := rel_mode})
Harald Welte643e2a62017-11-27 15:03:18 +01001248 }
1249 }
Harald Weltee8a5ab12017-12-09 22:34:57 +01001250 template RSL_Message tr_RSL_REL_REQ(template RslChannelNr chan_nr,
Harald Welte0472ab42018-03-12 15:02:26 +01001251 template RslLinkId link_id,
1252 template RSL_IE_ReleaseMode rel_mode := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001253 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Weltee8a5ab12017-12-09 22:34:57 +01001254 msg_type := RSL_MT_REL_REQ,
1255 ies :={
1256 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1257 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
Harald Welte0472ab42018-03-12 15:02:26 +01001258 tr_RSL_IE(RSL_IE_Body:{release_mode := rel_mode})
Harald Weltee8a5ab12017-12-09 22:34:57 +01001259 }
1260 }
Harald Welte643e2a62017-11-27 15:03:18 +01001261
1262 /* 8.3.8 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001263 template (value) RSL_Message ts_RSL_REL_CONF(template (value) RslChannelNr chan_nr,
1264 template (value) RslLinkId link_id) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001265 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1266 msg_type := RSL_MT_REL_CONF,
1267 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001268 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1269 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id})
Harald Welte643e2a62017-11-27 15:03:18 +01001270 }
1271 }
Harald Welte9abd1282018-02-19 19:18:17 +01001272 template RSL_Message tr_RSL_REL_CONF(template RslChannelNr chan_nr, template RslLinkId link_id) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001273 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001274 msg_type := RSL_MT_REL_CONF,
1275 ies :={
1276 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1277 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
1278 }
1279 }
Harald Welte643e2a62017-11-27 15:03:18 +01001280
1281 /* 8.3.9 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001282 template (value) RSL_Message ts_RSL_REL_IND(template (value) RslChannelNr chan_nr,
1283 template (value) RslLinkId link_id) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001284 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RLL, false),
1285 msg_type := RSL_MT_REL_IND,
1286 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001287 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1288 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id})
Harald Welte643e2a62017-11-27 15:03:18 +01001289 }
1290 }
Harald Welte9abd1282018-02-19 19:18:17 +01001291 template RSL_Message tr_RSL_REL_IND(template RslChannelNr chan_nr, template RslLinkId link_id) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001292 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_RLL, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001293 msg_type := RSL_MT_REL_IND,
1294 ies :={
1295 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1296 tr_RSL_IE(RSL_IE_Body:{link_id := link_id})
1297 }
1298 }
Harald Welte643e2a62017-11-27 15:03:18 +01001299
1300 /* 8.3.10 BSC -> BTS */
Harald Welteefa7d912018-04-18 23:22:15 +02001301 template (value) RSL_Message ts_RSL_UNITDATA_REQ(template (value) RslChannelNr chan_nr,
1302 template (value) RslLinkId link_id,
1303 octetstring l3_info)
Harald Welte643e2a62017-11-27 15:03:18 +01001304 modifies ts_RSL_DATA_REQ := {
1305 msg_type := RSL_MT_UNIT_DATA_REQ
1306 }
Harald Welte0472ab42018-03-12 15:02:26 +01001307 template RSL_Message tr_RSL_UNITDATA_REQ(template RslChannelNr chan_nr,
1308 template RslLinkId link_id,
Vadim Yanitskiy8f98d3f2018-10-03 17:58:10 +07001309 template octetstring l3_info := ?)
Harald Welte0472ab42018-03-12 15:02:26 +01001310 modifies tr_RSL_DATA_REQ := {
1311 msg_type := RSL_MT_UNIT_DATA_REQ
1312 }
1313
Harald Welte643e2a62017-11-27 15:03:18 +01001314
1315 /* 8.3.11 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001316 template (value) RSL_Message ts_RSL_UNITDATA_IND(template (value) RslChannelNr chan_nr,
1317 template (value) RslLinkId link_id,
1318 octetstring l3_info)
Harald Welte643e2a62017-11-27 15:03:18 +01001319 modifies ts_RSL_DATA_IND := {
1320 msg_type := RSL_MT_UNIT_DATA_IND
1321 }
Harald Welte0472ab42018-03-12 15:02:26 +01001322 template RSL_Message tr_RSL_UNITDATA_IND(template RslChannelNr chan_nr,
Vadim Yanitskiyfabe0f22018-10-03 17:51:47 +07001323 template RslLinkId link_id,
Vadim Yanitskiy8f98d3f2018-10-03 17:58:10 +07001324 template octetstring l3_info := ?)
Harald Welte0472ab42018-03-12 15:02:26 +01001325 modifies tr_RSL_DATA_IND := {
1326 msg_type := RSL_MT_UNIT_DATA_IND
1327 }
1328
1329
Harald Welte643e2a62017-11-27 15:03:18 +01001330
1331
1332 /* DEDICATED CANNEL MANAGEMENT MESSAGES */
1333
1334 /* 8.4.1 BSC -> BTS */
Harald Welteefa7d912018-04-18 23:22:15 +02001335 template (value) RSL_Message ts_RSL_CHAN_ACT(template (value) RslChannelNr chan_nr,
Harald Welte921f9e02019-05-19 22:27:11 +02001336 template (value) RSL_IE_ChannelMode mode,
1337 template (value) RSL_IE_ActivationType at := t_RSL_IE_ActType_IA) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001338 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1339 msg_type := RSL_MT_CHAN_ACTIV,
1340 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001341 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
Harald Welte921f9e02019-05-19 22:27:11 +02001342 t_RSL_IE(RSL_IE_ACT_TYPE, RSL_IE_Body:{act_type := at}),
Harald Welte735dd072017-12-12 14:55:17 +01001343 t_RSL_IE(RSL_IE_CHAN_MODE, RSL_IE_Body:{chan_mode := mode})
Harald Welte643e2a62017-11-27 15:03:18 +01001344 /* lots of optional IEs */
1345 }
1346 }
Harald Welte94e0c342018-04-07 11:33:23 +02001347 template RSL_Message tr_RSL_CHAN_ACT(template RslChannelNr chan_nr,
Harald Welte921f9e02019-05-19 22:27:11 +02001348 template RSL_IE_ChannelMode mode,
1349 template (value) RSL_IE_ActivationType at := t_RSL_IE_ActType_IA) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001350 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte94e0c342018-04-07 11:33:23 +02001351 msg_type := RSL_MT_CHAN_ACTIV,
1352 ies :={
1353 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
Harald Welte921f9e02019-05-19 22:27:11 +02001354 tr_RSL_IE(RSL_IE_Body:{act_type := at}),
Harald Welte94e0c342018-04-07 11:33:23 +02001355 tr_RSL_IE(RSL_IE_Body:{chan_mode := mode}),
1356 /* lots of optional IEs */
1357 *
1358 }
1359 }
1360 template RSL_Message tr_RSL_CHAN_ACT_PDCH(template RslChannelNr chan_nr,
1361 template RSL_IE_ChannelMode mode) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001362 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte94e0c342018-04-07 11:33:23 +02001363 msg_type := RSL_MT_CHAN_ACTIV,
1364 ies :={
1365 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1366 tr_RSL_IE(RSL_IE_Body:{act_type := t_RSL_IE_ActType_PDCH}),
1367 /* lots of optional IEs */
1368 *
1369 }
1370 }
1371
Harald Welte643e2a62017-11-27 15:03:18 +01001372
1373 /* 8.4.2 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001374 template (value) RSL_Message ts_RSL_CHAN_ACT_ACK(template (value) RslChannelNr chan_nr,
1375 GsmFrameNumber fn) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001376 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1377 msg_type := RSL_MT_CHAN_ACTIV_ACK,
1378 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001379 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1380 t_RSL_IE(RSL_IE_FRAME_NUMBER, RSL_IE_Body:{frame_nr := ts_RSL_IE_FrameNumber(fn)})
Harald Welte643e2a62017-11-27 15:03:18 +01001381 }
1382 }
Harald Welte9abd1282018-02-19 19:18:17 +01001383 template RSL_Message tr_RSL_CHAN_ACT_ACK(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001384 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001385 msg_type := RSL_MT_CHAN_ACTIV_ACK,
1386 ies := {
1387 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1388 tr_RSL_IE(RSL_IE_Body:{frame_nr := ?})
1389 }
1390 }
Harald Welte643e2a62017-11-27 15:03:18 +01001391
1392 /* 8.4.3 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001393 template (value) RSL_Message ts_RSL_CHAN_ACT_NACK(template (value) RslChannelNr chan_nr,
1394 RSL_Cause cause) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001395 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1396 msg_type := RSL_MT_CHAN_ACTIV_NACK,
1397 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001398 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1399 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
Harald Welte643e2a62017-11-27 15:03:18 +01001400 }
1401 }
Harald Welte9abd1282018-02-19 19:18:17 +01001402 template RSL_Message tr_RSL_CHAN_ACT_NACK(template RslChannelNr chan_nr,
1403 template RSL_Cause cause := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001404 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001405 msg_type := RSL_MT_CHAN_ACTIV_NACK,
1406 ies := {
1407 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1408 tr_RSL_IE(RSL_IE_Body:{cause := ?})
1409 }
1410 }
Harald Welte643e2a62017-11-27 15:03:18 +01001411
1412 /* 8.4.4 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001413 template (value) RSL_Message ts_RSL_CONN_FAIL_IND(RslChannelNr chan_nr, RSL_Cause cause) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001414 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1415 msg_type := RSL_MT_CONN_FAIL,
1416 ies :={
Harald Welte735dd072017-12-12 14:55:17 +01001417 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1418 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
Harald Welte643e2a62017-11-27 15:03:18 +01001419 }
1420 }
Harald Welte9abd1282018-02-19 19:18:17 +01001421 template RSL_Message tr_RSL_CONN_FAIL_IND(template RslChannelNr chan_nr,
1422 template RSL_Cause cause := ?) := {
1423 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1424 msg_type := RSL_MT_CONN_FAIL,
1425 ies :={
1426 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1427 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
1428 }
1429 }
Harald Welte643e2a62017-11-27 15:03:18 +01001430
Harald Weltee8a5ab12017-12-09 22:34:57 +01001431 /* 8.4.5 BSC -> BTS */
1432 template RSL_Message tr_RSL_DEACT_SACCH(template RslChannelNr chan_nr) := {
1433 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1434 msg_type := RSL_MT_DEACTIVATE_SACCH,
1435 ies := {
1436 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
1437 }
1438 }
Harald Welteefa7d912018-04-18 23:22:15 +02001439 template (value) RSL_Message ts_RSL_DEACT_SACCH(template (value) RslChannelNr chan_nr) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001440 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1441 msg_type := RSL_MT_DEACTIVATE_SACCH,
1442 ies := {
1443 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1444 }
1445 }
1446
Harald Weltee8a5ab12017-12-09 22:34:57 +01001447
Harald Welte73cd2712017-12-17 00:44:52 +01001448 /* 8.4.6 BSC ->BTS */
1449 template RSL_Message tr_RSL_ENCR_CMD(template RslChannelNr chan_nr,
1450 template RslLinkId link_id := ?,
Harald Weltee613f962018-04-18 22:38:16 +02001451 template RSL_AlgId alg := ?,
Harald Welte73cd2712017-12-17 00:44:52 +01001452 template octetstring key := ?,
1453 template octetstring l3_info := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001454 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte73cd2712017-12-17 00:44:52 +01001455 msg_type := RSL_MT_ENCR_CMD,
1456 ies := {
1457 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1458 tr_RSL_IE(RSL_IE_Body:{encr_info := tr_RSL_IE_EncrInfo(alg, key)}),
1459 tr_RSL_IE(RSL_IE_Body:{link_id := link_id}),
1460 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)})
1461 }
1462 }
Harald Welteefa7d912018-04-18 23:22:15 +02001463 template (value) RSL_Message ts_RSL_ENCR_CMD(template (value) RslChannelNr chan_nr,
1464 template (value) RslLinkId link_id,
Harald Weltee613f962018-04-18 22:38:16 +02001465 template (value) RSL_AlgId alg, octetstring key,
Harald Welteefa7d912018-04-18 23:22:15 +02001466 octetstring l3_info) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001467 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1468 msg_type := RSL_MT_ENCR_CMD,
1469 ies := {
1470 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
Harald Welteefa7d912018-04-18 23:22:15 +02001471 t_RSL_IE(RSL_IE_ENCR_INFO, RSL_IE_Body:{encr_info := ts_RSL_IE_EncrInfo(alg, key)}),
Harald Welte9abd1282018-02-19 19:18:17 +01001472 t_RSL_IE(RSL_IE_LINK_IDENT, RSL_IE_Body:{link_id := link_id}),
Harald Welteefa7d912018-04-18 23:22:15 +02001473 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
Harald Welte9abd1282018-02-19 19:18:17 +01001474 }
1475 }
Harald Welte73cd2712017-12-17 00:44:52 +01001476
Harald Welte2691adf2018-02-22 17:32:39 +01001477 template RSL_Message tr_RSL_MEAS_RES(template RslChannelNr chan_nr,
1478 template uint8_t meas_res_nr := ?,
1479 template RSL_IE_UplinkMeas ul_meas := ?,
1480 template RSL_IE_BS_Power bs_power := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001481 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte2691adf2018-02-22 17:32:39 +01001482 msg_type := RSL_MT_MEAS_RES,
1483 ies := {
1484 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1485 tr_RSL_IE(RSL_IE_Body:{meas_res_nr := meas_res_nr}),
1486 tr_RSL_IE(RSL_IE_Body:{uplink_meas := ul_meas}),
1487 tr_RSL_IE(RSL_IE_Body:{bs_power := bs_power}),
1488 *
1489 }
1490 }
1491
Philipp Maierdd841d32019-12-17 14:44:54 +01001492 /* Receive template for a measurement report that lacks the measurement report
1493 * from the MS (l1_info, l3_info and ms timing offset */
1494 template RSL_Message tr_RSL_MEAS_RES_EMPTY(template RslChannelNr chan_nr,
1495 template uint8_t meas_res_nr := ?,
1496 template RSL_IE_UplinkMeas ul_meas := ?,
1497 template RSL_IE_BS_Power bs_power := ?) := {
1498 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1499 msg_type := RSL_MT_MEAS_RES,
1500 ies := {
1501 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1502 tr_RSL_IE(RSL_IE_Body:{meas_res_nr := meas_res_nr}),
1503 tr_RSL_IE(RSL_IE_Body:{uplink_meas := ul_meas}),
1504 tr_RSL_IE(RSL_IE_Body:{bs_power := bs_power})
1505 }
1506 }
1507
Harald Welte39b47be2018-02-23 18:58:48 +01001508 /* Osmocom specific template, require lots of optional fields to be present */
1509 template RSL_Message tr_RSL_MEAS_RES_OSMO(template RslChannelNr chan_nr,
1510 template uint8_t meas_res_nr := ?,
1511 template RSL_IE_UplinkMeas ul_meas := ?,
1512 template RSL_IE_BS_Power bs_power := ?,
1513 template RSL_IE_L1Info l1_info := ?,
1514 template octetstring l3_info := ?,
1515 template uint8_t ms_to := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001516 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte39b47be2018-02-23 18:58:48 +01001517 msg_type := RSL_MT_MEAS_RES,
1518 ies := {
1519 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1520 tr_RSL_IE(RSL_IE_Body:{meas_res_nr := meas_res_nr}),
1521 tr_RSL_IE(RSL_IE_Body:{uplink_meas := ul_meas}),
1522 tr_RSL_IE(RSL_IE_Body:{bs_power := bs_power}),
1523 tr_RSL_IE(RSL_IE_Body:{l1_info := l1_info}),
1524 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)}),
1525 tr_RSL_IE(RSL_IE_Body:{ms_timing_offset := ms_to})
1526 }
1527 }
1528
Eric Wildf1827a72019-05-28 17:37:35 +02001529 /* 8.4.9 BSC -> BTS */
1530 template (value) RSL_Message ts_RSL_MODE_MODIFY_REQ(template (value) RslChannelNr chan_nr,
1531 template (value) RSL_IE_ChannelMode mode) := {
1532 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1533 msg_type := RSL_MT_MODE_MODIFY_REQ,
1534 ies :={
1535 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1536 t_RSL_IE(RSL_IE_CHAN_MODE, RSL_IE_Body:{chan_mode := mode})
1537 /* lots of optional IEs */
1538 }
1539 }
1540 template RSL_Message tr_RSL_MODE_MODIFY_REQ(template RslChannelNr chan_nr,
1541 template RSL_IE_ChannelMode mode) := {
1542 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1543 msg_type := RSL_MT_MODE_MODIFY_REQ,
1544 ies :={
1545 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1546 tr_RSL_IE(RSL_IE_Body:{chan_mode := mode}),
1547 /* lots of optional IEs */
1548 *
1549 }
1550 }
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +02001551
1552 template RSL_Message tr_RSL_MODE_MODIFY_REQ_with_OSMO_TSC(template RslChannelNr chan_nr,
1553 template RSL_IE_ChannelMode mode,
1554 template uint8_t tsc_set := ?,
1555 template uint8_t tsc := ?) := {
1556 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1557 msg_type := RSL_MT_MODE_MODIFY_REQ,
1558 ies := {
1559 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1560 tr_RSL_IE(RSL_IE_Body:{chan_mode := mode}),
1561 tr_RSL_IE(RSL_IE_Body:{osmo_training_sequence := {
1562 len := ?,
1563 tsc_set := tsc_set,
1564 tsc := tsc
1565 }
1566 })
1567 }
1568 };
Eric Wildf1827a72019-05-28 17:37:35 +02001569
Harald Welte7794d5b2017-12-16 23:00:20 +01001570 /* 8.4.10 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001571 template (value) RSL_Message ts_RSL_MODE_MODIFY_ACK(template (value) RslChannelNr chan_nr) := {
Harald Welte7794d5b2017-12-16 23:00:20 +01001572 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1573 msg_type := RSL_MT_MODE_MODIFY_ACK,
1574 ies := {
1575 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1576 }
1577 }
Harald Welte9abd1282018-02-19 19:18:17 +01001578 template RSL_Message tr_RSL_MODE_MODIFY_ACK(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001579 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001580 msg_type := RSL_MT_MODE_MODIFY_ACK,
1581 ies := {
1582 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
1583 }
1584 }
Harald Welte7794d5b2017-12-16 23:00:20 +01001585
Harald Welte643e2a62017-11-27 15:03:18 +01001586 /* 8.4.11 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001587 template (value) RSL_Message ts_RSL_MODE_MODIFY_NACK(template (value) RslChannelNr chan_nr,
1588 RSL_Cause cause) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001589 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1590 msg_type := RSL_MT_MODE_MODIFY_NACK,
1591 ies := {
1592 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1593 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
1594 }
Harald Welte643e2a62017-11-27 15:03:18 +01001595 }
Harald Welte9abd1282018-02-19 19:18:17 +01001596 template RSL_Message tr_RSL_MODE_MODIFY_NACK(template RslChannelNr chan_nr,
1597 template RSL_Cause cause) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001598 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001599 msg_type := RSL_MT_MODE_MODIFY_NACK,
1600 ies := {
1601 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1602 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
1603 }
1604 }
1605
Harald Welte643e2a62017-11-27 15:03:18 +01001606
Harald Welte6a8199d2018-01-29 21:58:53 +01001607 /* 8.4.14: BTS <- BSC */
1608 template RSL_Message tr_RSL_RF_CHAN_REL(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001609 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte6a8199d2018-01-29 21:58:53 +01001610 msg_type := RSL_MT_RF_CHAN_REL,
1611 ies := {
1612 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
1613 }
1614 }
Harald Welteefa7d912018-04-18 23:22:15 +02001615 template (value) RSL_Message ts_RSL_RF_CHAN_REL(template (value) RslChannelNr chan_nr) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001616 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1617 msg_type := RSL_MT_RF_CHAN_REL,
1618 ies := {
1619 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1620 }
1621 }
Harald Welte6a8199d2018-01-29 21:58:53 +01001622
Philipp Maier4d1e9c92018-12-20 11:11:56 +01001623 /* 8.4.15: BTS <- BSC */
1624 template (value) RSL_Message ts_RSL_MS_PWR_CTRL(template (value) RslChannelNr chan_nr,
1625 template (value) RSL_IE_MS_Power ms_power) := {
1626 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1627 msg_type := RSL_MT_MS_POWER_CONTROL,
1628 ies := {
1629 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1630 t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ms_power})
1631 /* One optional IE: MS POWER PARAMETERS */
1632 }
1633 }
1634
Eric Wild61edb7e2019-06-03 12:38:31 +02001635 template (value) RSL_Message ts_RSL_MS_PWR_CTRL_with_pp(template (value) RslChannelNr chan_nr,
1636 integer pwr_level) := {
1637 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1638 msg_type := RSL_MT_MS_POWER_CONTROL,
1639 ies := {
1640 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1641 t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ts_RSL_IE_MS_Power(pwr_level)}),
1642 t_RSL_IE(RSL_IE_MS_POWER_PARAM, RSL_IE_Body:{ms_power_params :=
1643 ts_RSL_IE_MS_Power_Parameters(''O)})
1644 }
1645 }
1646
Eric Wildae8f2622019-06-18 17:05:11 +02001647 /* 8.4.16: BTS <- BSC */
1648 template (value) RSL_Message ts_RSL_BS_PWR_CTRL(template (value) RslChannelNr chan_nr,
1649 template (value) RSL_IE_BS_Power bs_power) := {
1650 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1651 msg_type := RSL_MT_BS_POWER_CONTROL,
1652 ies := {
1653 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1654 t_RSL_IE(RSL_IE_BS_POWER, RSL_IE_Body:{bs_power := bs_power})
1655 /* One optional IE: BS POWER PARAMETERS */
1656 }
1657 }
Vadim Yanitskiy2a5a1ef2021-06-30 00:51:48 +02001658 template RSL_Message tr_RSL_BS_PWR_CTRL(template (present) RslChannelNr chan_nr,
1659 template (present) RSL_IE_BS_Power bs_power) := {
1660 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1661 msg_type := RSL_MT_BS_POWER_CONTROL,
1662 ies := {
1663 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1664 tr_RSL_IE(RSL_IE_Body:{bs_power := bs_power})
1665 /* One optional IE: BS POWER PARAMETERS */
1666 }
1667 }
Eric Wildae8f2622019-06-18 17:05:11 +02001668
Harald Welte4a267362017-12-09 17:49:32 +01001669 /* 8.4.19 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001670 template (value) RSL_Message ts_RSL_RF_CHAN_REL_ACK(template (value) RslChannelNr chan_nr) :=
Harald Welte4a267362017-12-09 17:49:32 +01001671 ts_RSL_MsgDiscType(ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1672 RSL_MT_RF_CHAN_REL_ACK,
Harald Welte735dd072017-12-12 14:55:17 +01001673 { t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}) });
Harald Welte4a267362017-12-09 17:49:32 +01001674
Harald Welte9abd1282018-02-19 19:18:17 +01001675 template RSL_Message tr_RSL_RF_CHAN_REL_ACK(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001676 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001677 msg_type := RSL_MT_RF_CHAN_REL_ACK,
1678 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001679 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
Harald Welte9abd1282018-02-19 19:18:17 +01001680 }
1681 }
1682
Harald Welteea17b912018-03-11 22:29:31 +01001683 /* 8.6.20 BTS <- BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001684 template (value) RSL_Message ts_RSL_SACCH_INF_MOD(template (value) RslChannelNr chan_nr,
1685 RSL_IE_SysinfoType si_type,
1686 octetstring l3_info) := {
Harald Welteea17b912018-03-11 22:29:31 +01001687 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1688 msg_type := RSL_MT_SACCH_INFO_MODIFY,
1689 ies := {
1690 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1691 t_RSL_IE(RSL_IE_SYSINFO_TYPE, RSL_IE_Body:{sysinfo_type := si_type}),
1692 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
1693 }
1694 }
1695
Neels Hofmeyr378a49c2018-06-15 22:18:43 +02001696 /* 8.4.7 BTS -> BSC */
1697 template (value) RSL_Message ts_RSL_HANDO_DET(template (value) RslChannelNr chan_nr) := {
1698 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1699 msg_type := RSL_MT_HANDO_DET,
1700 ies := {
1701 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
1702 }
1703 }
Vadim Yanitskiy7c2c10c2019-05-31 20:42:01 +07001704 template RSL_Message tr_RSL_HANDO_DET(template RslChannelNr chan_nr,
1705 template uint8_t acc_delay := ?) := {
1706 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
1707 msg_type := RSL_MT_HANDO_DET,
1708 ies := {
1709 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1710 tr_RSL_IE(RSL_IE_Body:{access_delay := acc_delay})
1711 }
1712 }
Neels Hofmeyr378a49c2018-06-15 22:18:43 +02001713
Harald Welteea17b912018-03-11 22:29:31 +01001714
Harald Welte643e2a62017-11-27 15:03:18 +01001715 /* COMMON CHANNEL MANAGEMENT MESSAGES */
1716
Harald Welte874c2232018-02-24 04:52:43 +01001717 /* 8.5.1 BTS <- BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001718 template (value) RSL_Message ts_RSL_BCCH_INFO(RSL_IE_SysinfoType si_type,
1719 octetstring full_bcch_info) := {
Harald Welte874c2232018-02-24 04:52:43 +01001720 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1721 msg_type := RSL_MT_BCCH_INFO,
1722 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001723 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_BCCH(0)}),
Harald Welte874c2232018-02-24 04:52:43 +01001724 t_RSL_IE(RSL_IE_SYSINFO_TYPE, RSL_IE_Body:{sysinfo_type := si_type}),
1725 t_RSL_IE(RSL_IE_FULL_BCCH_INFO, RSL_IE_Body:{other := ts_RSL_LV(full_bcch_info)})
1726 }
1727 }
Harald Welte09538f82019-08-01 09:50:25 +02001728 template RSL_Message tr_RSL_NO_BCCH_INFO(template RSL_IE_SysinfoType si_type := ?) := {
1729 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1730 msg_type := RSL_MT_BCCH_INFO,
1731 ies := {
1732 tr_RSL_IE(RSL_IE_Body:{chan_nr := ts_RslChanNr_BCCH(0)}),
1733 tr_RSL_IE(RSL_IE_Body:{sysinfo_type := si_type})
1734 }
1735 }
1736 template RSL_Message tr_RSL_BCCH_INFO(template RSL_IE_SysinfoType si_type := ?,
1737 template octetstring full_bcch_info := ?) := {
1738 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1739 msg_type := RSL_MT_BCCH_INFO,
1740 ies := {
1741 tr_RSL_IE(RSL_IE_Body:{chan_nr := ts_RslChanNr_BCCH(0)}),
1742 tr_RSL_IE(RSL_IE_Body:{sysinfo_type := si_type}),
1743 tr_RSL_IE(RSL_IE_Body:{other := tr_RSL_LV(full_bcch_info)}),
1744 *
1745 }
1746 }
Harald Welte874c2232018-02-24 04:52:43 +01001747
Harald Welte7ae93142017-12-07 17:56:15 +01001748 /* 8.5.2 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001749 template (value) RSL_Message ts_RSL_RACH_LOAD_IND(uint16_t slot_ct, uint16_t busy_ct,
1750 uint16_t acc_ct) := {
Harald Welte7ae93142017-12-07 17:56:15 +01001751 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1752 msg_type := RSL_MT_CCCH_LOAD_IND,
1753 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001754 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_RACH(0)}),
Harald Welte735dd072017-12-12 14:55:17 +01001755 t_RSL_IE(RSL_IE_RACH_LOAD, RSL_IE_Body:{rach_load := ts_RSL_IE_RachLoad(slot_ct, busy_ct, acc_ct)})
Harald Welte7ae93142017-12-07 17:56:15 +01001756 }
1757 }
Harald Welte68e495b2018-02-25 00:05:57 +01001758 template RSL_Message tr_RSL_RACH_LOAD_IND(template uint16_t slot_ct := ?,
1759 template uint16_t busy_ct := ?,
Harald Welte09538f82019-08-01 09:50:25 +02001760 template uint16_t acc_ct := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001761 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Welte68e495b2018-02-25 00:05:57 +01001762 msg_type := RSL_MT_CCCH_LOAD_IND,
1763 ies := {
1764 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_RACH(0)}),
1765 tr_RSL_IE(RSL_IE_Body:{rach_load := tr_RSL_IE_RachLoad(slot_ct, busy_ct, acc_ct)})
1766 }
1767 }
1768
Harald Welteefa7d912018-04-18 23:22:15 +02001769 template (value) RSL_Message ts_RSL_PAGING_LOAD_IND(uint16_t buffer_space) := {
Harald Welte7ae93142017-12-07 17:56:15 +01001770 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1771 msg_type := RSL_MT_CCCH_LOAD_IND,
1772 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001773 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_PCH_AGCH(0)}),
Harald Welte735dd072017-12-12 14:55:17 +01001774 t_RSL_IE(RSL_IE_PAGING_LOAD, RSL_IE_Body:{paging_load := buffer_space})
Harald Welte7ae93142017-12-07 17:56:15 +01001775 }
1776 }
Harald Welte68e495b2018-02-25 00:05:57 +01001777 template RSL_Message tr_RSL_PAGING_LOAD_IND(template uint16_t buffer_space := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001778 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Welte68e495b2018-02-25 00:05:57 +01001779 msg_type := RSL_MT_CCCH_LOAD_IND,
1780 ies := {
1781 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_PCH_AGCH(0)}),
1782 tr_RSL_IE(RSL_IE_Body:{paging_load := buffer_space})
1783 }
1784 }
1785
Harald Welte7ae93142017-12-07 17:56:15 +01001786
Harald Welte643e2a62017-11-27 15:03:18 +01001787 /* 8.5.3 BTS -> BSC */
Vadim Yanitskiyab448a52019-05-31 20:24:03 +07001788 template (value) RSL_Message ts_RSL_CHAN_RQD(OCT1 ra, GsmFrameNumber fn,
1789 template (value) RslChannelNr chan_nr := ts_RslChanNr_RACH(0),
1790 uint8_t acc_del := 0) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001791 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1792 msg_type := RSL_MT_CHAN_RQD,
1793 ies := {
Vadim Yanitskiyab448a52019-05-31 20:24:03 +07001794 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1795 /* TODO: we may need to have optional RSL_IE_LINK_IDENT IE here */
Harald Welte735dd072017-12-12 14:55:17 +01001796 t_RSL_IE(RSL_IE_REQ_REFERENCE, RSL_IE_Body:{req_ref := ts_RSL_IE_ReqRef(ra, fn)}),
1797 t_RSL_IE(RSL_IE_ACCESS_DELAY, RSL_IE_Body:{access_delay := acc_del})
Harald Welte643e2a62017-11-27 15:03:18 +01001798 }
1799 }
Harald Welte9abd1282018-02-19 19:18:17 +01001800 template RSL_Message tr_RSL_CHAN_RQD(template OCT1 ra, template GsmFrameNumber fn := ?,
Vadim Yanitskiyab448a52019-05-31 20:24:03 +07001801 template RslChannelNr chan_nr := ts_RslChanNr_RACH(0),
1802 template uint8_t acc_del := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001803 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Welte9abd1282018-02-19 19:18:17 +01001804 msg_type := RSL_MT_CHAN_RQD,
1805 ies := {
Vadim Yanitskiyab448a52019-05-31 20:24:03 +07001806 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1807 /* TODO: we may need to have optional RSL_IE_LINK_IDENT IE here */
Harald Welte9abd1282018-02-19 19:18:17 +01001808 tr_RSL_IE(RSL_IE_Body:{req_ref := tr_RSL_IE_ReqRef(ra, fn)}),
1809 tr_RSL_IE(RSL_IE_Body:{access_delay := acc_del})
1810 }
1811 }
Harald Welte643e2a62017-11-27 15:03:18 +01001812
1813 /* 8.5.4 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001814 template (value) RSL_Message ts_DELETE_IND(template (value) RslChannelNr chan_nr,
1815 octetstring imm_ass) := {
Harald Welte643e2a62017-11-27 15:03:18 +01001816 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1817 msg_type := RSL_MT_DELETE_IND,
1818 ies := {
Harald Welte735dd072017-12-12 14:55:17 +01001819 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1820 t_RSL_IE(RSL_IE_FULL_IMM_ASS_INFO, RSL_IE_Body:{full_imm_ass_info := ts_RSL_LV(imm_ass)})
Harald Welte643e2a62017-11-27 15:03:18 +01001821 }
1822 }
Harald Weltee8d750e2018-06-10 21:41:35 +02001823 template RSL_Message tr_RSL_DELETE_IND(template octetstring imm_ass := ?, template uint3_t tn) := {
1824 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1825 msg_type := RSL_MT_DELETE_IND,
1826 ies := {
1827 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_PCH_AGCH(tn)}),
1828 tr_RSL_IE(RSL_IE_Body:{full_imm_ass_info := tr_RSL_LV(imm_ass)}),
1829 *
1830 }
1831 }
Harald Welte643e2a62017-11-27 15:03:18 +01001832
Harald Weltec2877752017-12-07 17:54:35 +01001833 /* 8.5.5 BSC -> BTS */
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07001834 template RSL_Message tr_RSL_PAGING_CMD(template MobileIdentityV mi, template uint3_t tn := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001835 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Weltec2877752017-12-07 17:54:35 +01001836 msg_type := RSL_MT_PAGING_CMD,
1837 ies := {
1838 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_PCH_AGCH(tn)}),
1839 tr_RSL_IE(RSL_IE_Body:{paging_group := ?}),
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07001840 tr_RSL_IE(RSL_IE_Body:{ms_identity := tr_MI_LV(mi)}),
Harald Weltec2877752017-12-07 17:54:35 +01001841 * /* opt: channel needed, eMLPP prio */
1842 }
1843 }
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07001844 template (value) RSL_Message ts_RSL_PAGING_CMD(MobileIdentityV mi, uint8_t pg, uint3_t tn := 0) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001845 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1846 msg_type := RSL_MT_PAGING_CMD,
1847 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001848 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_PCH_AGCH(tn)}),
Harald Welte9abd1282018-02-19 19:18:17 +01001849 t_RSL_IE(RSL_IE_PAGING_GROUP, RSL_IE_Body:{paging_group := pg}),
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07001850 t_RSL_IE(RSL_IE_MS_IDENTITY, RSL_IE_Body:{ms_identity := ts_MI_LV(mi)})
Harald Welte9abd1282018-02-19 19:18:17 +01001851 }
1852 }
Harald Weltec2877752017-12-07 17:54:35 +01001853
1854 /* 8.5.6 BSC -> BTS */
1855 template RSL_Message tr_RSL_IMM_ASSIGN(template uint3_t tn := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02001856 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
Harald Weltec2877752017-12-07 17:54:35 +01001857 msg_type := RSL_MT_IMMEDIATE_ASSIGN_CMD,
1858 ies := {
1859 tr_RSL_IE(RSL_IE_Body:{chan_nr := t_RslChanNr_PCH_AGCH(tn)}),
1860 tr_RSL_IE(RSL_IE_Body:{full_imm_ass_info := ?})
1861 }
1862 }
Harald Welteefa7d912018-04-18 23:22:15 +02001863 template (value) RSL_Message ts_RSL_IMM_ASSIGN(octetstring f_ass_inf, uint3_t tn := 0) := {
Harald Welte9abd1282018-02-19 19:18:17 +01001864 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1865 msg_type := RSL_MT_IMMEDIATE_ASSIGN_CMD,
1866 ies := {
Harald Welteefa7d912018-04-18 23:22:15 +02001867 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := ts_RslChanNr_PCH_AGCH(tn)}),
Harald Welte9abd1282018-02-19 19:18:17 +01001868 t_RSL_IE(RSL_IE_FULL_IMM_ASS_INFO, RSL_IE_Body:{full_imm_ass_info := ts_RSL_LV(f_ass_inf)})
1869 }
1870 }
Harald Weltec2877752017-12-07 17:54:35 +01001871
Harald Weltecc373202018-09-10 10:28:21 +02001872 /* 8.5.8 BTS <- BSC SMS BROADCAST COMMAND */
1873 template RSL_Message tr_RSL_SMSCB_CMD(template RSL_IE_CbCommandType cb_cmd := ?,
1874 template octetstring msg := ?,
1875 template RslChannelNr chan_nr := ?) := {
1876 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1877 msg_type := RSL_MT_SMS_BC_CMD,
1878 ies := {
1879 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1880 tr_RSL_IE(RSL_IE_Body:{cb_cmd_type := cb_cmd}),
1881 tr_RSL_IE(RSL_IE_Body:{smscb_message := tr_RSL_LV(msg)}),
1882 *
1883 }
1884 }
1885 template (value) RSL_Message ts_RSL_SMSCB_CMD(template (value) RSL_IE_CbCommandType cb_cmd,
1886 template (value) octetstring msg,
1887 template (value) RslChannelNr chan_nr :=
1888 ts_RslChanNr_SDCCH4(0, 2)) := {
1889 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1890 msg_type := RSL_MT_SMS_BC_CMD,
1891 ies := {
1892 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1893 t_RSL_IE(RSL_IE_CB_CMD_TYPE, RSL_IE_Body:{cb_cmd_type := cb_cmd}),
1894 t_RSL_IE(RSL_IE_SMSCB_MSG, RSL_IE_Body:{smscb_message := ts_RSL_LV(msg)})
1895 /* optional channel type for extended CBCH */
1896 }
1897 }
1898
Harald Welte4a129f82019-05-21 16:35:22 +02001899 /* 8.5.9 BTS -> BSC CBCH LOAD INDICATION */
1900 template RSL_Message tr_RSL_CBCH_LOAD_IND_BASIC(template boolean overflow := ?,
1901 template uint4_t slot_count := ?,
1902 template RslChannelNr chan_nr := ?) := {
1903 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1904 msg_type := RSL_MT_CBCH_LOAD_IND,
1905 ies := {
1906 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1907 tr_RSL_IE(RSL_IE_Body:{cbch_load_info := tr_CbchLoadInfo(overflow, slot_count)})
1908 }
1909 }
1910 template (value) RSL_Message ts_RSL_CBCH_LOAD_IND_BASIC(boolean overflow, uint4_t slot_count,
1911 template (value) RslChannelNr chan_nr :=
1912 ts_RslChanNr_SDCCH4(0, 2)) := {
1913 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1914 msg_type := RSL_MT_CBCH_LOAD_IND,
1915 ies := {
1916 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1917 t_RSL_IE(RSL_IE_CBCH_LOAD_INFO, RSL_IE_Body:{cbch_load_info := ts_CbchLoadInfo(overflow, slot_count)})
1918 }
1919 }
1920 template RSL_Message tr_RSL_CBCH_LOAD_IND_EXTD(template boolean overflow := ?,
1921 template uint4_t slot_count := ?,
1922 template RslChannelNr chan_nr := ?) := {
1923 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1924 msg_type := RSL_MT_CBCH_LOAD_IND,
1925 ies := {
1926 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
1927 tr_RSL_IE(RSL_IE_Body:{cbch_load_info := tr_CbchLoadInfo(overflow, slot_count)}),
1928 tr_RSL_IE(RSL_IE_Body:{smscb_chan_ind := 1})
1929 }
1930 }
1931 template (value) RSL_Message ts_RSL_CBCH_LOAD_IND_EXTD(boolean overflow, uint4_t slot_count,
1932 template (value) RslChannelNr chan_nr :=
1933 ts_RslChanNr_SDCCH4(0, 2)) := {
1934 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
1935 msg_type := RSL_MT_CBCH_LOAD_IND,
1936 ies := {
1937 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
1938 t_RSL_IE(RSL_IE_CBCH_LOAD_INFO, RSL_IE_Body:{cbch_load_info := ts_CbchLoadInfo(overflow, slot_count)}),
1939 t_RSL_IE(RSL_IE_SMSCB_CHAN_INDICATOR, RSL_IE_Body:{smscb_chan_ind := 1})
1940 }
1941 }
1942
1943
Vadim Yanitskiy9f699532021-06-03 17:29:22 +02001944 /* 8.6.1 BTS -> BSC */
1945 template (value) RSL_Message
1946 ts_RSL_RF_RES_IND(template (value) RSL_ResourceInfo info) := {
1947 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
1948 msg_type := RSL_MT_RF_RES_IND,
1949 ies := {
1950 t_RSL_IE(RSL_IE_RESOURCE_INFO, RSL_IE_Body:{
1951 resource_info := {
1952 len := 0, /* overwritten */
1953 info := info
1954 }
1955 })
1956 }
1957 }
1958 template RSL_Message
1959 tr_RSL_RF_RES_IND(template (present) RSL_ResourceInfo info := ?) := {
1960 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
1961 msg_type := RSL_MT_RF_RES_IND,
1962 ies := {
1963 tr_RSL_IE(RSL_IE_Body:{
1964 resource_info := {
1965 len := ?,
1966 info := info
1967 }
1968 })
1969 }
1970 }
1971
1972
Harald Welte68e495b2018-02-25 00:05:57 +01001973 /* 8.6.2 BTS <- BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02001974 template (value) RSL_Message ts_RSL_SACCH_FILL(RSL_IE_SysinfoType si_type, octetstring l3_info) := {
Harald Welte68e495b2018-02-25 00:05:57 +01001975 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
1976 msg_type := RSL_MT_SACCH_FILL,
1977 ies := {
1978 t_RSL_IE(RSL_IE_SYSINFO_TYPE, RSL_IE_Body:{sysinfo_type := si_type}),
1979 t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
1980 }
1981 }
Harald Welte09538f82019-08-01 09:50:25 +02001982 template RSL_Message tr_RSL_NO_SACCH_FILL(template RSL_IE_SysinfoType si_type := ?) := {
1983 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
1984 msg_type := RSL_MT_SACCH_FILL,
1985 ies := {
1986 tr_RSL_IE(RSL_IE_Body:{sysinfo_type := si_type})
1987 }
1988 }
1989 template RSL_Message tr_RSL_SACCH_FILL(template RSL_IE_SysinfoType si_type := ?,
1990 template octetstring l3_info := ?) := {
1991 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
1992 msg_type := RSL_MT_SACCH_FILL,
1993 ies := {
1994 tr_RSL_IE(RSL_IE_Body:{sysinfo_type := si_type}),
1995 tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)}),
1996 *
1997 }
1998 }
1999
Harald Welte68e495b2018-02-25 00:05:57 +01002000
Harald Welte643e2a62017-11-27 15:03:18 +01002001 /* 8.6.4 BTS -> BSC */
Harald Welteefa7d912018-04-18 23:22:15 +02002002 template (value) RSL_Message ts_RSL_ERROR_REPORT(RSL_Cause cause) := {
Harald Welte01d982c2018-02-25 01:31:40 +01002003 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
2004 msg_type := RSL_MT_ERROR_REPORT,
Harald Welte643e2a62017-11-27 15:03:18 +01002005 ies := {
Harald Welte735dd072017-12-12 14:55:17 +01002006 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
Harald Welte643e2a62017-11-27 15:03:18 +01002007 }
2008 }
Harald Welte01d982c2018-02-25 01:31:40 +01002009 template RSL_Message tr_RSL_ERROR_REPORT(template RSL_Cause cause := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002010 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_TRX_MGMT, false),
Harald Welte01d982c2018-02-25 01:31:40 +01002011 msg_type := RSL_MT_ERROR_REPORT,
2012 ies := {
2013 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)}),
2014 *
2015 }
2016 }
2017
Harald Welte643e2a62017-11-27 15:03:18 +01002018
Harald Welte9958a4d2017-12-14 21:21:33 +01002019
2020 /* Abis/IP specific messages */
2021
2022 template RSL_Message tr_RSL_IPA_CRCX(template RslChannelNr chan_nr) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002023 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002024 msg_type := RSL_MT_IPAC_CRCX,
2025 ies := {
2026 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2027 *
2028 }
2029 }
Vadim Yanitskiye9141c22021-07-03 01:45:40 +02002030 template (value) RSL_Message
2031 ts_RSL_IPA_CRCX(template (value) RslChannelNr chan_nr,
Vadim Yanitskiyfc631642021-07-03 02:42:45 +02002032 template (value) OCT4 remote_ip := '7F000001'O,
Vadim Yanitskiye9141c22021-07-03 01:45:40 +02002033 template (value) uint16_t remote_port := 6766) := {
Harald Welte9abd1282018-02-19 19:18:17 +01002034 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2035 msg_type := RSL_MT_IPAC_CRCX,
2036 ies := {
Vadim Yanitskiye9141c22021-07-03 01:45:40 +02002037 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2038 t_RSL_IE(RSL_IE_IPAC_REMOTE_IP, RSL_IE_Body:{ipa_remote_ip := remote_ip}),
2039 t_RSL_IE(RSL_IE_IPAC_REMOTE_PORT, RSL_IE_Body:{ipa_remote_port := remote_port})
Harald Welte9abd1282018-02-19 19:18:17 +01002040 }
2041 }
2042
Harald Welte9958a4d2017-12-14 21:21:33 +01002043
Harald Welteefa7d912018-04-18 23:22:15 +02002044 template (value) RSL_Message ts_RSL_IPA_CRCX_ACK(template (value) RslChannelNr chan_nr,
Vadim Yanitskiyfc631642021-07-03 02:42:45 +02002045 uint16_t ipa_conn_id, OCT4 local_ip,
Harald Welteefa7d912018-04-18 23:22:15 +02002046 uint16_t local_port, uint7_t rtp_pt2) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01002047 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2048 msg_type := RSL_MT_IPAC_CRCX_ACK,
2049 ies := {
2050 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2051 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2052 t_RSL_IE(RSL_IE_IPAC_LOCAL_IP, RSL_IE_Body:{ipa_local_ip := local_ip}),
2053 t_RSL_IE(RSL_IE_IPAC_LOCAL_PORT, RSL_IE_Body:{ipa_local_port := local_port}),
2054 t_RSL_IE(RSL_IE_IPAC_RTP_PAYLOAD2, RSL_IE_Body:{ipa_rtp_pt2 := rtp_pt2})
2055 }
2056 }
Harald Welte9abd1282018-02-19 19:18:17 +01002057 template RSL_Message tr_RSL_IPA_CRCX_ACK(template RslChannelNr chan_nr,
2058 template uint16_t ipa_conn_id,
Vadim Yanitskiyfc631642021-07-03 02:42:45 +02002059 template OCT4 local_ip,
Harald Welte8bd0f822018-02-25 12:43:28 +01002060 template uint16_t local_port) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002061 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9abd1282018-02-19 19:18:17 +01002062 msg_type := RSL_MT_IPAC_CRCX_ACK,
2063 ies := {
2064 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2065 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2066 tr_RSL_IE(RSL_IE_Body:{ipa_local_ip := local_ip}),
Harald Welte8bd0f822018-02-25 12:43:28 +01002067 tr_RSL_IE(RSL_IE_Body:{ipa_local_port := local_port})
2068 /* Optional: RTP Payload Type 2 IE */
Harald Welte9abd1282018-02-19 19:18:17 +01002069 }
2070 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002071
Harald Welteefa7d912018-04-18 23:22:15 +02002072 template (value) RSL_Message ts_RSL_IPA_CRCX_NACK(template (value) RslChannelNr chan_nr,
2073 RSL_Cause cause) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01002074 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2075 msg_type := RSL_MT_IPAC_CRCX_NACK,
2076 ies := {
2077 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2078 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
2079 }
2080 }
Harald Welte9abd1282018-02-19 19:18:17 +01002081 template RSL_Message tr_RSL_IPA_CRCX_NACK(template RslChannelNr chan_nr,
2082 template RSL_Cause cause := ?) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002083 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9abd1282018-02-19 19:18:17 +01002084 msg_type := RSL_MT_IPAC_CRCX_NACK,
2085 ies := {
2086 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2087 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
2088 }
2089 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002090
Harald Welteefa7d912018-04-18 23:22:15 +02002091 template (value) RSL_Message ts_RSL_IPA_MDCX(template (value) RslChannelNr chan_nr,
2092 uint16_t ipa_conn_id,
Vadim Yanitskiyfc631642021-07-03 02:42:45 +02002093 OCT4 remote_ip, uint16_t remote_port,
Harald Welteefa7d912018-04-18 23:22:15 +02002094 uint7_t rtp_pt2) := {
Harald Welte30527452018-02-25 12:46:25 +01002095 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2096 msg_type := RSL_MT_IPAC_MDCX,
2097 ies := {
2098 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2099 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2100 t_RSL_IE(RSL_IE_IPAC_REMOTE_IP, RSL_IE_Body:{ipa_remote_ip := remote_ip}),
2101 t_RSL_IE(RSL_IE_IPAC_REMOTE_PORT, RSL_IE_Body:{ipa_remote_port := remote_port}),
2102 /* optional: RTP Payload Type */
2103 t_RSL_IE(RSL_IE_IPAC_RTP_PAYLOAD2, RSL_IE_Body:{ipa_rtp_pt2 := rtp_pt2})
2104 }
2105 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002106 template RSL_Message tr_RSL_IPA_MDCX(template RslChannelNr chan_nr,
2107 template uint16_t ipa_conn_id) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002108 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002109 msg_type := RSL_MT_IPAC_MDCX,
2110 ies := {
2111 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2112 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2113 *
2114 }
2115 }
2116
Harald Welteefa7d912018-04-18 23:22:15 +02002117 template (value) RSL_Message ts_RSL_IPA_MDCX_ACK(template (value) RslChannelNr chan_nr,
2118 uint16_t ipa_conn_id,
Vadim Yanitskiyfc631642021-07-03 02:42:45 +02002119 OCT4 local_ip, uint16_t local_port,
Harald Welteefa7d912018-04-18 23:22:15 +02002120 uint7_t rtp_pt2) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01002121 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte71b5ec82017-12-16 23:01:10 +01002122 msg_type := RSL_MT_IPAC_MDCX_ACK,
Harald Welte9958a4d2017-12-14 21:21:33 +01002123 ies := {
2124 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2125 /* optional */
2126 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
Harald Welte6cb400a2018-02-25 12:45:25 +01002127 t_RSL_IE(RSL_IE_IPAC_LOCAL_IP, RSL_IE_Body:{ipa_local_ip := local_ip}),
2128 t_RSL_IE(RSL_IE_IPAC_LOCAL_PORT, RSL_IE_Body:{ipa_local_port := local_port}),
Harald Welte9958a4d2017-12-14 21:21:33 +01002129 /* optional: RTP Payload Type */
2130 t_RSL_IE(RSL_IE_IPAC_RTP_PAYLOAD2, RSL_IE_Body:{ipa_rtp_pt2 := rtp_pt2})
2131 }
2132 }
Harald Welte30527452018-02-25 12:46:25 +01002133 template RSL_Message tr_RSL_IPA_MDCX_ACK(template RslChannelNr chan_nr,
2134 template uint16_t ipa_conn_id,
Vadim Yanitskiyfc631642021-07-03 02:42:45 +02002135 template OCT4 local_ip,
Harald Welte30527452018-02-25 12:46:25 +01002136 template uint16_t local_port,
2137 template uint7_t rtp_pt2) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002138 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte30527452018-02-25 12:46:25 +01002139 msg_type := RSL_MT_IPAC_MDCX_ACK,
2140 ies := {
2141 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2142 /* optional */
2143 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2144 tr_RSL_IE(RSL_IE_Body:{ipa_local_ip := local_ip}),
2145 tr_RSL_IE(RSL_IE_Body:{ipa_local_port := local_port}),
2146 /* optional: RTP Payload Type */
2147 tr_RSL_IE(RSL_IE_Body:{ipa_rtp_pt2 := rtp_pt2})
2148 }
2149 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002150
Harald Welteefa7d912018-04-18 23:22:15 +02002151 template (value) RSL_Message ts_RSL_IPA_MDCX_NACK(template (value) RslChannelNr chan_nr,
2152 RSL_Cause cause,
2153 template (value) uint16_t ipa_conn_id) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01002154 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2155 msg_type := RSL_MT_IPAC_MDCX_NACK,
2156 ies := {
2157 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2158 /* optional connection ID */
2159 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2160 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
2161 }
2162 }
Harald Welte30527452018-02-25 12:46:25 +01002163 template RSL_Message tr_RSL_IPA_MDCX_NACK(template RslChannelNr chan_nr,
2164 template RSL_Cause cause,
2165 template uint16_t ipa_conn_id) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002166 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte30527452018-02-25 12:46:25 +01002167 msg_type := RSL_MT_IPAC_MDCX_NACK,
2168 ies := {
2169 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2170 /* optional connection ID */
2171 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2172 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
2173 }
2174 }
2175
Harald Welte9958a4d2017-12-14 21:21:33 +01002176
Harald Welteefa7d912018-04-18 23:22:15 +02002177 template (value) RSL_Message ts_RSL_IPA_DLCX_IND(template (value) RslChannelNr chan_nr,
2178 uint16_t ipa_conn_id,
2179 template (value) RSL_IE_IPA_ConnectionStats stats,
2180 RSL_Cause cause) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01002181 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2182 msg_type := RSL_MT_IPAC_DLCX_IND,
2183 ies := {
2184 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2185 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2186 t_RSL_IE(RSL_IE_IPAC_CONN_STAT, RSL_IE_Body:{ipa_stats := stats}),
2187 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
2188 }
2189 }
2190
Harald Welteefa7d912018-04-18 23:22:15 +02002191 template (value) RSL_Message ts_RSL_IPA_DLCX(template (value) RslChannelNr chan_nr,
2192 uint16_t ipa_conn_id) := {
Harald Weltea871a382018-02-25 02:03:14 +01002193 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2194 msg_type := RSL_MT_IPAC_DLCX,
2195 ies := {
Harald Welte2a7e7162018-02-25 12:46:48 +01002196 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2197 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id})
Harald Weltea871a382018-02-25 02:03:14 +01002198 }
2199 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002200 template RSL_Message tr_RSL_IPA_DLCX(template RslChannelNr chan_nr,
2201 template uint16_t ipa_conn_id := omit) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002202 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002203 msg_type := RSL_MT_IPAC_DLCX,
2204 ies := {
2205 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2206 /* FIXME: optional conn_id */
2207 *
2208 }
2209 }
2210
Harald Welteefa7d912018-04-18 23:22:15 +02002211 template (value) RSL_Message ts_RSL_IPA_DLCX_ACK(template (value) RslChannelNr chan_nr,
2212 uint16_t ipa_conn_id,
2213 RSL_IE_IPA_ConnectionStats stats) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01002214 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2215 msg_type := RSL_MT_IPAC_DLCX_ACK,
2216 ies := {
2217 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2218 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2219 t_RSL_IE(RSL_IE_IPAC_CONN_STAT, RSL_IE_Body:{ipa_stats := stats})
2220 }
2221 }
Harald Weltea871a382018-02-25 02:03:14 +01002222 template RSL_Message tr_RSL_IPA_DLCX_ACK(template RslChannelNr chan_nr,
2223 template uint16_t ipa_conn_id,
2224 template RSL_IE_IPA_ConnectionStats stats) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002225 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Weltea871a382018-02-25 02:03:14 +01002226 msg_type := RSL_MT_IPAC_DLCX_ACK,
2227 ies := {
2228 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2229 tr_RSL_IE(RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2230 tr_RSL_IE(RSL_IE_Body:{ipa_stats := stats})
2231 }
2232 }
2233
2234
Harald Welte9958a4d2017-12-14 21:21:33 +01002235
Harald Welteefa7d912018-04-18 23:22:15 +02002236 template (value) RSL_Message ts_RSL_IPA_DLCX_NACK(template (value) RslChannelNr chan_nr,
2237 RSL_Cause cause, uint16_t ipa_conn_id) := {
Harald Welte9958a4d2017-12-14 21:21:33 +01002238 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
2239 msg_type := RSL_MT_IPAC_DLCX_NACK,
2240 ies := {
2241 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2242 /* optional connection ID */
2243 t_RSL_IE(RSL_IE_IPAC_CONN_ID, RSL_IE_Body:{ipa_conn_id := ipa_conn_id}),
2244 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
2245 }
2246 }
Harald Weltea871a382018-02-25 02:03:14 +01002247 template RSL_Message tr_RSL_IPA_DLCX_NACK(template RslChannelNr chan_nr,
2248 template RSL_Cause cause) := {
Harald Welteefa7d912018-04-18 23:22:15 +02002249 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_IPACCESS, false),
Harald Weltea871a382018-02-25 02:03:14 +01002250 msg_type := RSL_MT_IPAC_DLCX_NACK,
2251 ies := {
2252 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2253 /* optional connection ID */
2254 *,
2255 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
2256 }
2257 }
2258
Harald Welte9958a4d2017-12-14 21:21:33 +01002259
Harald Welteefa7d912018-04-18 23:22:15 +02002260 template (value) RSL_Message ts_RSL_IPA_PDCH_ACT(RslChannelNr chan_nr) := {
Harald Welteee19c732018-04-05 09:08:26 +02002261 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
2262 msg_type := RSL_MT_IPAC_PDCH_ACT,
2263 ies := {
2264 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
2265 }
2266 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002267 template RSL_Message tr_RSL_IPA_PDCH_ACT(template RslChannelNr chan_nr) := {
Harald Welteee19c732018-04-05 09:08:26 +02002268 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002269 msg_type := RSL_MT_IPAC_PDCH_ACT,
2270 ies := {
2271 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
2272 }
2273 }
2274
Harald Welteee19c732018-04-05 09:08:26 +02002275
Harald Welte94e0c342018-04-07 11:33:23 +02002276 template RSL_Message ts_RSL_IPA_PDCH_ACT_ACK(RslChannelNr chan_nr,
2277 template (value) RSL_IE_FrameNumber fn) := {
Harald Welteee19c732018-04-05 09:08:26 +02002278 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002279 msg_type := RSL_MT_IPAC_PDCH_ACT_ACK,
2280 ies := {
2281 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2282 t_RSL_IE(RSL_IE_FRAME_NUMBER, RSL_IE_Body:{frame_nr := fn})
2283 }
2284 }
Harald Welteee19c732018-04-05 09:08:26 +02002285 template RSL_Message tr_RSL_IPA_PDCH_ACT_ACK(template RslChannelNr chan_nr,
2286 template RSL_IE_FrameNumber fn) := {
2287 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
2288 msg_type := RSL_MT_IPAC_PDCH_ACT_ACK,
2289 ies := {
2290 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2291 tr_RSL_IE(RSL_IE_Body:{frame_nr := fn})
2292 }
2293 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002294
2295 template RSL_Message ts_RSL_IPA_PDCH_ACT_NACK(RslChannelNr chan_nr, RSL_Cause cause) := {
Harald Welteee19c732018-04-05 09:08:26 +02002296 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002297 msg_type := RSL_MT_IPAC_PDCH_ACT_NACK,
2298 ies := {
2299 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2300 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
2301 }
2302 }
Harald Welteee19c732018-04-05 09:08:26 +02002303 template RSL_Message tr_RSL_IPA_PDCH_ACT_NACK(template RslChannelNr chan_nr,
2304 template RSL_Cause cause) := {
2305 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
2306 msg_type := RSL_MT_IPAC_PDCH_ACT_NACK,
2307 ies := {
2308 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2309 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
2310 }
2311 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002312
Harald Welteee19c732018-04-05 09:08:26 +02002313 template RSL_Message ts_RSL_IPA_PDCH_DEACT(RslChannelNr chan_nr) := {
2314 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
2315 msg_type := RSL_MT_IPAC_PDCH_DEACT,
2316 ies := {
2317 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
2318 }
2319 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002320 template RSL_Message tr_RSL_IPA_PDCH_DEACT(template RslChannelNr chan_nr) := {
Harald Welteee19c732018-04-05 09:08:26 +02002321 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002322 msg_type := RSL_MT_IPAC_PDCH_DEACT,
2323 ies := {
2324 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
2325 }
2326 }
2327
2328 template RSL_Message ts_RSL_IPA_PDCH_DEACT_ACK(RslChannelNr chan_nr) := {
Harald Welteee19c732018-04-05 09:08:26 +02002329 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002330 msg_type := RSL_MT_IPAC_PDCH_DEACT_ACK,
2331 ies := {
2332 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
2333 }
2334 }
Harald Welteee19c732018-04-05 09:08:26 +02002335 template RSL_Message tr_RSL_IPA_PDCH_DEACT_ACK(template RslChannelNr chan_nr) := {
2336 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
2337 msg_type := RSL_MT_IPAC_PDCH_DEACT_ACK,
2338 ies := {
2339 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr})
2340 }
2341 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002342
2343 template RSL_Message ts_RSL_IPA_PDCH_DEACT_NACK(RslChannelNr chan_nr, RSL_Cause cause) := {
Harald Welteee19c732018-04-05 09:08:26 +02002344 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
Harald Welte9958a4d2017-12-14 21:21:33 +01002345 msg_type := RSL_MT_IPAC_PDCH_DEACT_NACK,
2346 ies := {
2347 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2348 t_RSL_IE(RSL_IE_CAUSE, RSL_IE_Body:{cause := ts_RSL_IE_Cause(cause)})
2349 }
2350 }
Harald Welteee19c732018-04-05 09:08:26 +02002351 template RSL_Message tr_RSL_IPA_PDCH_DEACT_NACK(template RslChannelNr chan_nr,
2352 template RSL_Cause cause) := {
2353 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
2354 msg_type := RSL_MT_IPAC_PDCH_DEACT_NACK,
2355 ies := {
2356 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2357 tr_RSL_IE(RSL_IE_Body:{cause := tr_RSL_IE_Cause(cause)})
2358 }
2359 }
Harald Welte9958a4d2017-12-14 21:21:33 +01002360
Harald Welte908ce542019-09-04 23:05:40 +02002361 template (value) RSL_Message ts_RSL_OSMO_ETWS_CMD(template (value) octetstring msg,
2362 template (value) RslChannelNr chan_nr := ts_RslChanNr_PCH_AGCH(0)) := {
2363 msg_disc := ts_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2364 msg_type := RSL_MT_OSMO_ETWS_CMD,
2365 ies := {
2366 t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
2367 t_RSL_IE(RSL_IE_SMSCB_MSG, RSL_IE_Body:{smscb_message := ts_RSL_LV(msg)})
2368 }
2369 }
2370 template RSL_Message tr_RSL_OSMO_ETWS_CMD(template RslChannelNr chan_nr := ?,
2371 template octetstring msg := ?) := {
2372 msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false),
2373 msg_type := RSL_MT_OSMO_ETWS_CMD,
2374 ies := {
2375 tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
2376 tr_RSL_IE(RSL_IE_Body:{smscb_message := tr_RSL_LV(msg)})
2377 }
2378 }
2379
2380
Harald Welte9958a4d2017-12-14 21:21:33 +01002381
Harald Welte6a8199d2018-01-29 21:58:53 +01002382 function f_rsl_find_ie(RSL_Message msg, RSL_IE_Type iei, out RSL_IE_Body ret) return boolean {
2383 for (var integer i := 0; i < sizeof(msg.ies); i := i+1) {
2384 if (msg.ies[i].iei == iei) {
2385 ret := msg.ies[i].body;
2386 return true;
2387 }
2388 }
2389 return false;
2390 }
2391
2392
Harald Welte9958a4d2017-12-14 21:21:33 +01002393
Harald Welte643e2a62017-11-27 15:03:18 +01002394} with { encode "RAW" ; variant "FIELDORDER(msb)" }