blob: 7021fa4b868958dd8acf7eb84e0764e9c164c5eb [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001#ifndef _GSM_DATA_H
2#define _GSM_DATA_H
3
Harald Weltef142c972011-05-24 13:25:38 +02004#include <stdint.h>
Maxddee01f2016-05-24 14:23:27 +02005#include <sys/types.h>
Maxe6052c42016-06-30 10:25:49 +02006#include <stdbool.h>
Harald Weltef142c972011-05-24 13:25:38 +02007
8#include <osmocom/core/timer.h>
Alexander Couzens20423ea2016-07-12 15:42:02 +02009#include <osmocom/core/rate_ctr.h>
Harald Welte6be350c2011-05-25 13:10:08 +020010#include <osmocom/core/select.h>
Alexander Couzens2f9df962020-09-21 18:35:24 +020011#include <osmocom/core/socket.h>
Alexander Couzens20423ea2016-07-12 15:42:02 +020012#include <osmocom/core/stats.h>
Stefan Sperling81dc9e72018-02-05 17:34:36 +010013#include <osmocom/core/stat_item.h>
Philipp Maier8c498fc2018-02-21 13:24:36 +010014#include <osmocom/gsm/bts_features.h>
Neels Hofmeyra60f3442018-02-12 16:44:32 +010015#include <osmocom/gsm/protocol/gsm_08_08.h>
Harald Welted41b7c72019-06-13 09:41:58 +020016#include <osmocom/gsm/protocol/gsm_48_049.h>
Neels Hofmeyr31f525e2018-05-14 18:14:15 +020017#include <osmocom/gsm/gsm0808.h>
Neels Hofmeyrf93970b2018-03-05 02:09:40 +010018#include <osmocom/gsm/gsm48.h>
Harald Welte3561bd42018-01-28 03:04:16 +010019#include <osmocom/core/fsm.h>
Neels Hofmeyra6078fe2019-01-28 03:52:14 +010020#include <osmocom/core/tdef.h>
Alexander Couzens20423ea2016-07-12 15:42:02 +020021
Harald Welte121e9a42016-04-20 13:13:19 +020022#include <osmocom/crypt/auth.h>
Harald Weltef142c972011-05-24 13:25:38 +020023
Neels Hofmeyrc0164792017-09-04 15:15:32 +020024#include <osmocom/bsc/rest_octets.h>
Harald Welteb96be392011-05-25 12:33:33 +020025
Neels Hofmeyr10485162018-02-13 23:22:03 +010026#include <osmocom/core/bitvec.h>
27#include <osmocom/gsm/gsm_utils.h>
28#include <osmocom/gsm/rxlev_stat.h>
29#include <osmocom/gsm/protocol/gsm_08_58.h>
30#include <osmocom/gsm/protocol/gsm_12_21.h>
31#include <osmocom/abis/e1_input.h>
32#include <osmocom/bsc/meas_rep.h>
Pau Espin Pedrol02f20562020-07-20 16:21:54 +020033#include <osmocom/bsc/acc.h>
Neels Hofmeyr31f525e2018-05-14 18:14:15 +020034#include <osmocom/bsc/neighbor_ident.h>
Pau Espin Pedrol83c0f762019-04-16 20:05:32 +020035#include <osmocom/bsc/osmux.h>
Neels Hofmeyr10485162018-02-13 23:22:03 +010036
Neels Hofmeyr596c4022018-06-16 19:29:50 +020037#define GSM_T3122_DEFAULT 10
38
Harald Welte74b8cdb2018-01-15 19:26:06 +010039struct mgcp_client_conf;
40struct mgcp_client;
Neels Hofmeyr19bed232018-03-22 04:54:57 +010041struct gsm0808_cell_id;
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +020042struct osmo_mgcpc_ep;
Pau Espin Pedrol388ed582020-07-15 20:53:16 +020043struct gsm_bts;
Pau Espin Pedrolaca53202020-07-16 14:49:36 +020044struct gsm_bts_trx;
Philipp Maier39f62bb2017-04-09 12:32:51 +020045
Holger Hans Peter Freytherd7b22c62013-04-29 09:11:02 +020046/** annotations for msgb ownership */
47#define __uses
48
Holger Hans Peter Freyther6f615552010-11-15 20:50:42 +010049#define OBSC_NM_W_ACK_CB(__msgb) (__msgb)->cb[3]
50
Neels Hofmeyr6d804b12017-02-18 22:20:46 +010051struct bsc_subscr;
Neels Hofmeyr7b656882017-07-09 22:09:18 +020052struct gprs_ra_id;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +020053struct handover;
Neels Hofmeyra33ef3a2020-10-01 04:23:32 +020054struct osmo_sccp_instance;
Holger Hans Peter Freyther694c82d2011-10-26 18:37:09 +020055
Holger Hans Peter Freyther9c595b72010-06-15 11:20:52 +080056#define OBSC_LINKID_CB(__msgb) (__msgb)->cb[3]
57
Max70fdd242017-06-15 15:10:53 +020058/* 3-bit long values */
59#define EARFCN_PRIO_INVALID 8
60#define EARFCN_MEAS_BW_INVALID 8
61/* 5-bit long values */
62#define EARFCN_QRXLV_INVALID 32
63#define EARFCN_THRESH_LOW_INVALID 32
64
Harald Welte8e1e3ee2009-02-01 13:32:45 +000065struct msgb;
66typedef int gsm_cbfn(unsigned int hooknum,
67 unsigned int event,
68 struct msgb *msg,
69 void *data, void *param);
70
Harald Weltef7c28b02009-12-21 13:30:17 +010071/* Maximum number of neighbor cells whose average we track */
72#define MAX_NEIGH_MEAS 10
73/* Maximum size of the averaging window for neighbor cells */
74#define MAX_WIN_NEIGH_AVG 10
Andreas Eversberg98692032013-06-23 10:44:34 +020075/* Maximum number of report history we store */
76#define MAX_MEAS_REP 10
Harald Weltef7c28b02009-12-21 13:30:17 +010077
78/* processed neighbor measurements for one cell */
79struct neigh_meas_proc {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020080 uint16_t arfcn;
81 uint8_t bsic;
82 uint8_t rxlev[MAX_WIN_NEIGH_AVG];
Harald Weltef7c28b02009-12-21 13:30:17 +010083 unsigned int rxlev_cnt;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020084 uint8_t last_seen_nr;
Harald Weltef7c28b02009-12-21 13:30:17 +010085};
86
Harald Weltea43e0b42016-06-19 18:06:02 +020087struct gsm_classmark {
88 bool classmark1_set;
89 struct gsm48_classmark1 classmark1;
90 uint8_t classmark2_len;
91 uint8_t classmark2[3];
92 uint8_t classmark3_len;
93 uint8_t classmark3[14]; /* if cm3 gets extended by spec, it will be truncated */
94};
95
Harald Welte519c7e12018-01-28 02:45:46 +010096enum subscr_sccp_state {
97 SUBSCR_SCCP_ST_NONE,
98 SUBSCR_SCCP_ST_WAIT_CONN_CONF,
99 SUBSCR_SCCP_ST_CONNECTED
100};
101
Sylvain Munautaa824922019-03-07 16:32:02 +0100102enum channel_rate {
103 CH_RATE_SDCCH,
104 CH_RATE_HALF,
105 CH_RATE_FULL,
106};
107
Philipp Maierbb66d102019-01-22 11:29:06 +0100108struct channel_mode_and_rate {
109 enum gsm48_chan_mode chan_mode;
Sylvain Munautaa824922019-03-07 16:32:02 +0100110 enum channel_rate chan_rate;
Philipp Maierbb66d102019-01-22 11:29:06 +0100111 uint16_t s15_s0;
112};
113
Neels Hofmeyr7cfdbe72019-02-06 01:30:19 +0100114/* Information retrieved during an Assignment Request from the MSC. This is storage of the Assignment instructions
115 * parsed from the Assignment Request message, to pass on until the gscon and assignment FSMs have decided whether an
116 * Assignment is actually going to be carried out. Should remain unchanged after initial decoding. */
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200117struct assignment_request {
118 bool aoip;
119
120 uint16_t msc_assigned_cic;
121
Pau Espin Pedrol657f3102020-08-28 18:35:22 +0200122 char msc_rtp_addr[INET6_ADDRSTRLEN];
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200123 uint16_t msc_rtp_port;
Pau Espin Pedrol83c0f762019-04-16 20:05:32 +0200124 bool use_osmux;
125 uint8_t osmux_cid;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200126
Sylvain Munautaa824922019-03-07 16:32:02 +0100127 /* Rate/codec setting in preference order (need at least 1 !) */
128 int n_ch_mode_rate;
129 struct channel_mode_and_rate ch_mode_rate[3];
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200130};
131
Neels Hofmeyr7cfdbe72019-02-06 01:30:19 +0100132/* State of an ongoing Assignment, while the assignment_fsm is still busy. This serves as state separation to keep the
133 * currently used lchan and gscon unmodified until the outcome of an Assignment is known. If the Assignment fails, this
134 * state is simply discarded, and the gscon carries on with the original lchan remaining unchanged. */
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200135struct assignment_fsm_data {
136 struct assignment_request req;
137 bool requires_voice_stream;
138
139 struct osmo_fsm_inst *fi;
140 struct gsm_lchan *new_lchan;
141
142 /* Whether this assignment triggered creation of the MGW endpoint: if the assignment
143 * fails, we will release that again as soon as possible. (If false, the endpoint already
144 * existed before or isn't needed at all.)*/
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +0200145 struct osmo_mgcpc_ep_ci *created_ci_for_msc;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200146
147 enum gsm0808_cause failure_cause;
148 enum gsm48_rr_cause rr_cause;
149
150 bool result_rate_ctr_done;
151};
152
153enum hodec_id {
154 HODEC_NONE,
155 HODEC1 = 1,
156 HODEC2 = 2,
157 HODEC_USER,
158 HODEC_REMOTE,
159};
160
161/* For example, to count specific kinds of ongoing handovers, it is useful to be able to OR-combine
162 * scopes. */
163enum handover_scope {
164 HO_NO_HANDOVER = 0,
165 HO_INTRA_CELL = 0x1,
166 HO_INTRA_BSC = 0x2,
167 HO_INTER_BSC_OUT = 0x4,
168 HO_INTER_BSC_IN = 0x8,
169 HO_SCOPE_ALL = 0xffff,
170};
171
172extern const struct value_string handover_scope_names[];
173inline static const char *handover_scope_name(enum handover_scope val)
174{ return get_value_string(handover_scope_names, val); }
175
176struct handover_out_req {
177 enum hodec_id from_hodec_id;
178 struct gsm_lchan *old_lchan;
179 struct neighbor_ident_key target_nik;
180 enum gsm_chan_t new_lchan_type; /*< leave GSM_LCHAN_NONE to use same as old_lchan */
181};
182
183struct handover_in_req {
184 struct gsm0808_channel_type ct;
185 struct gsm0808_speech_codec_list scl;
186 struct gsm0808_encrypt_info ei;
187 struct gsm_classmark classmark;
Neels Hofmeyrc15f6cd2019-03-15 02:48:39 +0100188 /* chosen_encr_alg reflects the encoded value as in RSL_ENC_ALG_A5(a5_numer):
189 * chosen_encr_alg == 1 means A5/0 i.e. no encryption, chosen_encr_alg == 4 means A5/3.
190 * chosen_encr_alg == 0 means no such IE was present. */
191 uint8_t chosen_encr_alg;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200192 struct gsm0808_cell_id cell_id_serving;
193 char cell_id_serving_name[64];
194 struct gsm0808_cell_id cell_id_target;
195 char cell_id_target_name[64];
196 uint16_t msc_assigned_cic;
Pau Espin Pedrol657f3102020-08-28 18:35:22 +0200197 char msc_assigned_rtp_addr[INET6_ADDRSTRLEN];
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200198 uint16_t msc_assigned_rtp_port;
199};
200
201struct handover {
202 struct osmo_fsm_inst *fi;
203
204 enum hodec_id from_hodec_id;
205 enum handover_scope scope;
206 enum gsm_chan_t new_lchan_type;
207 struct neighbor_ident_key target_cell;
208
209 uint8_t ho_ref;
210 struct gsm_bts *new_bts;
211 struct gsm_lchan *new_lchan;
212 bool async;
213 struct handover_in_req inter_bsc_in;
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +0200214 struct osmo_mgcpc_ep_ci *created_ci_for_msc;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200215};
216
Neels Hofmeyr378a4922016-05-09 21:07:43 +0200217/* active radio connection of a mobile subscriber */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100218struct gsm_subscriber_connection {
Harald Weltea43e0b42016-06-19 18:06:02 +0200219 /* global linked list of subscriber_connections */
Holger Hans Peter Freyther79f763f2010-09-16 00:53:37 +0800220 struct llist_head entry;
221
Harald Welte3561bd42018-01-28 03:04:16 +0100222 /* FSM instance to control the subscriber connection state (RTP, A) */
223 struct osmo_fsm_inst *fi;
224
Harald Weltea43e0b42016-06-19 18:06:02 +0200225 /* libbsc subscriber information (if available) */
Neels Hofmeyr6d804b12017-02-18 22:20:46 +0100226 struct bsc_subscr *bsub;
227
Holger Hans Peter Freyther18b63f42010-03-23 07:52:17 +0100228 /* back pointers */
Neels Hofmeyr5e0b0a62016-05-09 22:33:01 +0200229 struct gsm_network *network;
230
Neels Hofmeyr7cfdbe72019-02-06 01:30:19 +0100231 /* the primary / currently active lchan to the BTS/subscriber. During Assignment and Handover, separate lchans
232 * are kept in the .assignment or .handover sub-structs, respectively, so that this lchan remains unaffected
233 * until Assignment or Handover have actually succeeded. */
Harald Welte4a8ebc82017-12-18 18:34:41 +0100234 struct gsm_lchan *lchan;
Harald Welte3561bd42018-01-28 03:04:16 +0100235
Neels Hofmeyr7cfdbe72019-02-06 01:30:19 +0100236 /* Only valid during an ongoing Assignment; might be overwritten at any time by a failed Assignment attempt.
237 * Once an Assignment was successful, all relevant state must be copied out of this sub-struct. */
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200238 struct assignment_fsm_data assignment;
Holger Hans Peter Freyther77cd95d2010-11-14 16:19:48 +0100239
Neels Hofmeyr7cfdbe72019-02-06 01:30:19 +0100240 /* handover information, if a handover is pending for this conn. Valid only during an ongoing Handover
241 * operation. If a Handover was successful, all relevant state must be copied out of this sub-struct. */
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200242 struct handover ho;
Holger Hans Peter Freyther77cd95d2010-11-14 16:19:48 +0100243
Neels Hofmeyr149160f2018-06-16 17:20:13 +0200244 /* Queue DTAP messages during handover/assignment (msgb_enqueue()/msgb_dequeue())*/
245 struct llist_head dtap_queue;
246 unsigned int dtap_queue_len;
Andreas Eversberg084b4212013-05-30 14:12:48 +0200247
Neels Hofmeyrec422642018-02-15 14:07:40 +0100248 struct {
Neels Hofmeyr909e9722017-12-07 03:54:01 +0100249 int failures;
Neels Hofmeyrec422642018-02-15 14:07:40 +0100250 struct penalty_timers *penalty_timers;
251 } hodec2;
Neels Hofmeyra60f3442018-02-12 16:44:32 +0100252
253 /* "Codec List (MSC Preferred)" as received by the BSSAP Assignment Request. 3GPP 48.008
254 * 3.2.2.103 says:
255 * The "Codec List (MSC Preferred)" shall not include codecs
256 * that are not supported by the MS.
257 * i.e. by heeding the "Codec list (MSC Preferred)", we inherently heed the MS bearer
258 * capabilities, which the MSC is required to translate into the codec list. */
259 struct gsm0808_speech_codec_list codec_list;
Harald Welte519c7e12018-01-28 02:45:46 +0100260
261 /* flag to prevent multiple simultaneous ciphering commands */
262 int ciphering_handled;
263
Harald Welte519c7e12018-01-28 02:45:46 +0100264 /* SCCP connection associatd with this subscriber_connection */
265 struct {
Martin Haukea29affd2019-11-13 22:10:41 +0100266 /* SCCP connection related */
Harald Welte519c7e12018-01-28 02:45:46 +0100267 struct bsc_msc_data *msc;
268
269 /* Sigtran connection ID */
270 int conn_id;
271 enum subscr_sccp_state state;
272 } sccp;
273
274 /* for audio handling */
275 struct {
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200276 uint16_t msc_assigned_cic;
Harald Welte519c7e12018-01-28 02:45:46 +0100277
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200278 /* RTP address where the MSC expects us to send the RTP stream coming from the BTS. */
Pau Espin Pedrol657f3102020-08-28 18:35:22 +0200279 char msc_assigned_rtp_addr[INET6_ADDRSTRLEN];
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200280 uint16_t msc_assigned_rtp_port;
Harald Welte519c7e12018-01-28 02:45:46 +0100281
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200282 /* The endpoint at the MGW used to join both BTS and MSC side connections, e.g.
283 * "rtpbridge/23@mgw". */
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +0200284 struct osmo_mgcpc_ep *mgw_endpoint;
Harald Welte3561bd42018-01-28 03:04:16 +0100285
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +0200286 /* The connection identifier of the osmo_mgcpc_ep used to transceive RTP towards the MSC.
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200287 * (The BTS side CI is handled by struct gsm_lchan and the lchan_fsm.) */
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +0200288 struct osmo_mgcpc_ep_ci *mgw_endpoint_ci_msc;
Harald Welte519c7e12018-01-28 02:45:46 +0100289 } user_plane;
Harald Weltec997ceb2018-05-30 01:39:43 +0200290
291 /* LCLS (local call, local switch) related state */
292 struct {
293 uint8_t global_call_ref[15];
294 uint8_t global_call_ref_len; /* length of global_call_ref */
Maxfe65ece2018-11-09 13:36:11 +0100295 enum gsm0808_lcls_config config; /* TS 48.008 3.2.2.116 */
296 enum gsm0808_lcls_control control; /* TS 48.008 3.2.2.117 */
Harald Weltec997ceb2018-05-30 01:39:43 +0200297 /* LCLS FSM */
298 struct osmo_fsm_inst *fi;
299 /* pointer to "other" connection, if Call Leg Relocation was successful */
300 struct gsm_subscriber_connection *other;
301 } lcls;
Pau Espin Pedrol7950e5d2019-10-31 15:59:49 +0100302
303 /* MS Power Class, TS 05.05 sec 4.1.1 "Mobile station". 0 means unset. */
304 uint8_t ms_power_class:3;
Neels Hofmeyr90f7c3c2020-08-29 23:01:44 +0000305
306 bool rx_clear_command;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100307};
308
Harald Weltef142c972011-05-24 13:25:38 +0200309
Neels Hofmeyr10485162018-02-13 23:22:03 +0100310/* 16 is the max. number of SI2quater messages according to 3GPP TS 44.018 Table 10.5.2.33b.1:
311 4-bit index is used (2#1111 = 10#15) */
312#define SI2Q_MAX_NUM 16
313/* length in bits (for single SI2quater message) */
314#define SI2Q_MAX_LEN 160
315#define SI2Q_MIN_LEN 18
316
317struct osmo_bsc_data;
318
319struct osmo_bsc_sccp_con;
320
321/* Channel Request reason */
322enum gsm_chreq_reason_t {
323 GSM_CHREQ_REASON_EMERG,
324 GSM_CHREQ_REASON_PAG,
325 GSM_CHREQ_REASON_CALL,
326 GSM_CHREQ_REASON_LOCATION_UPD,
327 GSM_CHREQ_REASON_OTHER,
328 GSM_CHREQ_REASON_PDCH,
329};
330
331/* lchans 0..3 are SDCCH in combined channel configuration,
332 use 4 as magic number for BCCH hack - see osmo-bts-../oml.c:opstart_compl() */
333#define CCCH_LCHAN 4
334
Neels Hofmeyr10485162018-02-13 23:22:03 +0100335#define TS_MAX_LCHAN 8
336
337#define HARDCODED_ARFCN 123
338#define HARDCODED_BSIC 0x3f /* NCC = 7 / BCC = 7 */
339
340/* for multi-drop config */
341#define HARDCODED_BTS0_TS 1
342#define HARDCODED_BTS1_TS 6
343#define HARDCODED_BTS2_TS 11
344
345#define MAX_VERSION_LENGTH 64
346
Neels Hofmeyr10485162018-02-13 23:22:03 +0100347enum gsm_hooks {
348 GSM_HOOK_NM_SWLOAD,
349 GSM_HOOK_RR_PAGING,
350 GSM_HOOK_RR_SECURITY,
351};
352
Neels Hofmeyr10485162018-02-13 23:22:03 +0100353enum bts_gprs_mode {
354 BTS_GPRS_NONE = 0,
355 BTS_GPRS_GPRS = 1,
356 BTS_GPRS_EGPRS = 2,
357};
358
359struct gsm_lchan;
360struct osmo_rtp_socket;
361struct rtp_socket;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100362
363/* Network Management State */
364struct gsm_nm_state {
365 uint8_t operational;
366 uint8_t administrative;
367 uint8_t availability;
368};
369
370struct gsm_abis_mo {
371 uint8_t obj_class;
372 uint8_t procedure_pending;
373 struct abis_om_obj_inst obj_inst;
374 const char *name;
375 struct gsm_nm_state nm_state;
376 struct tlv_parsed *nm_attr;
377 struct gsm_bts *bts;
378};
379
380/* Ericsson OM2000 Managed Object */
381struct abis_om2k_mo {
382 uint8_t class;
383 uint8_t bts;
384 uint8_t assoc_so;
385 uint8_t inst;
386} __attribute__ ((packed));
387
388struct om2k_mo {
389 struct abis_om2k_mo addr;
390 struct osmo_fsm_inst *fsm;
391};
392
393#define A38_XOR_MIN_KEY_LEN 12
394#define A38_XOR_MAX_KEY_LEN 16
395#define A38_COMP128_KEY_LEN 16
396#define RSL_ENC_ALG_A5(x) (x+1)
Neels Hofmeyr19ec3742020-07-08 02:58:52 +0200397/* Up to 16 SI2quater are multiplexed; each fits 3 EARFCNS, so the practical maximum is 3*16.
398 * The real maximum that fits in a total of 16 SI2quater rest octets also depends on the bits left by other SI2quater
399 * rest octets elements, so to really fit 48 EARFCNs most other SI2quater elements need to be omitted. */
400#define MAX_EARFCN_LIST (3*16)
Neels Hofmeyr10485162018-02-13 23:22:03 +0100401
402/* is the data link established? who established it? */
403#define LCHAN_SAPI_UNUSED 0
404#define LCHAN_SAPI_MS 1
405#define LCHAN_SAPI_NET 2
Neels Hofmeyr10485162018-02-13 23:22:03 +0100406
407/* BTS ONLY */
408#define MAX_NUM_UL_MEAS 104
409#define LC_UL_M_F_L1_VALID (1 << 0)
410#define LC_UL_M_F_RES_VALID (1 << 1)
411
412struct bts_ul_meas {
413 /* BER in units of 0.01%: 10.000 == 100% ber, 0 == 0% ber */
414 uint16_t ber10k;
415 /* timing advance offset (in quarter bits) */
416 int16_t ta_offs_qbits;
417 /* C/I ratio in dB */
418 float c_i;
419 /* flags */
420 uint8_t is_sub:1;
421 /* RSSI in dBm * -1 */
422 uint8_t inv_rssi;
423};
424
425struct bts_codec_conf {
426 uint8_t hr;
427 uint8_t efr;
428 uint8_t amr;
429};
430
431struct amr_mode {
432 uint8_t mode;
433 uint8_t threshold;
434 uint8_t hysteresis;
435};
436
437struct amr_multirate_conf {
438 uint8_t gsm48_ie[2];
439 struct amr_mode ms_mode[4];
440 struct amr_mode bts_mode[4];
441 uint8_t num_modes;
442};
443/* /BTS ONLY */
444
445enum lchan_csd_mode {
446 LCHAN_CSD_M_NT,
447 LCHAN_CSD_M_T_1200_75,
448 LCHAN_CSD_M_T_600,
449 LCHAN_CSD_M_T_1200,
450 LCHAN_CSD_M_T_2400,
451 LCHAN_CSD_M_T_9600,
452 LCHAN_CSD_M_T_14400,
453 LCHAN_CSD_M_T_29000,
454 LCHAN_CSD_M_T_32000,
455};
456
457/* State of the SAPIs in the lchan */
458enum lchan_sapi_state {
459 LCHAN_SAPI_S_NONE,
460 LCHAN_SAPI_S_REQ,
461 LCHAN_SAPI_S_ASSIGNED,
462 LCHAN_SAPI_S_REL,
463 LCHAN_SAPI_S_ERROR,
464};
465
Neels Hofmeyr92b9f2e2018-02-14 00:19:11 +0100466#define MAX_A5_KEY_LEN (128/8)
467
468struct gsm_encr {
469 uint8_t alg_id;
470 uint8_t key_len;
471 uint8_t key[MAX_A5_KEY_LEN];
472};
473
Neels Hofmeyr8da22332018-04-11 01:43:41 +0200474#define LOGPLCHAN(lchan, ss, level, fmt, args...) \
475 LOGP(ss, level, "%s (ss=%d,%s) (%s) " fmt, \
476 lchan ? gsm_ts_and_pchan_name(lchan->ts) : "-", \
477 lchan ? lchan->nr : 0, \
478 lchan ? gsm_lchant_name(lchan->type) : "-", \
479 bsc_subscr_name(lchan && lchan->conn ? lchan->conn->bsub : NULL), \
480 ## args)
481
Pau Espin Pedrold3e8e0c2018-11-28 16:35:10 +0100482/* Iterate lchans that have an FSM allocated based based on explicit pchan kind
483 * (GSM_PCHAN_* constant).
484 * Remark: PDCH related lchans are not handled in BSC but in PCU, so trying to
485 * iterate through GSM_PCHAN_PDCH is considered a void loop.
486 */
487#define ts_as_pchan_for_each_lchan(lchan, ts, as_pchan) \
488 for (lchan = (ts)->lchan; \
489 ((lchan - (ts)->lchan) < ARRAY_SIZE((ts)->lchan)) \
490 && lchan->fi \
491 && lchan->nr < pchan_subslots(as_pchan); \
492 lchan++)
493
Pau Espin Pedrol7ae0f9c2018-11-28 16:37:37 +0100494/* Iterate lchans that have an FSM allocated based on current PCHAN
495 * mode set in \ref ts.
496 * usage:
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200497 * struct gsm_lchan *lchan;
498 * struct gsm_bts_trx_ts *ts = get_some_timeslot();
499 * ts_for_each_lchan(lchan, ts) {
500 * LOGPLCHAN(DMAIN, LOGL_DEBUG, "hello world\n");
501 * }
Pau Espin Pedrol7ae0f9c2018-11-28 16:37:37 +0100502 */
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200503#define ts_for_each_lchan(lchan, ts) ts_as_pchan_for_each_lchan(lchan, ts, (ts)->pchan_is)
504
Pau Espin Pedrol0ba20df2018-11-28 16:39:29 +0100505/* Iterate over all possible lchans available that have an FSM allocated based
506 * on PCHAN \ref ts (dynamic) configuration.
507 * Iterate all lchan instances set up by this \ref ts type, including those
508 * lchans currently disabled or in process of being enabled (e.g. due to dynamic
509 * timeslot in switchover). Compare ts_for_each_lchan(), which iterates only the
510 * enabled lchans.
511 * For example, it is useful in case dynamic timeslot \ref ts is in process of
512 * switching from configuration PDCH (no lchans) to TCH_F (1 lchan), where
513 * pchan_is is still set to PDCH but \ref ts may contain already an \ref lchan
514 * of type TCH_F which initiated the request to switch the \ts configuration.
515 */
516#define ts_for_each_potential_lchan(lchan, ts) ts_as_pchan_for_each_lchan(lchan, ts, (ts)->pchan_on_init)
517
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200518enum lchan_activate_mode {
519 FOR_NONE,
520 FOR_MS_CHANNEL_REQUEST,
521 FOR_ASSIGNMENT,
522 FOR_HANDOVER,
523 FOR_VTY,
524};
525
526extern const struct value_string lchan_activate_mode_names[];
527static inline const char *lchan_activate_mode_name(enum lchan_activate_mode activ_for)
528{ return get_value_string(lchan_activate_mode_names, activ_for); }
529
Neels Hofmeyr700e5182018-12-19 17:19:02 +0100530struct lchan_activate_info {
531 enum lchan_activate_mode activ_for;
532 struct gsm_subscriber_connection *for_conn;
533 /* This always is for a specific lchan, so its lchan->type indicates full or half rate.
534 * When a dyn TS was selected, the lchan->type has been set to the desired rate. */
535 enum gsm48_chan_mode chan_mode;
Neels Hofmeyr58cf1b12019-03-15 02:49:18 +0100536 struct gsm_encr encr;
Neels Hofmeyr38134ea2018-12-21 03:01:00 +0100537 /* AMR config */
Neels Hofmeyr700e5182018-12-19 17:19:02 +0100538 uint16_t s15_s0;
539 bool requires_voice_stream;
540 bool wait_before_switching_rtp; /*< true = requires LCHAN_EV_READY_TO_SWITCH_RTP */
541 uint16_t msc_assigned_cic;
Neels Hofmeyr38134ea2018-12-21 03:01:00 +0100542 /* During intra-BSC handover, we keep the MGW endpoint intact and just re-route to the new lchan. This
543 * activate_info is for the new lchan, the re_use_mgw_endpoint_from_lchan points at the old lchan. */
Neels Hofmeyr700e5182018-12-19 17:19:02 +0100544 struct gsm_lchan *re_use_mgw_endpoint_from_lchan;
545};
546
Neels Hofmeyr10485162018-02-13 23:22:03 +0100547struct gsm_lchan {
548 /* The TS that we're part of */
549 struct gsm_bts_trx_ts *ts;
550 /* The logical subslot number in the TS */
551 uint8_t nr;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200552 char *name;
553
Neels Hofmeyreee24eb2018-11-06 21:39:15 +0100554 char *last_error;
555
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200556 struct osmo_fsm_inst *fi;
Neels Hofmeyrac85b342018-07-12 21:23:26 +0200557 struct osmo_fsm_inst *fi_rtp;
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +0200558 struct osmo_mgcpc_ep_ci *mgw_endpoint_ci_bts;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200559
560 struct {
Neels Hofmeyr700e5182018-12-19 17:19:02 +0100561 struct lchan_activate_info info;
Neels Hofmeyrac85b342018-07-12 21:23:26 +0200562 bool activ_ack; /*< true as soon as RSL Chan Activ Ack is received */
Neels Hofmeyr369fba22018-11-27 01:30:50 +0100563 bool immediate_assignment_sent;
Neels Hofmeyr193c1e32018-08-27 22:06:24 +0200564 /*! This flag ensures that when an lchan activation has succeeded, and we have already
565 * sent ACKs like Immediate Assignment or BSSMAP Assignment Complete, and if other errors
566 * occur later, e.g. during release, that we don't send a NACK out of context. */
567 bool concluded;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200568 enum gsm0808_cause gsm0808_error_cause;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200569 } activate;
570
Neels Hofmeyreee24eb2018-11-06 21:39:15 +0100571 struct {
572 /* If an event to release the lchan comes in while still waiting for responses, just mark this
573 * flag, so that the lchan will gracefully release at the next sensible junction. */
574 bool requested;
575 bool do_rr_release;
Neels Hofmeyrb523f542020-07-09 15:54:40 +0200576 enum gsm48_rr_cause rr_cause;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200577
Neels Hofmeyreee24eb2018-11-06 21:39:15 +0100578 /* There is an RSL error cause of value 0, so we need a separate flag. */
579 bool in_error;
580 /* RSL error code, RSL_ERR_* */
581 uint8_t rsl_error_cause;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200582
Neels Hofmeyreee24eb2018-11-06 21:39:15 +0100583 /* If a release event is being handled, ignore other ricocheting release events until that
584 * release handling has concluded. */
585 bool in_release_handler;
Harald Welte963763d2019-02-03 12:11:12 +0100586
587 /* is this release at the end of a CSFB call? */
588 bool is_csfb;
Neels Hofmeyreee24eb2018-11-06 21:39:15 +0100589 } release;
Neels Hofmeyrd5df9a12018-07-20 05:35:47 +0200590
Neels Hofmeyr10485162018-02-13 23:22:03 +0100591 /* The logical channel type */
592 enum gsm_chan_t type;
593 /* RSL channel mode */
594 enum rsl_cmod_spd rsl_cmode;
595 /* If TCH, traffic channel mode */
596 enum gsm48_chan_mode tch_mode;
597 enum lchan_csd_mode csd_mode;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100598 /* Power levels for MS and BTS */
599 uint8_t bs_power;
600 uint8_t ms_power;
601 /* Encryption information */
602 struct gsm_encr encr;
603
604 /* AMR bits */
605 uint8_t mr_ms_lv[7];
606 uint8_t mr_bts_lv[7];
Neels Hofmeyr4daa2102019-01-30 16:46:58 +0100607 /* AMR bits were based on these rate bits: */
608 uint16_t s15_s0;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100609
610 /* Established data link layer services */
611 uint8_t sapis[8];
612
613 struct {
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200614 uint32_t bound_ip; /*< where the BTS receives RTP */
Neels Hofmeyr10485162018-02-13 23:22:03 +0100615 uint16_t bound_port;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200616 uint32_t connect_ip; /*< where the BTS sends RTP to (MGW) */
Neels Hofmeyr10485162018-02-13 23:22:03 +0100617 uint16_t connect_port;
618 uint16_t conn_id;
619 uint8_t rtp_payload;
620 uint8_t rtp_payload2;
621 uint8_t speech_mode;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100622
623 /* info we need to postpone the AoIP
624 * assignment completed message */
625 struct {
626 uint8_t rr_cause;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100627 bool valid;
628 } ass_compl;
629 } abis_ip;
630
631 uint8_t rqd_ta;
632
Neels Hofmeyr10485162018-02-13 23:22:03 +0100633 /* table of neighbor cell measurements */
634 struct neigh_meas_proc neigh_meas[MAX_NEIGH_MEAS];
635
636 /* cache of last measurement reports on this lchan */
637 struct gsm_meas_rep meas_rep[MAX_MEAS_REP];
638 int meas_rep_idx;
639 int meas_rep_count;
Neels Hofmeyr35ba85c2018-02-12 16:47:40 +0100640 uint8_t meas_rep_last_seen_nr;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100641
642 /* GSM Random Access data */
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200643 /* TODO: don't allocate this, rather keep an "is_present" flag */
Neels Hofmeyr10485162018-02-13 23:22:03 +0100644 struct gsm48_req_ref *rqd_ref;
645
646 struct gsm_subscriber_connection *conn;
Philipp Maierbb66d102019-01-22 11:29:06 +0100647
648 /* Depending on the preferences that where submitted together with
649 * the assignment and the current channel load, the BSC has to select
650 * one of the offered codec/rates. The final selection by the BSC is
651 * stored here and is used when sending the assignment complete or
652 * when performing a handover procedure. */
653 struct channel_mode_and_rate ch_mode_rate;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100654};
655
Neels Hofmeyr10485162018-02-13 23:22:03 +0100656/* One Timeslot in a TRX */
657struct gsm_bts_trx_ts {
658 struct gsm_bts_trx *trx;
659 /* number of this timeslot at the TRX */
660 uint8_t nr;
661
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200662 struct osmo_fsm_inst *fi;
663 char *last_errmsg;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100664
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200665 /* vty phys_chan_config setting, not necessarily in effect in case it was changed in the telnet
666 * vty after OML activation. Gets written on vty 'write file'. */
667 enum gsm_phys_chan_config pchan_from_config;
668 /* When the timeslot OML is established, pchan_from_config is copied here. This is the pchan
669 * currently in effect; for dynamic ts, this is the dyn kind (GSM_PCHAN_TCH_F_TCH_H_PDCH or
670 * GSM_PCHAN_TCH_F_PDCH) and does not show the pchan type currently active. */
671 enum gsm_phys_chan_config pchan_on_init;
672 /* This is the *actual* pchan type currently active. For dynamic timeslots, this reflects either
673 * GSM_PCHAN_NONE or one of the standard GSM_PCHAN_TCH_F, GSM_PCHAN_TCH_H, GSM_PCHAN_PDCH.
674 * Callers can use this transparently without being aware of dyn ts. */
675 enum gsm_phys_chan_config pchan_is;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100676
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200677 /* After a PDCH ACT NACK, we shall not infinitely loop to try and ACT again.
678 * Also marks a timeslot where PDCH was deactivated by VTY. This is cleared whenever a timeslot
679 * enters IN_USE state, i.e. after each TCH use we try to PDCH ACT once again. */
680 bool pdch_act_allowed;
681
Neels Hofmeyrbcdbfb72018-07-26 20:33:15 +0200682 /* Whether TS_EV_OML_READY was received */
683 bool is_oml_ready;
684 /* Whether TS_EV_RSL_READY was received */
685 bool is_rsl_ready;
686
Neels Hofmeyr10485162018-02-13 23:22:03 +0100687 struct gsm_abis_mo mo;
688 struct tlv_parsed nm_attr;
689 uint8_t nm_chan_comb;
690 int tsc; /* -1 == use BTS TSC */
691
692 struct {
693 /* Parameters below are configured by VTY */
694 int enabled;
695 uint8_t maio;
696 uint8_t hsn;
697 struct bitvec arfcns;
698 uint8_t arfcns_data[1024/8];
699 /* This is the pre-computed MA for channel assignments */
700 struct bitvec ma;
701 uint8_t ma_len; /* part of ma_data that is used */
702 uint8_t ma_data[8]; /* 10.5.2.21: max 8 bytes value part */
703 } hopping;
704
705 /* To which E1 subslot are we connected */
706 struct gsm_e1_subslot e1_link;
707
708 union {
709 struct {
710 struct om2k_mo om2k_mo;
711 } rbs2000;
712 };
713
714 struct gsm_lchan lchan[TS_MAX_LCHAN];
715};
716
Neels Hofmeyr10485162018-02-13 23:22:03 +0100717#define GSM_LCHAN_SI(lchan, i) (void *)((lchan)->si.buf[i][0])
718
Neels Hofmeyr10485162018-02-13 23:22:03 +0100719/*
720 * This keeps track of the paging status of one BTS. It
721 * includes a number of pending requests, a back pointer
722 * to the gsm_bts, a timer and some more state.
723 */
724struct gsm_bts_paging_state {
725 /* pending requests */
726 struct llist_head pending_requests;
727 struct gsm_bts *bts;
728
729 struct osmo_timer_list work_timer;
730 struct osmo_timer_list credit_timer;
731
732 /* free chans needed */
733 int free_chans_need;
734
735 /* load */
736 uint16_t available_slots;
737};
738
739struct gsm_envabtse {
740 struct gsm_abis_mo mo;
741};
742
743struct gsm_bts_gprs_nsvc {
744 struct gsm_bts *bts;
745 /* data read via VTY config file, to configure the BTS
746 * via OML from BSC */
747 int id;
748 uint16_t nsvci;
749 uint16_t local_port; /* on the BTS */
Alexander Couzens2f9df962020-09-21 18:35:24 +0200750 struct osmo_sockaddr remote;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100751 struct gsm_abis_mo mo;
752};
753
754enum gprs_rlc_par {
755 RLC_T3142,
756 RLC_T3169,
757 RLC_T3191,
758 RLC_T3193,
759 RLC_T3195,
760 RLC_N3101,
761 RLC_N3103,
762 RLC_N3105,
763 CV_COUNTDOWN,
764 T_DL_TBF_EXT, /* ms */
765 T_UL_TBF_EXT, /* ms */
766 _NUM_RLC_PAR
767};
768
769enum gprs_cs {
770 GPRS_CS1,
771 GPRS_CS2,
772 GPRS_CS3,
773 GPRS_CS4,
774 GPRS_MCS1,
775 GPRS_MCS2,
776 GPRS_MCS3,
777 GPRS_MCS4,
778 GPRS_MCS5,
779 GPRS_MCS6,
780 GPRS_MCS7,
781 GPRS_MCS8,
782 GPRS_MCS9,
783 _NUM_GRPS_CS
784};
785
786struct gprs_rlc_cfg {
787 uint16_t parameter[_NUM_RLC_PAR];
788 struct {
789 uint16_t repeat_time; /* ms */
790 uint8_t repeat_count;
791 } paging;
792 uint32_t cs_mask; /* bitmask of gprs_cs */
793 uint8_t initial_cs;
794 uint8_t initial_mcs;
795};
796
797
798enum neigh_list_manual_mode {
799 NL_MODE_AUTOMATIC = 0,
800 NL_MODE_MANUAL = 1,
801 NL_MODE_MANUAL_SI5SEP = 2, /* SI2 and SI5 have separate neighbor lists */
802};
803
804enum bts_loc_fix {
805 BTS_LOC_FIX_INVALID = 0,
806 BTS_LOC_FIX_2D = 1,
807 BTS_LOC_FIX_3D = 2,
808};
809
810extern const struct value_string bts_loc_fix_names[];
811
812struct bts_location {
813 struct llist_head list;
814 time_t tstamp;
815 enum bts_loc_fix valid;
816 double lat;
817 double lon;
818 double height;
819};
820
821/* Channel load counter */
822struct load_counter {
823 unsigned int total;
824 unsigned int used;
825};
826
Neels Hofmeyr19bed232018-03-22 04:54:57 +0100827/* Useful to track N-N relations between BTS, for example neighbors. */
828struct gsm_bts_ref {
829 struct llist_head entry;
830 struct gsm_bts *bts;
831};
832
Harald Welted41b7c72019-06-13 09:41:58 +0200833/* A single Page of a SMSCB message */
834struct bts_smscb_page {
835 /* SMSCB message we're part of */
836 struct bts_smscb_message *msg;
837 /* Page Number within message (1 to 15) */
838 uint8_t nr;
839 /* number of valid blocks in data (up to 4) */
840 uint8_t num_blocks;
841 /* up to four blocks of 22 bytes each */
842 uint8_t data[88];
843};
844
845/* A SMSCB message (received from CBSP) */
846struct bts_smscb_message {
847 /* entry in bts_smscb_chan_state.messages */
848 struct llist_head list;
849 struct {
850 /* input data from CBSP (CBC) side */
851 uint16_t msg_id;
852 uint16_t serial_nr;
853 enum cbsp_category category;
854 uint16_t rep_period;
855 uint16_t num_bcast_req;
856 uint8_t dcs;
857 } input;
858 /* how often have all pages of this message been broadcast? */
859 uint32_t bcast_count;
860 /* actual page data of this message */
861 uint8_t num_pages; /* up to 15 */
862 struct bts_smscb_page page[15];
863};
864
865/* per-channel (basic/extended) CBCH state for a single BTS */
866struct bts_smscb_chan_state {
867 /* back-pointer to BTS */
868 struct gsm_bts *bts;
869 /* list of bts_smscb_message */
870 struct llist_head messages;
871 /* scheduling array; pointer of SMSCB pages */
872 struct bts_smscb_page **sched_arr;
873 size_t sched_arr_size;
874 /* index of the next to be transmitted page into the scheduler array */
875 size_t next_idx;
876 /* number of messages we have to pause due to overflow */
877 uint8_t overflow;
878};
879
Oliver Smithba0a1222020-03-18 12:39:30 +0100880struct bts_oml_fail_rep {
881 struct llist_head list;
882 time_t time;
883 struct msgb *mb;
884};
885
Oliver Smith8d8d7102018-10-23 15:35:43 +0200886/* One rejected BTS */
887struct gsm_bts_rejected {
888 /* list header in net->bts_rejected */
889 struct llist_head list;
890
891 uint16_t site_id;
892 uint16_t bts_id;
893 char ip[INET6_ADDRSTRLEN];
894 time_t time;
895};
Neels Hofmeyr10485162018-02-13 23:22:03 +0100896
Neels Hofmeyr638eb992020-09-16 00:56:19 +0200897extern struct osmo_tdef_group bsc_tdef_group[];
898
Neels Hofmeyr958f2592018-05-27 01:26:31 +0200899struct gsm_network *gsm_network_init(void *ctx);
900
Neels Hofmeyr6d568ed2018-07-09 16:49:18 +0200901struct gsm_bts *gsm_bts_num(const struct gsm_network *net, int num);
Neels Hofmeyr19bed232018-03-22 04:54:57 +0100902struct gsm_bts *gsm_bts_by_cell_id(const struct gsm_network *net,
903 const struct gsm0808_cell_id *cell_id,
904 int match_idx);
Neels Hofmeyr10485162018-02-13 23:22:03 +0100905
Neels Hofmeyr10485162018-02-13 23:22:03 +0100906extern const struct value_string gsm_chreq_descs[];
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200907extern const struct value_string gsm_pchant_names[];
908extern const struct value_string gsm_pchant_descs[];
909extern const struct value_string gsm_pchan_ids[];
Neels Hofmeyr10485162018-02-13 23:22:03 +0100910const char *gsm_pchan_name(enum gsm_phys_chan_config c);
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200911static inline const char *gsm_pchan_id(enum gsm_phys_chan_config c)
912{ return get_value_string(gsm_pchan_ids, c); }
Neels Hofmeyr10485162018-02-13 23:22:03 +0100913enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
914const char *gsm_lchant_name(enum gsm_chan_t c);
915const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Neels Hofmeyr10485162018-02-13 23:22:03 +0100916char *gsm_ts_name(const struct gsm_bts_trx_ts *ts);
917char *gsm_ts_and_pchan_name(const struct gsm_bts_trx_ts *ts);
918char *gsm_lchan_name_compute(const struct gsm_lchan *lchan);
Neels Hofmeyr10485162018-02-13 23:22:03 +0100919
920static inline char *gsm_lchan_name(const struct gsm_lchan *lchan)
921{
922 return lchan->name;
923}
924
Neels Hofmeyr10485162018-02-13 23:22:03 +0100925void gsm_abis_mo_reset(struct gsm_abis_mo *mo);
Pau Espin Pedrol388ed582020-07-15 20:53:16 +0200926void gsm_mo_init(struct gsm_abis_mo *mo, struct gsm_bts *bts,
927 uint8_t obj_class, uint8_t p1, uint8_t p2, uint8_t p3);
Neels Hofmeyr10485162018-02-13 23:22:03 +0100928
929struct gsm_nm_state *
930gsm_objclass2nmstate(struct gsm_bts *bts, uint8_t obj_class,
931 const struct abis_om_obj_inst *obj_inst);
932void *
933gsm_objclass2obj(struct gsm_bts *bts, uint8_t obj_class,
934 const struct abis_om_obj_inst *obj_inst);
935
Neels Hofmeyr10485162018-02-13 23:22:03 +0100936uint8_t gsm_pchan2chan_nr(enum gsm_phys_chan_config pchan,
937 uint8_t ts_nr, uint8_t lchan_nr);
938uint8_t gsm_lchan2chan_nr(const struct gsm_lchan *lchan);
939uint8_t gsm_lchan_as_pchan2chan_nr(const struct gsm_lchan *lchan,
940 enum gsm_phys_chan_config as_pchan);
941
Harald Welte251bec12018-09-09 17:14:09 +0200942void gsm48_lchan2chan_desc(struct gsm48_chan_desc *cd,
943 const struct gsm_lchan *lchan);
Harald Welte24286f32018-09-09 17:17:44 +0200944void gsm48_lchan2chan_desc_as_configured(struct gsm48_chan_desc *cd, const struct gsm_lchan *lchan);
Harald Welte251bec12018-09-09 17:14:09 +0200945
Pau Espin Pedrol388ed582020-07-15 20:53:16 +0200946uint8_t gsm_ts_tsc(const struct gsm_bts_trx_ts *ts);
Neels Hofmeyr10485162018-02-13 23:22:03 +0100947
Neels Hofmeyr10485162018-02-13 23:22:03 +0100948enum gsm_phys_chan_config ts_pchan(struct gsm_bts_trx_ts *ts);
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200949uint8_t pchan_subslots(enum gsm_phys_chan_config pchan);
Neels Hofmeyr10485162018-02-13 23:22:03 +0100950bool ts_is_tch(struct gsm_bts_trx_ts *ts);
951
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100952
Pau Espin Pedrol388ed582020-07-15 20:53:16 +0200953struct gsm_bts *conn_get_bts(struct gsm_subscriber_connection *conn);
Harald Welteb7948872017-12-18 18:48:21 +0100954
Pau Espin Pedrol7950e5d2019-10-31 15:59:49 +0100955void conn_update_ms_power_class(struct gsm_subscriber_connection *conn, uint8_t power_class);
956void lchan_update_ms_power_ctrl_level(struct gsm_lchan *lchan, int ms_power_dbm);
957
Stefan Sperling81dc9e72018-02-05 17:34:36 +0100958enum {
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200959 BSC_CTR_ASSIGNMENT_ATTEMPTED,
960 BSC_CTR_ASSIGNMENT_COMPLETED,
961 BSC_CTR_ASSIGNMENT_STOPPED,
962 BSC_CTR_ASSIGNMENT_NO_CHANNEL,
963 BSC_CTR_ASSIGNMENT_TIMEOUT,
964 BSC_CTR_ASSIGNMENT_FAILED,
965 BSC_CTR_ASSIGNMENT_ERROR,
Alexander Couzensb847a212016-08-02 11:34:11 +0200966 BSC_CTR_HANDOVER_ATTEMPTED,
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200967 BSC_CTR_HANDOVER_COMPLETED,
968 BSC_CTR_HANDOVER_STOPPED,
Alexander Couzensb847a212016-08-02 11:34:11 +0200969 BSC_CTR_HANDOVER_NO_CHANNEL,
970 BSC_CTR_HANDOVER_TIMEOUT,
Alexander Couzensb847a212016-08-02 11:34:11 +0200971 BSC_CTR_HANDOVER_FAILED,
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200972 BSC_CTR_HANDOVER_ERROR,
Daniel Willmannbf2a4b62020-08-20 15:25:37 +0200973 BSC_CTR_INTRA_CELL_HO_ATTEMPTED,
974 BSC_CTR_INTRA_CELL_HO_COMPLETED,
975 BSC_CTR_INTRA_CELL_HO_STOPPED,
976 BSC_CTR_INTRA_CELL_HO_NO_CHANNEL,
977 BSC_CTR_INTRA_CELL_HO_TIMEOUT,
978 BSC_CTR_INTRA_CELL_HO_FAILED,
979 BSC_CTR_INTRA_CELL_HO_ERROR,
980 BSC_CTR_INTRA_BSC_HO_ATTEMPTED,
981 BSC_CTR_INTRA_BSC_HO_COMPLETED,
982 BSC_CTR_INTRA_BSC_HO_STOPPED,
983 BSC_CTR_INTRA_BSC_HO_NO_CHANNEL,
984 BSC_CTR_INTRA_BSC_HO_TIMEOUT,
985 BSC_CTR_INTRA_BSC_HO_FAILED,
986 BSC_CTR_INTRA_BSC_HO_ERROR,
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200987 BSC_CTR_INTER_BSC_HO_OUT_ATTEMPTED,
988 BSC_CTR_INTER_BSC_HO_OUT_COMPLETED,
989 BSC_CTR_INTER_BSC_HO_OUT_STOPPED,
990 BSC_CTR_INTER_BSC_HO_OUT_TIMEOUT,
Neels Hofmeyrdbe59f62020-08-29 03:23:31 +0000991 BSC_CTR_INTER_BSC_HO_OUT_FAILED,
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200992 BSC_CTR_INTER_BSC_HO_OUT_ERROR,
993 BSC_CTR_INTER_BSC_HO_IN_ATTEMPTED,
994 BSC_CTR_INTER_BSC_HO_IN_COMPLETED,
995 BSC_CTR_INTER_BSC_HO_IN_STOPPED,
996 BSC_CTR_INTER_BSC_HO_IN_NO_CHANNEL,
997 BSC_CTR_INTER_BSC_HO_IN_FAILED,
998 BSC_CTR_INTER_BSC_HO_IN_TIMEOUT,
999 BSC_CTR_INTER_BSC_HO_IN_ERROR,
Alexander Couzensb847a212016-08-02 11:34:11 +02001000 BSC_CTR_PAGING_ATTEMPTED,
1001 BSC_CTR_PAGING_DETACHED,
Harald Weltecf9d4312017-12-13 23:17:16 +01001002 BSC_CTR_PAGING_RESPONDED,
Alexander Chemeris43def742020-05-16 18:49:59 +03001003 BSC_CTR_PAGING_NO_ACTIVE_PAGING,
Stefan Sperling7926d982018-05-17 14:52:02 +02001004 BSC_CTR_UNKNOWN_UNIT_ID,
Neels Hofmeyr1c963eb2020-06-16 12:08:39 +02001005 BSC_CTR_MSCPOOL_SUBSCR_NO_MSC,
1006 BSC_CTR_MSCPOOL_EMERG_FORWARDED,
1007 BSC_CTR_MSCPOOL_EMERG_LOST,
Alexander Couzensb847a212016-08-02 11:34:11 +02001008};
1009
1010static const struct rate_ctr_desc bsc_ctr_description[] = {
Daniel Willmann45062b42020-08-20 18:37:51 +02001011 [BSC_CTR_ASSIGNMENT_ATTEMPTED] = {"assignment:attempted", "Assignment attempts"},
1012 [BSC_CTR_ASSIGNMENT_COMPLETED] = {"assignment:completed", "Assignment completed"},
1013 [BSC_CTR_ASSIGNMENT_STOPPED] = {"assignment:stopped", "Connection ended during Assignment"},
1014 [BSC_CTR_ASSIGNMENT_NO_CHANNEL] = {"assignment:no_channel", "Failure to allocate lchan for Assignment"},
1015 [BSC_CTR_ASSIGNMENT_TIMEOUT] = {"assignment:timeout", "Assignment timed out"},
1016 [BSC_CTR_ASSIGNMENT_FAILED] = {"assignment:failed", "Received Assignment Failure message"},
1017 [BSC_CTR_ASSIGNMENT_ERROR] = {"assignment:error", "Assignment failed for other reason"},
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001018
Daniel Willmann45062b42020-08-20 18:37:51 +02001019 [BSC_CTR_HANDOVER_ATTEMPTED] = {"handover:attempted", "Intra-BSC handover attempts"},
1020 [BSC_CTR_HANDOVER_COMPLETED] = {"handover:completed", "Intra-BSC handover completed"},
1021 [BSC_CTR_HANDOVER_STOPPED] = {"handover:stopped", "Connection ended during HO"},
1022 [BSC_CTR_HANDOVER_NO_CHANNEL] = {"handover:no_channel", "Failure to allocate lchan for HO"},
1023 [BSC_CTR_HANDOVER_TIMEOUT] = {"handover:timeout", "Handover timed out"},
1024 [BSC_CTR_HANDOVER_FAILED] = {"handover:failed", "Received Handover Fail messages"},
1025 [BSC_CTR_HANDOVER_ERROR] = {"handover:error", "Re-assignment failed for other reason"},
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001026
Daniel Willmannbf2a4b62020-08-20 15:25:37 +02001027 [BSC_CTR_INTRA_CELL_HO_ATTEMPTED] = {"intra_cell_ho:attempted", "Intra-Cell handover attempts"},
1028 [BSC_CTR_INTRA_CELL_HO_COMPLETED] = {"intra_cell_ho:completed", "Intra-Cell handover completed"},
1029 [BSC_CTR_INTRA_CELL_HO_STOPPED] = {"intra_cell_ho:stopped", "Connection ended during HO"},
1030 [BSC_CTR_INTRA_CELL_HO_NO_CHANNEL] = {"intra_cell_ho:no_channel", "Failure to allocate lchan for HO"},
1031 [BSC_CTR_INTRA_CELL_HO_TIMEOUT] = {"intra_cell_ho:timeout", "Handover timed out"},
1032 [BSC_CTR_INTRA_CELL_HO_FAILED] = {"intra_cell_ho:failed", "Received Handover Fail messages"},
1033 [BSC_CTR_INTRA_CELL_HO_ERROR] = {"intra_cell_ho:error", "Re-assignment failed for other reason"},
1034
1035 [BSC_CTR_INTRA_BSC_HO_ATTEMPTED] = {"intra_bsc_ho:attempted", "Intra-BSC handover attempts"},
1036 [BSC_CTR_INTRA_BSC_HO_COMPLETED] = {"intra_bsc_ho:completed", "Intra-BSC handover completed"},
1037 [BSC_CTR_INTRA_BSC_HO_STOPPED] = {"intra_bsc_ho:stopped", "Connection ended during HO"},
1038 [BSC_CTR_INTRA_BSC_HO_NO_CHANNEL] = {"intra_bsc_ho:no_channel", "Failure to allocate lchan for HO"},
1039 [BSC_CTR_INTRA_BSC_HO_TIMEOUT] = {"intra_bsc_ho:timeout", "Handover timed out"},
1040 [BSC_CTR_INTRA_BSC_HO_FAILED] = {"intra_bsc_ho:failed", "Received Handover Fail messages"},
1041 [BSC_CTR_INTRA_BSC_HO_ERROR] = {"intra_bsc_ho:error", "Re-assignment failed for other reason"},
1042
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001043 [BSC_CTR_INTER_BSC_HO_OUT_ATTEMPTED] = {"interbsc_ho_out:attempted",
Daniel Willmann45062b42020-08-20 18:37:51 +02001044 "Attempts to handover to remote BSS"},
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001045 [BSC_CTR_INTER_BSC_HO_OUT_COMPLETED] = {"interbsc_ho_out:completed",
Daniel Willmann45062b42020-08-20 18:37:51 +02001046 "Handover to remote BSS completed"},
1047 [BSC_CTR_INTER_BSC_HO_OUT_STOPPED] = {"interbsc_ho_out:stopped", "Connection ended during HO"},
1048 [BSC_CTR_INTER_BSC_HO_OUT_TIMEOUT] = {"interbsc_ho_out:timeout", "Handover timed out"},
Neels Hofmeyrdbe59f62020-08-29 03:23:31 +00001049 [BSC_CTR_INTER_BSC_HO_OUT_FAILED] = {"interbsc_ho_out:failed", "Received Handover Fail message"},
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001050 [BSC_CTR_INTER_BSC_HO_OUT_ERROR] = {"interbsc_ho_out:error",
Daniel Willmann45062b42020-08-20 18:37:51 +02001051 "Handover to remote BSS failed for other reason"},
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001052
1053 [BSC_CTR_INTER_BSC_HO_IN_ATTEMPTED] = {"interbsc_ho_in:attempted",
Daniel Willmann45062b42020-08-20 18:37:51 +02001054 "Attempts to handover from remote BSS"},
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001055 [BSC_CTR_INTER_BSC_HO_IN_COMPLETED] = {"interbsc_ho_in:completed",
Daniel Willmann45062b42020-08-20 18:37:51 +02001056 "Handover from remote BSS completed"},
1057 [BSC_CTR_INTER_BSC_HO_IN_STOPPED] = {"interbsc_ho_in:stopped", "Connection ended during HO"},
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001058 [BSC_CTR_INTER_BSC_HO_IN_NO_CHANNEL] = {"interbsc_ho_in:no_channel",
Daniel Willmann45062b42020-08-20 18:37:51 +02001059 "Failure to allocate lchan for HO"},
1060 [BSC_CTR_INTER_BSC_HO_IN_TIMEOUT] = {"interbsc_ho_in:timeout", "Handover from remote BSS timed out"},
1061 [BSC_CTR_INTER_BSC_HO_IN_FAILED] = {"interbsc_ho_in:failed", "Received Handover Fail message"},
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001062 [BSC_CTR_INTER_BSC_HO_IN_ERROR] = {"interbsc_ho_in:error",
Daniel Willmann45062b42020-08-20 18:37:51 +02001063 "Handover from remote BSS failed for other reason"},
Harald Weltecf9d4312017-12-13 23:17:16 +01001064
Daniel Willmann45062b42020-08-20 18:37:51 +02001065 [BSC_CTR_PAGING_ATTEMPTED] = {"paging:attempted", "Paging attempts for a subscriber"},
1066 [BSC_CTR_PAGING_DETACHED] = {"paging:detached", "Paging request send failures because no responsible BTS was found"},
1067 [BSC_CTR_PAGING_RESPONDED] = {"paging:responded", "Paging attempts with successful response"},
1068 [BSC_CTR_PAGING_NO_ACTIVE_PAGING] = {"paging:no_active_paging", "Paging response without an active paging request (arrived after paging expiration?)"},
Stefan Sperling7926d982018-05-17 14:52:02 +02001069
Daniel Willmann45062b42020-08-20 18:37:51 +02001070 [BSC_CTR_UNKNOWN_UNIT_ID] = {"abis:unknown_unit_id", "Connection attempts from unknown IPA CCM Unit ID"},
Neels Hofmeyr1c963eb2020-06-16 12:08:39 +02001071
1072 [BSC_CTR_MSCPOOL_SUBSCR_NO_MSC] = {"mscpool:subscr:no_msc",
Daniel Willmann45062b42020-08-20 18:37:51 +02001073 "Complete Layer 3 requests lost because no connected MSC is found available"},
Neels Hofmeyr1c963eb2020-06-16 12:08:39 +02001074 [BSC_CTR_MSCPOOL_EMERG_FORWARDED] = {"mscpool:emerg:forwarded",
Daniel Willmann45062b42020-08-20 18:37:51 +02001075 "Emergency call requests forwarded to an MSC (see also per-MSC counters"},
Neels Hofmeyr1c963eb2020-06-16 12:08:39 +02001076 [BSC_CTR_MSCPOOL_EMERG_LOST] = {"mscpool:emerg:lost",
Daniel Willmann45062b42020-08-20 18:37:51 +02001077 "Emergency call requests lost because no MSC was found available"},
Alexander Couzensb847a212016-08-02 11:34:11 +02001078};
1079
Alexander Couzensb847a212016-08-02 11:34:11 +02001080
1081
1082static const struct rate_ctr_group_desc bsc_ctrg_desc = {
1083 "bsc",
1084 "base station controller",
1085 OSMO_STATS_CLASS_GLOBAL,
1086 ARRAY_SIZE(bsc_ctr_description),
1087 bsc_ctr_description,
Alexander Couzens20423ea2016-07-12 15:42:02 +02001088};
1089
Alexander Chemerisdb542832020-05-08 01:49:12 +03001090/* Constants for the BSC stats */
1091enum {
1092 BSC_STAT_NUM_BTS_TOTAL,
1093};
1094
Daniel Willmannaa420ce2020-08-20 15:37:35 +02001095/* BTS counter index if a BTS could not be found
1096 * Currently we are limited to bts 0 - 255 in the VTY, but that might change in
1097 * the future so use 2**16 */
1098#define BTS_STAT_IDX_UNKNOWN (UINT16_MAX + 1)
1099
Neels Hofmeyr73983952016-05-10 13:29:33 +02001100struct gsm_tz {
1101 int override; /* if 0, use system's time zone instead. */
1102 int hr; /* hour */
1103 int mn; /* minute */
1104 int dst; /* daylight savings */
1105};
1106
Harald Welte52b1f982008-12-23 20:25:15 +00001107struct gsm_network {
Neels Hofmeyrce4d88b2017-05-08 15:12:20 +02001108 /* TODO MSCSPLIT the gsm_network struct is basically a kitchen sink for
1109 * global settings and variables, "madly" mixing BSC and MSC stuff. Split
1110 * this in e.g. struct osmo_bsc and struct osmo_msc, with the things
1111 * these have in common, like country and network code, put in yet
1112 * separate structs and placed as members in osmo_bsc and osmo_msc. */
1113
Neels Hofmeyrf93970b2018-03-05 02:09:40 +01001114 struct osmo_plmn_id plmn;
1115
Harald Welte51e4bf32017-12-23 17:30:18 +01001116 /* bit-mask of permitted encryption algorithms. LSB=A5/0, MSB=A5/7 */
1117 uint8_t a5_encryption_mask;
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001118 int neci;
Neels Hofmeyr909e9722017-12-07 03:54:01 +01001119
Neels Hofmeyre25018b2017-11-27 21:29:33 +01001120 struct handover_cfg *ho;
Neels Hofmeyr909e9722017-12-07 03:54:01 +01001121 struct {
1122 unsigned int congestion_check_interval_s;
1123 struct osmo_timer_list congestion_check_timer;
1124 } hodec2;
Harald Welte52b1f982008-12-23 20:25:15 +00001125
Alexander Chemerisdb542832020-05-08 01:49:12 +03001126 /* structures for keeping rate counters and gauge stats */
Alexander Couzensb847a212016-08-02 11:34:11 +02001127 struct rate_ctr_group *bsc_ctrs;
Alexander Chemerisdb542832020-05-08 01:49:12 +03001128 struct osmo_stat_item_group *bsc_statg;
Harald Welte24ff6ee2009-12-22 00:41:05 +01001129
Harald Welte52b1f982008-12-23 20:25:15 +00001130 unsigned int num_bts;
Harald Weltee441d9c2009-06-21 16:17:15 +02001131 struct llist_head bts_list;
Oliver Smith8d8d7102018-10-23 15:35:43 +02001132 struct llist_head bts_rejected;
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001133
Daniel Willmannaa420ce2020-08-20 15:37:35 +02001134 /* BTS-based counters when we can't find the actual BTS
1135 * e.g. when conn->lchan is NULL */
1136 struct rate_ctr_group *bts_unknown_ctrs;
1137 struct osmo_stat_item_group *bts_unknown_statg;
1138
Neels Hofmeyr08822a32019-07-11 03:43:34 +02001139 /* see gsm_network_T_defs */
Neels Hofmeyra6078fe2019-01-28 03:52:14 +01001140 struct osmo_tdef *T_defs;
Harald Welteeab84a12009-12-13 10:53:12 +01001141
Alexander Couzens547c2072017-11-21 12:03:04 +01001142 enum gsm_chan_t ctype_by_chreq[_NUM_CHREQ_T];
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +08001143
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001144 /* Use a TCH for handling requests of type paging any */
1145 int pag_any_tch;
1146
Neels Hofmeyr06a14d22020-05-26 12:41:18 +02001147 /* msc configuration */
1148 struct llist_head mscs;
Neels Hofmeyreec776e2020-05-25 00:02:56 +02001149 uint8_t mscs_round_robin_next_nr;
1150 /* Emergency calls potentially select a different set of MSCs, so to not mess up the normal round-robin
1151 * behavior, emergency calls need a separate round-robin counter. */
1152 uint8_t mscs_round_robin_next_emerg_nr;
Neels Hofmeyr06a14d22020-05-26 12:41:18 +02001153
1154 /* rf ctl related bits */
1155 int mid_call_timeout;
1156 char *rf_ctrl_name;
1157 struct osmo_bsc_rf *rf_ctrl;
1158 int auto_off_timeout;
1159
1160 struct bsc_cbc_link *cbc;
Holger Hans Peter Freytherdaee5ca2010-12-22 12:34:39 +01001161
Daniel Willmann6fc4a982011-07-22 17:55:42 +02001162 /* control interface */
1163 struct ctrl_handle *ctrl;
Neels Hofmeyr5f0c71b2016-07-23 20:15:28 +02001164
1165 /* Allow or disallow TCH/F on dynamic TCH/F_TCH/H_PDCH; OS#1778 */
1166 bool dyn_ts_allow_tch_f;
Neels Hofmeyrd90fa422016-05-09 21:03:12 +02001167
1168 /* all active subscriber connections. */
1169 struct llist_head subscr_conns;
Neels Hofmeyr73983952016-05-10 13:29:33 +02001170
1171 /* if override is nonzero, this timezone data is used for all MM
1172 * contexts. */
1173 /* TODO: in OsmoNITB, tz-override used to be BTS-specific. To enable
1174 * BTS|RNC specific timezone overrides for multi-tz networks in
Neels Hofmeyrfe291de2017-02-23 21:06:12 +01001175 * OsmoMSC, this should be tied to the location area code (LAC). */
Neels Hofmeyr73983952016-05-10 13:29:33 +02001176 struct gsm_tz tz;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001177
1178 /* List of all struct bsc_subscr used in libbsc. This llist_head is
1179 * allocated so that the llist_head pointer itself can serve as a
1180 * talloc context (useful to not have to pass the entire gsm_network
1181 * struct to the bsc_subscr_* API, and for bsc_susbscr unit tests to
1182 * not require gsm_data.h). In an MSC-without-BSC environment, this
1183 * pointer is NULL to indicate absence of a bsc_subscribers list. */
1184 struct llist_head *bsc_subscribers;
Harald Weltea43e0b42016-06-19 18:06:02 +02001185
Stefan Sperling6cee8932018-01-30 18:14:22 +01001186 /* Timer for periodic channel load measurements to maintain each BTS's T3122. */
1187 struct osmo_timer_list t3122_chan_load_timer;
1188
Neels Hofmeyrc29505e2016-05-20 21:59:55 +02001189 struct {
Philipp Maier39c609b2017-09-27 15:51:34 +02001190 struct mgcp_client_conf *conf;
1191 struct mgcp_client *client;
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +02001192 struct osmo_tdef *tdefs;
Philipp Maier39c609b2017-09-27 15:51:34 +02001193 } mgw;
Neels Hofmeyr19bed232018-03-22 04:54:57 +01001194
1195 /* Remote BSS Cell Identifier Lists */
1196 struct neighbor_ident_list *neighbor_bss_cells;
Oliver Smitha595db12020-03-17 12:21:00 +01001197
1198 /* Don't refuse to start with mutually exclusive codec settings */
1199 bool allow_unusable_timeslots;
Neels Hofmeyr4099f1d2020-05-26 03:58:14 +02001200
1201 uint8_t nri_bitlen;
1202 struct osmo_nri_ranges *null_nri_ranges;
Harald Welte7e310b12009-03-30 20:56:32 +00001203};
1204
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001205struct gsm_audio_support {
1206 uint8_t hr : 1,
1207 ver : 7;
1208};
1209
Neels Hofmeyrc13e6872016-05-11 13:53:47 +02001210extern void talloc_ctx_init(void *ctx_root);
1211
Harald Welte1d014a52009-08-08 15:38:29 +02001212enum gsm_bts_type parse_btstype(const char *arg);
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +02001213const char *btstype2str(enum gsm_bts_type type);
Harald Weltebe991492009-05-23 13:56:40 +00001214struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
1215 struct gsm_bts *start_bts);
Harald Welte32201c12009-03-10 12:15:10 +00001216
Andreas Eversberg8226fa72009-06-29 15:19:38 +02001217extern void *tall_bsc_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +02001218
Harald Welte1876c312018-05-27 11:53:43 +02001219extern struct gsm_network *bsc_gsmnet;
1220
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01001221enum bts_gprs_mode bts_gprs_mode_parse(const char *arg, int *valid);
Harald Welte4511d892010-04-18 15:51:20 +02001222const char *bts_gprs_mode_name(enum bts_gprs_mode mode);
1223
Neels Hofmeyr4d358c02018-02-22 03:19:05 +01001224void gsm48_ra_id_by_bts(struct gsm48_ra_id *buf, struct gsm_bts *bts);
Harald Welte97a282b2010-03-14 15:37:43 +08001225void gprs_ra_id_by_bts(struct gprs_ra_id *raid, struct gsm_bts *bts);
Harald Welted12b0fd2009-12-15 21:36:05 +01001226
Harald Welte3561bd42018-01-28 03:04:16 +01001227struct gsm_subscriber_connection *bsc_subscr_con_allocate(struct gsm_network *network);
Neels Hofmeyr42eb0142016-05-20 17:15:44 +02001228
Neels Hofmeyr958f2592018-05-27 01:26:31 +02001229struct gsm_bts *gsm_bts_alloc_register(struct gsm_network *net, enum gsm_bts_type type, uint8_t bsic);
1230struct gsm_bts *bsc_bts_alloc_register(struct gsm_network *net, enum gsm_bts_type type, uint8_t bsic);
Harald Welte142d12d2014-12-29 17:47:08 +01001231
Harald Welte3300c012011-06-05 13:31:33 +02001232void set_ts_e1link(struct gsm_bts_trx_ts *ts, uint8_t e1_nr,
1233 uint8_t e1_ts, uint8_t e1_ts_ss);
1234
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001235/* generic E1 line operations for all ISDN-based BTS. */
1236extern struct e1inp_line_ops bts_isdn_e1inp_line_ops;
1237
Holger Hans Peter Freytherf8c42192013-01-09 17:03:27 +01001238/* control interface handling */
1239int bsc_base_ctrl_cmds_install(void);
1240
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001241bool ts_is_usable(const struct gsm_bts_trx_ts *ts);
Neels Hofmeyr958f2592018-05-27 01:26:31 +02001242
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001243int gsm_lchan_type_by_pchan(enum gsm_phys_chan_config pchan);
1244enum gsm_phys_chan_config gsm_pchan_by_lchan_type(enum gsm_chan_t type);
1245
Neels Hofmeyrb523f542020-07-09 15:54:40 +02001246enum gsm48_rr_cause bsc_gsm48_rr_cause_from_gsm0808_cause(enum gsm0808_cause c);
Neels Hofmeyr3405c772020-07-11 01:44:08 +02001247enum gsm48_rr_cause bsc_gsm48_rr_cause_from_rsl_cause(uint8_t c);
Neels Hofmeyrb523f542020-07-09 15:54:40 +02001248
Neels Hofmeyra33ef3a2020-10-01 04:23:32 +02001249int bsc_sccp_inst_next_conn_id(struct osmo_sccp_instance *sccp);
1250
Harald Welte6be350c2011-05-25 13:10:08 +02001251#endif /* _GSM_DATA_H */