blob: 42eb583e75ac7be54cda9199e9cf178e20223a53 [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>
Neels Hofmeyr10485162018-02-13 23:22:03 +01007#include <stdint.h>
Harald Weltef142c972011-05-24 13:25:38 +02008
9#include <osmocom/core/timer.h>
Alexander Couzens20423ea2016-07-12 15:42:02 +020010#include <osmocom/core/rate_ctr.h>
Harald Welte6be350c2011-05-25 13:10:08 +020011#include <osmocom/core/select.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>
Stefan Sperling6442e432018-02-06 14:44:54 +010033#include <osmocom/bsc/acc_ramp.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;
Philipp Maier39f62bb2017-04-09 12:32:51 +020043
Holger Hans Peter Freytherd7b22c62013-04-29 09:11:02 +020044/** annotations for msgb ownership */
45#define __uses
46
Holger Hans Peter Freyther6f615552010-11-15 20:50:42 +010047#define OBSC_NM_W_ACK_CB(__msgb) (__msgb)->cb[3]
48
Neels Hofmeyr6d804b12017-02-18 22:20:46 +010049struct bsc_subscr;
Neels Hofmeyr7b656882017-07-09 22:09:18 +020050struct gprs_ra_id;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +020051struct handover;
Holger Hans Peter Freyther694c82d2011-10-26 18:37:09 +020052
Holger Hans Peter Freyther9c595b72010-06-15 11:20:52 +080053#define OBSC_LINKID_CB(__msgb) (__msgb)->cb[3]
54
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +010055#define tmsi_from_string(str) strtoul(str, NULL, 10)
56
Max70fdd242017-06-15 15:10:53 +020057/* 3-bit long values */
58#define EARFCN_PRIO_INVALID 8
59#define EARFCN_MEAS_BW_INVALID 8
60/* 5-bit long values */
61#define EARFCN_QRXLV_INVALID 32
62#define EARFCN_THRESH_LOW_INVALID 32
63
Harald Welte8e1e3ee2009-02-01 13:32:45 +000064struct msgb;
65typedef int gsm_cbfn(unsigned int hooknum,
66 unsigned int event,
67 struct msgb *msg,
68 void *data, void *param);
69
Harald Weltef7c28b02009-12-21 13:30:17 +010070/* Maximum number of neighbor cells whose average we track */
71#define MAX_NEIGH_MEAS 10
72/* Maximum size of the averaging window for neighbor cells */
73#define MAX_WIN_NEIGH_AVG 10
Andreas Eversberg98692032013-06-23 10:44:34 +020074/* Maximum number of report history we store */
75#define MAX_MEAS_REP 10
Harald Weltef7c28b02009-12-21 13:30:17 +010076
77/* processed neighbor measurements for one cell */
78struct neigh_meas_proc {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020079 uint16_t arfcn;
80 uint8_t bsic;
81 uint8_t rxlev[MAX_WIN_NEIGH_AVG];
Harald Weltef7c28b02009-12-21 13:30:17 +010082 unsigned int rxlev_cnt;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020083 uint8_t last_seen_nr;
Harald Weltef7c28b02009-12-21 13:30:17 +010084};
85
Harald Weltea43e0b42016-06-19 18:06:02 +020086struct gsm_classmark {
87 bool classmark1_set;
88 struct gsm48_classmark1 classmark1;
89 uint8_t classmark2_len;
90 uint8_t classmark2[3];
91 uint8_t classmark3_len;
92 uint8_t classmark3[14]; /* if cm3 gets extended by spec, it will be truncated */
93};
94
Harald Welte519c7e12018-01-28 02:45:46 +010095enum subscr_sccp_state {
96 SUBSCR_SCCP_ST_NONE,
97 SUBSCR_SCCP_ST_WAIT_CONN_CONF,
98 SUBSCR_SCCP_ST_CONNECTED
99};
100
Sylvain Munautaa824922019-03-07 16:32:02 +0100101enum channel_rate {
102 CH_RATE_SDCCH,
103 CH_RATE_HALF,
104 CH_RATE_FULL,
105};
106
Philipp Maierbb66d102019-01-22 11:29:06 +0100107struct channel_mode_and_rate {
108 enum gsm48_chan_mode chan_mode;
Sylvain Munautaa824922019-03-07 16:32:02 +0100109 enum channel_rate chan_rate;
Philipp Maierbb66d102019-01-22 11:29:06 +0100110 uint16_t s15_s0;
111};
112
Neels Hofmeyr7cfdbe72019-02-06 01:30:19 +0100113/* Information retrieved during an Assignment Request from the MSC. This is storage of the Assignment instructions
114 * parsed from the Assignment Request message, to pass on until the gscon and assignment FSMs have decided whether an
115 * Assignment is actually going to be carried out. Should remain unchanged after initial decoding. */
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200116struct assignment_request {
117 bool aoip;
118
119 uint16_t msc_assigned_cic;
120
121 char msc_rtp_addr[INET_ADDRSTRLEN];
122 uint16_t msc_rtp_port;
Pau Espin Pedrol83c0f762019-04-16 20:05:32 +0200123 bool use_osmux;
124 uint8_t osmux_cid;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200125
Sylvain Munautaa824922019-03-07 16:32:02 +0100126 /* Rate/codec setting in preference order (need at least 1 !) */
127 int n_ch_mode_rate;
128 struct channel_mode_and_rate ch_mode_rate[3];
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200129};
130
Neels Hofmeyr7cfdbe72019-02-06 01:30:19 +0100131/* State of an ongoing Assignment, while the assignment_fsm is still busy. This serves as state separation to keep the
132 * currently used lchan and gscon unmodified until the outcome of an Assignment is known. If the Assignment fails, this
133 * state is simply discarded, and the gscon carries on with the original lchan remaining unchanged. */
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200134struct assignment_fsm_data {
135 struct assignment_request req;
136 bool requires_voice_stream;
137
138 struct osmo_fsm_inst *fi;
139 struct gsm_lchan *new_lchan;
140
141 /* Whether this assignment triggered creation of the MGW endpoint: if the assignment
142 * fails, we will release that again as soon as possible. (If false, the endpoint already
143 * existed before or isn't needed at all.)*/
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +0200144 struct osmo_mgcpc_ep_ci *created_ci_for_msc;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200145
146 enum gsm0808_cause failure_cause;
147 enum gsm48_rr_cause rr_cause;
148
149 bool result_rate_ctr_done;
150};
151
152enum hodec_id {
153 HODEC_NONE,
154 HODEC1 = 1,
155 HODEC2 = 2,
156 HODEC_USER,
157 HODEC_REMOTE,
158};
159
160/* For example, to count specific kinds of ongoing handovers, it is useful to be able to OR-combine
161 * scopes. */
162enum handover_scope {
163 HO_NO_HANDOVER = 0,
164 HO_INTRA_CELL = 0x1,
165 HO_INTRA_BSC = 0x2,
166 HO_INTER_BSC_OUT = 0x4,
167 HO_INTER_BSC_IN = 0x8,
168 HO_SCOPE_ALL = 0xffff,
169};
170
171extern const struct value_string handover_scope_names[];
172inline static const char *handover_scope_name(enum handover_scope val)
173{ return get_value_string(handover_scope_names, val); }
174
175struct handover_out_req {
176 enum hodec_id from_hodec_id;
177 struct gsm_lchan *old_lchan;
178 struct neighbor_ident_key target_nik;
179 enum gsm_chan_t new_lchan_type; /*< leave GSM_LCHAN_NONE to use same as old_lchan */
180};
181
182struct handover_in_req {
183 struct gsm0808_channel_type ct;
184 struct gsm0808_speech_codec_list scl;
185 struct gsm0808_encrypt_info ei;
186 struct gsm_classmark classmark;
Neels Hofmeyrc15f6cd2019-03-15 02:48:39 +0100187 /* chosen_encr_alg reflects the encoded value as in RSL_ENC_ALG_A5(a5_numer):
188 * chosen_encr_alg == 1 means A5/0 i.e. no encryption, chosen_encr_alg == 4 means A5/3.
189 * chosen_encr_alg == 0 means no such IE was present. */
190 uint8_t chosen_encr_alg;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200191 struct gsm0808_cell_id cell_id_serving;
192 char cell_id_serving_name[64];
193 struct gsm0808_cell_id cell_id_target;
194 char cell_id_target_name[64];
195 uint16_t msc_assigned_cic;
196 char msc_assigned_rtp_addr[INET_ADDRSTRLEN];
197 uint16_t msc_assigned_rtp_port;
198};
199
200struct handover {
201 struct osmo_fsm_inst *fi;
202
203 enum hodec_id from_hodec_id;
204 enum handover_scope scope;
205 enum gsm_chan_t new_lchan_type;
206 struct neighbor_ident_key target_cell;
207
208 uint8_t ho_ref;
209 struct gsm_bts *new_bts;
210 struct gsm_lchan *new_lchan;
211 bool async;
212 struct handover_in_req inter_bsc_in;
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +0200213 struct osmo_mgcpc_ep_ci *created_ci_for_msc;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200214};
215
Neels Hofmeyr378a4922016-05-09 21:07:43 +0200216/* active radio connection of a mobile subscriber */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100217struct gsm_subscriber_connection {
Harald Weltea43e0b42016-06-19 18:06:02 +0200218 /* global linked list of subscriber_connections */
Holger Hans Peter Freyther79f763f2010-09-16 00:53:37 +0800219 struct llist_head entry;
220
Harald Welte3561bd42018-01-28 03:04:16 +0100221 /* FSM instance to control the subscriber connection state (RTP, A) */
222 struct osmo_fsm_inst *fi;
223
Harald Weltea43e0b42016-06-19 18:06:02 +0200224 /* libbsc subscriber information (if available) */
Neels Hofmeyr6d804b12017-02-18 22:20:46 +0100225 struct bsc_subscr *bsub;
226
Holger Hans Peter Freyther18b63f42010-03-23 07:52:17 +0100227 /* back pointers */
Neels Hofmeyr5e0b0a62016-05-09 22:33:01 +0200228 struct gsm_network *network;
229
Neels Hofmeyr7cfdbe72019-02-06 01:30:19 +0100230 /* the primary / currently active lchan to the BTS/subscriber. During Assignment and Handover, separate lchans
231 * are kept in the .assignment or .handover sub-structs, respectively, so that this lchan remains unaffected
232 * until Assignment or Handover have actually succeeded. */
Harald Welte4a8ebc82017-12-18 18:34:41 +0100233 struct gsm_lchan *lchan;
Harald Welte3561bd42018-01-28 03:04:16 +0100234
Neels Hofmeyr7cfdbe72019-02-06 01:30:19 +0100235 /* Only valid during an ongoing Assignment; might be overwritten at any time by a failed Assignment attempt.
236 * Once an Assignment was successful, all relevant state must be copied out of this sub-struct. */
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200237 struct assignment_fsm_data assignment;
Holger Hans Peter Freyther77cd95d2010-11-14 16:19:48 +0100238
Neels Hofmeyr7cfdbe72019-02-06 01:30:19 +0100239 /* handover information, if a handover is pending for this conn. Valid only during an ongoing Handover
240 * operation. If a Handover was successful, all relevant state must be copied out of this sub-struct. */
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200241 struct handover ho;
Holger Hans Peter Freyther77cd95d2010-11-14 16:19:48 +0100242
Neels Hofmeyr149160f2018-06-16 17:20:13 +0200243 /* Queue DTAP messages during handover/assignment (msgb_enqueue()/msgb_dequeue())*/
244 struct llist_head dtap_queue;
245 unsigned int dtap_queue_len;
Andreas Eversberg084b4212013-05-30 14:12:48 +0200246
Neels Hofmeyrec422642018-02-15 14:07:40 +0100247 struct {
Neels Hofmeyr909e9722017-12-07 03:54:01 +0100248 int failures;
Neels Hofmeyrec422642018-02-15 14:07:40 +0100249 struct penalty_timers *penalty_timers;
250 } hodec2;
Neels Hofmeyra60f3442018-02-12 16:44:32 +0100251
252 /* "Codec List (MSC Preferred)" as received by the BSSAP Assignment Request. 3GPP 48.008
253 * 3.2.2.103 says:
254 * The "Codec List (MSC Preferred)" shall not include codecs
255 * that are not supported by the MS.
256 * i.e. by heeding the "Codec list (MSC Preferred)", we inherently heed the MS bearer
257 * capabilities, which the MSC is required to translate into the codec list. */
258 struct gsm0808_speech_codec_list codec_list;
Harald Welte519c7e12018-01-28 02:45:46 +0100259
260 /* flag to prevent multiple simultaneous ciphering commands */
261 int ciphering_handled;
262
Harald Welte519c7e12018-01-28 02:45:46 +0100263 /* SCCP connection associatd with this subscriber_connection */
264 struct {
265 /* for advanced ping/pong */
266 int send_ping;
267
Martin Haukea29affd2019-11-13 22:10:41 +0100268 /* SCCP connection related */
Harald Welte519c7e12018-01-28 02:45:46 +0100269 struct bsc_msc_data *msc;
270
271 /* Sigtran connection ID */
272 int conn_id;
273 enum subscr_sccp_state state;
274 } sccp;
275
276 /* for audio handling */
277 struct {
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200278 uint16_t msc_assigned_cic;
Harald Welte519c7e12018-01-28 02:45:46 +0100279
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200280 /* RTP address where the MSC expects us to send the RTP stream coming from the BTS. */
281 char msc_assigned_rtp_addr[INET_ADDRSTRLEN];
282 uint16_t msc_assigned_rtp_port;
Harald Welte519c7e12018-01-28 02:45:46 +0100283
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200284 /* The endpoint at the MGW used to join both BTS and MSC side connections, e.g.
285 * "rtpbridge/23@mgw". */
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +0200286 struct osmo_mgcpc_ep *mgw_endpoint;
Harald Welte3561bd42018-01-28 03:04:16 +0100287
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +0200288 /* The connection identifier of the osmo_mgcpc_ep used to transceive RTP towards the MSC.
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200289 * (The BTS side CI is handled by struct gsm_lchan and the lchan_fsm.) */
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +0200290 struct osmo_mgcpc_ep_ci *mgw_endpoint_ci_msc;
Harald Welte519c7e12018-01-28 02:45:46 +0100291 } user_plane;
Harald Weltec997ceb2018-05-30 01:39:43 +0200292
293 /* LCLS (local call, local switch) related state */
294 struct {
295 uint8_t global_call_ref[15];
296 uint8_t global_call_ref_len; /* length of global_call_ref */
Maxfe65ece2018-11-09 13:36:11 +0100297 enum gsm0808_lcls_config config; /* TS 48.008 3.2.2.116 */
298 enum gsm0808_lcls_control control; /* TS 48.008 3.2.2.117 */
Harald Weltec997ceb2018-05-30 01:39:43 +0200299 /* LCLS FSM */
300 struct osmo_fsm_inst *fi;
301 /* pointer to "other" connection, if Call Leg Relocation was successful */
302 struct gsm_subscriber_connection *other;
303 } lcls;
Pau Espin Pedrol7950e5d2019-10-31 15:59:49 +0100304
305 /* MS Power Class, TS 05.05 sec 4.1.1 "Mobile station". 0 means unset. */
306 uint8_t ms_power_class:3;
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
335#define TRX_NR_TS 8
336#define TS_MAX_LCHAN 8
337
338#define HARDCODED_ARFCN 123
339#define HARDCODED_BSIC 0x3f /* NCC = 7 / BCC = 7 */
340
341/* for multi-drop config */
342#define HARDCODED_BTS0_TS 1
343#define HARDCODED_BTS1_TS 6
344#define HARDCODED_BTS2_TS 11
345
346#define MAX_VERSION_LENGTH 64
347
Neels Hofmeyr10485162018-02-13 23:22:03 +0100348enum gsm_hooks {
349 GSM_HOOK_NM_SWLOAD,
350 GSM_HOOK_RR_PAGING,
351 GSM_HOOK_RR_SECURITY,
352};
353
Neels Hofmeyr10485162018-02-13 23:22:03 +0100354enum bts_gprs_mode {
355 BTS_GPRS_NONE = 0,
356 BTS_GPRS_GPRS = 1,
357 BTS_GPRS_EGPRS = 2,
358};
359
360struct gsm_lchan;
361struct osmo_rtp_socket;
362struct rtp_socket;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100363
364/* Network Management State */
365struct gsm_nm_state {
366 uint8_t operational;
367 uint8_t administrative;
368 uint8_t availability;
369};
370
371struct gsm_abis_mo {
372 uint8_t obj_class;
373 uint8_t procedure_pending;
374 struct abis_om_obj_inst obj_inst;
375 const char *name;
376 struct gsm_nm_state nm_state;
377 struct tlv_parsed *nm_attr;
378 struct gsm_bts *bts;
379};
380
381/* Ericsson OM2000 Managed Object */
382struct abis_om2k_mo {
383 uint8_t class;
384 uint8_t bts;
385 uint8_t assoc_so;
386 uint8_t inst;
387} __attribute__ ((packed));
388
389struct om2k_mo {
390 struct abis_om2k_mo addr;
391 struct osmo_fsm_inst *fsm;
392};
393
394#define A38_XOR_MIN_KEY_LEN 12
395#define A38_XOR_MAX_KEY_LEN 16
396#define A38_COMP128_KEY_LEN 16
397#define RSL_ENC_ALG_A5(x) (x+1)
398#define MAX_EARFCN_LIST 32
399
400/* is the data link established? who established it? */
401#define LCHAN_SAPI_UNUSED 0
402#define LCHAN_SAPI_MS 1
403#define LCHAN_SAPI_NET 2
Neels Hofmeyr10485162018-02-13 23:22:03 +0100404
405/* BTS ONLY */
406#define MAX_NUM_UL_MEAS 104
407#define LC_UL_M_F_L1_VALID (1 << 0)
408#define LC_UL_M_F_RES_VALID (1 << 1)
409
410struct bts_ul_meas {
411 /* BER in units of 0.01%: 10.000 == 100% ber, 0 == 0% ber */
412 uint16_t ber10k;
413 /* timing advance offset (in quarter bits) */
414 int16_t ta_offs_qbits;
415 /* C/I ratio in dB */
416 float c_i;
417 /* flags */
418 uint8_t is_sub:1;
419 /* RSSI in dBm * -1 */
420 uint8_t inv_rssi;
421};
422
423struct bts_codec_conf {
424 uint8_t hr;
425 uint8_t efr;
426 uint8_t amr;
427};
428
429struct amr_mode {
430 uint8_t mode;
431 uint8_t threshold;
432 uint8_t hysteresis;
433};
434
435struct amr_multirate_conf {
436 uint8_t gsm48_ie[2];
437 struct amr_mode ms_mode[4];
438 struct amr_mode bts_mode[4];
439 uint8_t num_modes;
440};
441/* /BTS ONLY */
442
443enum lchan_csd_mode {
444 LCHAN_CSD_M_NT,
445 LCHAN_CSD_M_T_1200_75,
446 LCHAN_CSD_M_T_600,
447 LCHAN_CSD_M_T_1200,
448 LCHAN_CSD_M_T_2400,
449 LCHAN_CSD_M_T_9600,
450 LCHAN_CSD_M_T_14400,
451 LCHAN_CSD_M_T_29000,
452 LCHAN_CSD_M_T_32000,
453};
454
455/* State of the SAPIs in the lchan */
456enum lchan_sapi_state {
457 LCHAN_SAPI_S_NONE,
458 LCHAN_SAPI_S_REQ,
459 LCHAN_SAPI_S_ASSIGNED,
460 LCHAN_SAPI_S_REL,
461 LCHAN_SAPI_S_ERROR,
462};
463
Neels Hofmeyr92b9f2e2018-02-14 00:19:11 +0100464#define MAX_A5_KEY_LEN (128/8)
465
466struct gsm_encr {
467 uint8_t alg_id;
468 uint8_t key_len;
469 uint8_t key[MAX_A5_KEY_LEN];
470};
471
Neels Hofmeyr8da22332018-04-11 01:43:41 +0200472#define LOGPLCHAN(lchan, ss, level, fmt, args...) \
473 LOGP(ss, level, "%s (ss=%d,%s) (%s) " fmt, \
474 lchan ? gsm_ts_and_pchan_name(lchan->ts) : "-", \
475 lchan ? lchan->nr : 0, \
476 lchan ? gsm_lchant_name(lchan->type) : "-", \
477 bsc_subscr_name(lchan && lchan->conn ? lchan->conn->bsub : NULL), \
478 ## args)
479
Pau Espin Pedrold3e8e0c2018-11-28 16:35:10 +0100480/* Iterate lchans that have an FSM allocated based based on explicit pchan kind
481 * (GSM_PCHAN_* constant).
482 * Remark: PDCH related lchans are not handled in BSC but in PCU, so trying to
483 * iterate through GSM_PCHAN_PDCH is considered a void loop.
484 */
485#define ts_as_pchan_for_each_lchan(lchan, ts, as_pchan) \
486 for (lchan = (ts)->lchan; \
487 ((lchan - (ts)->lchan) < ARRAY_SIZE((ts)->lchan)) \
488 && lchan->fi \
489 && lchan->nr < pchan_subslots(as_pchan); \
490 lchan++)
491
Pau Espin Pedrol7ae0f9c2018-11-28 16:37:37 +0100492/* Iterate lchans that have an FSM allocated based on current PCHAN
493 * mode set in \ref ts.
494 * usage:
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200495 * struct gsm_lchan *lchan;
496 * struct gsm_bts_trx_ts *ts = get_some_timeslot();
497 * ts_for_each_lchan(lchan, ts) {
498 * LOGPLCHAN(DMAIN, LOGL_DEBUG, "hello world\n");
499 * }
Pau Espin Pedrol7ae0f9c2018-11-28 16:37:37 +0100500 */
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200501#define ts_for_each_lchan(lchan, ts) ts_as_pchan_for_each_lchan(lchan, ts, (ts)->pchan_is)
502
Pau Espin Pedrol0ba20df2018-11-28 16:39:29 +0100503/* Iterate over all possible lchans available that have an FSM allocated based
504 * on PCHAN \ref ts (dynamic) configuration.
505 * Iterate all lchan instances set up by this \ref ts type, including those
506 * lchans currently disabled or in process of being enabled (e.g. due to dynamic
507 * timeslot in switchover). Compare ts_for_each_lchan(), which iterates only the
508 * enabled lchans.
509 * For example, it is useful in case dynamic timeslot \ref ts is in process of
510 * switching from configuration PDCH (no lchans) to TCH_F (1 lchan), where
511 * pchan_is is still set to PDCH but \ref ts may contain already an \ref lchan
512 * of type TCH_F which initiated the request to switch the \ts configuration.
513 */
514#define ts_for_each_potential_lchan(lchan, ts) ts_as_pchan_for_each_lchan(lchan, ts, (ts)->pchan_on_init)
515
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200516enum lchan_activate_mode {
517 FOR_NONE,
518 FOR_MS_CHANNEL_REQUEST,
519 FOR_ASSIGNMENT,
520 FOR_HANDOVER,
521 FOR_VTY,
522};
523
524extern const struct value_string lchan_activate_mode_names[];
525static inline const char *lchan_activate_mode_name(enum lchan_activate_mode activ_for)
526{ return get_value_string(lchan_activate_mode_names, activ_for); }
527
Neels Hofmeyr700e5182018-12-19 17:19:02 +0100528struct lchan_activate_info {
529 enum lchan_activate_mode activ_for;
530 struct gsm_subscriber_connection *for_conn;
531 /* This always is for a specific lchan, so its lchan->type indicates full or half rate.
532 * When a dyn TS was selected, the lchan->type has been set to the desired rate. */
533 enum gsm48_chan_mode chan_mode;
Neels Hofmeyr58cf1b12019-03-15 02:49:18 +0100534 struct gsm_encr encr;
Neels Hofmeyr38134ea2018-12-21 03:01:00 +0100535 /* AMR config */
Neels Hofmeyr700e5182018-12-19 17:19:02 +0100536 uint16_t s15_s0;
537 bool requires_voice_stream;
538 bool wait_before_switching_rtp; /*< true = requires LCHAN_EV_READY_TO_SWITCH_RTP */
539 uint16_t msc_assigned_cic;
Neels Hofmeyr38134ea2018-12-21 03:01:00 +0100540 /* During intra-BSC handover, we keep the MGW endpoint intact and just re-route to the new lchan. This
541 * 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 +0100542 struct gsm_lchan *re_use_mgw_endpoint_from_lchan;
543};
544
Neels Hofmeyr10485162018-02-13 23:22:03 +0100545struct gsm_lchan {
546 /* The TS that we're part of */
547 struct gsm_bts_trx_ts *ts;
548 /* The logical subslot number in the TS */
549 uint8_t nr;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200550 char *name;
551
Neels Hofmeyreee24eb2018-11-06 21:39:15 +0100552 char *last_error;
553
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200554 struct osmo_fsm_inst *fi;
Neels Hofmeyrac85b342018-07-12 21:23:26 +0200555 struct osmo_fsm_inst *fi_rtp;
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +0200556 struct osmo_mgcpc_ep_ci *mgw_endpoint_ci_bts;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200557
558 struct {
Neels Hofmeyr700e5182018-12-19 17:19:02 +0100559 struct lchan_activate_info info;
Neels Hofmeyrac85b342018-07-12 21:23:26 +0200560 bool activ_ack; /*< true as soon as RSL Chan Activ Ack is received */
Neels Hofmeyr369fba22018-11-27 01:30:50 +0100561 bool immediate_assignment_sent;
Neels Hofmeyr193c1e32018-08-27 22:06:24 +0200562 /*! This flag ensures that when an lchan activation has succeeded, and we have already
563 * sent ACKs like Immediate Assignment or BSSMAP Assignment Complete, and if other errors
564 * occur later, e.g. during release, that we don't send a NACK out of context. */
565 bool concluded;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200566 enum gsm0808_cause gsm0808_error_cause;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200567 } activate;
568
Neels Hofmeyreee24eb2018-11-06 21:39:15 +0100569 struct {
570 /* If an event to release the lchan comes in while still waiting for responses, just mark this
571 * flag, so that the lchan will gracefully release at the next sensible junction. */
572 bool requested;
573 bool do_rr_release;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200574
Neels Hofmeyreee24eb2018-11-06 21:39:15 +0100575 /* There is an RSL error cause of value 0, so we need a separate flag. */
576 bool in_error;
577 /* RSL error code, RSL_ERR_* */
578 uint8_t rsl_error_cause;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200579
Neels Hofmeyreee24eb2018-11-06 21:39:15 +0100580 /* If a release event is being handled, ignore other ricocheting release events until that
581 * release handling has concluded. */
582 bool in_release_handler;
Harald Welte963763d2019-02-03 12:11:12 +0100583
584 /* is this release at the end of a CSFB call? */
585 bool is_csfb;
Neels Hofmeyreee24eb2018-11-06 21:39:15 +0100586 } release;
Neels Hofmeyrd5df9a12018-07-20 05:35:47 +0200587
Neels Hofmeyr10485162018-02-13 23:22:03 +0100588 /* The logical channel type */
589 enum gsm_chan_t type;
590 /* RSL channel mode */
591 enum rsl_cmod_spd rsl_cmode;
592 /* If TCH, traffic channel mode */
593 enum gsm48_chan_mode tch_mode;
594 enum lchan_csd_mode csd_mode;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100595 /* Power levels for MS and BTS */
596 uint8_t bs_power;
597 uint8_t ms_power;
598 /* Encryption information */
599 struct gsm_encr encr;
600
601 /* AMR bits */
602 uint8_t mr_ms_lv[7];
603 uint8_t mr_bts_lv[7];
Neels Hofmeyr4daa2102019-01-30 16:46:58 +0100604 /* AMR bits were based on these rate bits: */
605 uint16_t s15_s0;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100606
607 /* Established data link layer services */
608 uint8_t sapis[8];
609
610 struct {
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200611 uint32_t bound_ip; /*< where the BTS receives RTP */
Neels Hofmeyr10485162018-02-13 23:22:03 +0100612 uint16_t bound_port;
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200613 uint32_t connect_ip; /*< where the BTS sends RTP to (MGW) */
Neels Hofmeyr10485162018-02-13 23:22:03 +0100614 uint16_t connect_port;
615 uint16_t conn_id;
616 uint8_t rtp_payload;
617 uint8_t rtp_payload2;
618 uint8_t speech_mode;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100619
620 /* info we need to postpone the AoIP
621 * assignment completed message */
622 struct {
623 uint8_t rr_cause;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100624 bool valid;
625 } ass_compl;
626 } abis_ip;
627
628 uint8_t rqd_ta;
629
Neels Hofmeyr10485162018-02-13 23:22:03 +0100630 /* table of neighbor cell measurements */
631 struct neigh_meas_proc neigh_meas[MAX_NEIGH_MEAS];
632
633 /* cache of last measurement reports on this lchan */
634 struct gsm_meas_rep meas_rep[MAX_MEAS_REP];
635 int meas_rep_idx;
636 int meas_rep_count;
Neels Hofmeyr35ba85c2018-02-12 16:47:40 +0100637 uint8_t meas_rep_last_seen_nr;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100638
639 /* GSM Random Access data */
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200640 /* TODO: don't allocate this, rather keep an "is_present" flag */
Neels Hofmeyr10485162018-02-13 23:22:03 +0100641 struct gsm48_req_ref *rqd_ref;
642
643 struct gsm_subscriber_connection *conn;
Philipp Maierbb66d102019-01-22 11:29:06 +0100644
645 /* Depending on the preferences that where submitted together with
646 * the assignment and the current channel load, the BSC has to select
647 * one of the offered codec/rates. The final selection by the BSC is
648 * stored here and is used when sending the assignment complete or
649 * when performing a handover procedure. */
650 struct channel_mode_and_rate ch_mode_rate;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100651};
652
Neels Hofmeyr10485162018-02-13 23:22:03 +0100653/* One Timeslot in a TRX */
654struct gsm_bts_trx_ts {
655 struct gsm_bts_trx *trx;
656 /* number of this timeslot at the TRX */
657 uint8_t nr;
658
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200659 struct osmo_fsm_inst *fi;
660 char *last_errmsg;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100661
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200662 /* vty phys_chan_config setting, not necessarily in effect in case it was changed in the telnet
663 * vty after OML activation. Gets written on vty 'write file'. */
664 enum gsm_phys_chan_config pchan_from_config;
665 /* When the timeslot OML is established, pchan_from_config is copied here. This is the pchan
666 * currently in effect; for dynamic ts, this is the dyn kind (GSM_PCHAN_TCH_F_TCH_H_PDCH or
667 * GSM_PCHAN_TCH_F_PDCH) and does not show the pchan type currently active. */
668 enum gsm_phys_chan_config pchan_on_init;
669 /* This is the *actual* pchan type currently active. For dynamic timeslots, this reflects either
670 * GSM_PCHAN_NONE or one of the standard GSM_PCHAN_TCH_F, GSM_PCHAN_TCH_H, GSM_PCHAN_PDCH.
671 * Callers can use this transparently without being aware of dyn ts. */
672 enum gsm_phys_chan_config pchan_is;
Neels Hofmeyr10485162018-02-13 23:22:03 +0100673
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200674 /* After a PDCH ACT NACK, we shall not infinitely loop to try and ACT again.
675 * Also marks a timeslot where PDCH was deactivated by VTY. This is cleared whenever a timeslot
676 * enters IN_USE state, i.e. after each TCH use we try to PDCH ACT once again. */
677 bool pdch_act_allowed;
678
Neels Hofmeyrbcdbfb72018-07-26 20:33:15 +0200679 /* Whether TS_EV_OML_READY was received */
680 bool is_oml_ready;
681 /* Whether TS_EV_RSL_READY was received */
682 bool is_rsl_ready;
683
Neels Hofmeyr10485162018-02-13 23:22:03 +0100684 struct gsm_abis_mo mo;
685 struct tlv_parsed nm_attr;
686 uint8_t nm_chan_comb;
687 int tsc; /* -1 == use BTS TSC */
688
689 struct {
690 /* Parameters below are configured by VTY */
691 int enabled;
692 uint8_t maio;
693 uint8_t hsn;
694 struct bitvec arfcns;
695 uint8_t arfcns_data[1024/8];
696 /* This is the pre-computed MA for channel assignments */
697 struct bitvec ma;
698 uint8_t ma_len; /* part of ma_data that is used */
699 uint8_t ma_data[8]; /* 10.5.2.21: max 8 bytes value part */
700 } hopping;
701
702 /* To which E1 subslot are we connected */
703 struct gsm_e1_subslot e1_link;
704
705 union {
706 struct {
707 struct om2k_mo om2k_mo;
708 } rbs2000;
709 };
710
711 struct gsm_lchan lchan[TS_MAX_LCHAN];
712};
713
714/* One TRX in a BTS */
715struct gsm_bts_trx {
716 /* list header in bts->trx_list */
717 struct llist_head list;
718
719 struct gsm_bts *bts;
720 /* number of this TRX in the BTS */
721 uint8_t nr;
722 /* human readable name / description */
723 char *description;
724 /* how do we talk RSL with this TRX? */
725 struct gsm_e1_subslot rsl_e1_link;
726 uint8_t rsl_tei;
727 struct e1inp_sign_link *rsl_link;
728
729 /* Timeout for initiating the RSL connection. */
730 struct osmo_timer_list rsl_connect_timeout;
731
732 /* Some BTS (specifically Ericsson RBS) have a per-TRX OML Link */
733 struct e1inp_sign_link *oml_link;
734
735 struct gsm_abis_mo mo;
736 struct tlv_parsed nm_attr;
737 struct {
738 struct gsm_abis_mo mo;
739 } bb_transc;
740
741 uint16_t arfcn;
742 int nominal_power; /* in dBm */
743 unsigned int max_power_red; /* in actual dB */
744
745 union {
746 struct {
747 struct {
748 struct gsm_abis_mo mo;
749 } bbsig;
750 struct {
751 struct gsm_abis_mo mo;
752 } pa;
753 } bs11;
754 struct {
755 unsigned int test_state;
756 uint8_t test_nr;
757 struct rxlev_stats rxlev_stat;
758 } ipaccess;
759 struct {
760 struct {
761 struct om2k_mo om2k_mo;
762 } trxc;
763 struct {
764 struct om2k_mo om2k_mo;
765 } rx;
766 struct {
767 struct om2k_mo om2k_mo;
768 } tx;
769 } rbs2000;
770 };
771 struct gsm_bts_trx_ts ts[TRX_NR_TS];
772};
773
774#define GSM_BTS_SI2Q(bts, i) (struct gsm48_system_information_type_2quater *)((bts)->si_buf[SYSINFO_TYPE_2quater][i])
775#define GSM_BTS_HAS_SI(bts, i) ((bts)->si_valid & (1 << i))
776#define GSM_BTS_SI(bts, i) (void *)((bts)->si_buf[i][0])
777#define GSM_LCHAN_SI(lchan, i) (void *)((lchan)->si.buf[i][0])
778
779enum gsm_bts_type {
780 GSM_BTS_TYPE_UNKNOWN,
781 GSM_BTS_TYPE_BS11,
782 GSM_BTS_TYPE_NANOBTS,
783 GSM_BTS_TYPE_RBS2000,
784 GSM_BTS_TYPE_NOKIA_SITE,
785 GSM_BTS_TYPE_OSMOBTS,
786 _NUM_GSM_BTS_TYPE
787};
788
789enum gsm_bts_type_variant {
790 BTS_UNKNOWN,
791 BTS_OSMO_LITECELL15,
792 BTS_OSMO_OCTPHY,
793 BTS_OSMO_SYSMO,
794 BTS_OSMO_TRX,
795 _NUM_BTS_VARIANT
796};
797
798/* Used by OML layer for BTS Attribute reporting */
799enum bts_attribute {
800 BTS_TYPE_VARIANT,
801 BTS_SUB_MODEL,
802 TRX_PHY_VERSION,
803};
804
805struct vty;
806
807struct gsm_bts_model {
808 struct llist_head list;
809
810 enum gsm_bts_type type;
811 enum gsm_bts_type_variant variant;
812 const char *name;
813
814 bool started;
815 int (*start)(struct gsm_network *net);
816 int (*oml_rcvmsg)(struct msgb *msg);
817 char * (*oml_status)(const struct gsm_bts *bts);
818
819 void (*e1line_bind_ops)(struct e1inp_line *line);
820
821 void (*config_write_bts)(struct vty *vty, struct gsm_bts *bts);
822 void (*config_write_trx)(struct vty *vty, struct gsm_bts_trx *trx);
823 void (*config_write_ts)(struct vty *vty, struct gsm_bts_trx_ts *ts);
824
Pau Espin Pedrol167cb822018-11-19 17:48:17 +0100825 /* Should SI2bis and SI2ter be disabled by default on this BTS model? */
826 bool force_combined_si;
827
Neels Hofmeyr10485162018-02-13 23:22:03 +0100828 struct tlv_definition nm_att_tlvdef;
829
830 /* features of a given BTS model set via gsm_bts_model_register() locally */
831 struct bitvec features;
832 uint8_t _features_data[MAX_BTS_FEATURES/8];
833};
834
Neels Hofmeyr10485162018-02-13 23:22:03 +0100835
Neels Hofmeyr10485162018-02-13 23:22:03 +0100836
837/*
838 * This keeps track of the paging status of one BTS. It
839 * includes a number of pending requests, a back pointer
840 * to the gsm_bts, a timer and some more state.
841 */
842struct gsm_bts_paging_state {
843 /* pending requests */
844 struct llist_head pending_requests;
845 struct gsm_bts *bts;
846
847 struct osmo_timer_list work_timer;
848 struct osmo_timer_list credit_timer;
849
850 /* free chans needed */
851 int free_chans_need;
852
853 /* load */
854 uint16_t available_slots;
855};
856
857struct gsm_envabtse {
858 struct gsm_abis_mo mo;
859};
860
861struct gsm_bts_gprs_nsvc {
862 struct gsm_bts *bts;
863 /* data read via VTY config file, to configure the BTS
864 * via OML from BSC */
865 int id;
866 uint16_t nsvci;
867 uint16_t local_port; /* on the BTS */
868 uint16_t remote_port; /* on the SGSN */
869 uint32_t remote_ip; /* on the SGSN */
870
871 struct gsm_abis_mo mo;
872};
873
874enum gprs_rlc_par {
875 RLC_T3142,
876 RLC_T3169,
877 RLC_T3191,
878 RLC_T3193,
879 RLC_T3195,
880 RLC_N3101,
881 RLC_N3103,
882 RLC_N3105,
883 CV_COUNTDOWN,
884 T_DL_TBF_EXT, /* ms */
885 T_UL_TBF_EXT, /* ms */
886 _NUM_RLC_PAR
887};
888
889enum gprs_cs {
890 GPRS_CS1,
891 GPRS_CS2,
892 GPRS_CS3,
893 GPRS_CS4,
894 GPRS_MCS1,
895 GPRS_MCS2,
896 GPRS_MCS3,
897 GPRS_MCS4,
898 GPRS_MCS5,
899 GPRS_MCS6,
900 GPRS_MCS7,
901 GPRS_MCS8,
902 GPRS_MCS9,
903 _NUM_GRPS_CS
904};
905
906struct gprs_rlc_cfg {
907 uint16_t parameter[_NUM_RLC_PAR];
908 struct {
909 uint16_t repeat_time; /* ms */
910 uint8_t repeat_count;
911 } paging;
912 uint32_t cs_mask; /* bitmask of gprs_cs */
913 uint8_t initial_cs;
914 uint8_t initial_mcs;
915};
916
917
918enum neigh_list_manual_mode {
919 NL_MODE_AUTOMATIC = 0,
920 NL_MODE_MANUAL = 1,
921 NL_MODE_MANUAL_SI5SEP = 2, /* SI2 and SI5 have separate neighbor lists */
922};
923
924enum bts_loc_fix {
925 BTS_LOC_FIX_INVALID = 0,
926 BTS_LOC_FIX_2D = 1,
927 BTS_LOC_FIX_3D = 2,
928};
929
930extern const struct value_string bts_loc_fix_names[];
931
932struct bts_location {
933 struct llist_head list;
934 time_t tstamp;
935 enum bts_loc_fix valid;
936 double lat;
937 double lon;
938 double height;
939};
940
941/* Channel load counter */
942struct load_counter {
943 unsigned int total;
944 unsigned int used;
945};
946
Neels Hofmeyr19bed232018-03-22 04:54:57 +0100947/* Useful to track N-N relations between BTS, for example neighbors. */
948struct gsm_bts_ref {
949 struct llist_head entry;
950 struct gsm_bts *bts;
951};
952
Harald Welted41b7c72019-06-13 09:41:58 +0200953/* A single Page of a SMSCB message */
954struct bts_smscb_page {
955 /* SMSCB message we're part of */
956 struct bts_smscb_message *msg;
957 /* Page Number within message (1 to 15) */
958 uint8_t nr;
959 /* number of valid blocks in data (up to 4) */
960 uint8_t num_blocks;
961 /* up to four blocks of 22 bytes each */
962 uint8_t data[88];
963};
964
965/* A SMSCB message (received from CBSP) */
966struct bts_smscb_message {
967 /* entry in bts_smscb_chan_state.messages */
968 struct llist_head list;
969 struct {
970 /* input data from CBSP (CBC) side */
971 uint16_t msg_id;
972 uint16_t serial_nr;
973 enum cbsp_category category;
974 uint16_t rep_period;
975 uint16_t num_bcast_req;
976 uint8_t dcs;
977 } input;
978 /* how often have all pages of this message been broadcast? */
979 uint32_t bcast_count;
980 /* actual page data of this message */
981 uint8_t num_pages; /* up to 15 */
982 struct bts_smscb_page page[15];
983};
984
985/* per-channel (basic/extended) CBCH state for a single BTS */
986struct bts_smscb_chan_state {
987 /* back-pointer to BTS */
988 struct gsm_bts *bts;
989 /* list of bts_smscb_message */
990 struct llist_head messages;
991 /* scheduling array; pointer of SMSCB pages */
992 struct bts_smscb_page **sched_arr;
993 size_t sched_arr_size;
994 /* index of the next to be transmitted page into the scheduler array */
995 size_t next_idx;
996 /* number of messages we have to pause due to overflow */
997 uint8_t overflow;
998};
999
Oliver Smithba0a1222020-03-18 12:39:30 +01001000struct bts_oml_fail_rep {
1001 struct llist_head list;
1002 time_t time;
1003 struct msgb *mb;
1004};
1005
Neels Hofmeyr10485162018-02-13 23:22:03 +01001006/* One BTS */
1007struct gsm_bts {
1008 /* list header in net->bts_list */
1009 struct llist_head list;
1010
1011 /* Geographical location of the BTS */
1012 struct llist_head loc_list;
1013
Martin Haukea29affd2019-11-13 22:10:41 +01001014 /* number of this BTS in network */
Neels Hofmeyr10485162018-02-13 23:22:03 +01001015 uint8_t nr;
1016 /* human readable name / description */
1017 char *description;
1018 /* Cell Identity */
1019 uint16_t cell_identity;
1020 /* location area code of this BTS */
1021 uint16_t location_area_code;
1022 /* Base Station Identification Code (BSIC), lower 3 bits is BCC,
1023 * which is used as TSC for the CCCH */
1024 uint8_t bsic;
1025 /* type of BTS */
1026 enum gsm_bts_type type;
1027 enum gsm_bts_type_variant variant;
1028 struct gsm_bts_model *model;
1029 enum gsm_band band;
1030 char version[MAX_VERSION_LENGTH];
1031 char sub_model[MAX_VERSION_LENGTH];
1032
1033 /* features of a given BTS set/reported via OML */
1034 struct bitvec features;
1035 uint8_t _features_data[MAX_BTS_FEATURES/8];
1036
1037 /* Connected PCU version (if any) */
1038 char pcu_version[MAX_VERSION_LENGTH];
1039
1040 /* maximum Tx power that the MS is permitted to use in this cell */
1041 int ms_max_power;
1042
1043 /* how do we talk OML with this TRX? */
1044 struct gsm_e1_subslot oml_e1_link;
1045 uint8_t oml_tei;
1046 struct e1inp_sign_link *oml_link;
Pau Espin Pedrol9862bcb2018-08-22 21:54:12 +02001047 /* Timer to use for deferred drop of OML link, see \ref ipaccess_drop_oml_deferred */
1048 struct osmo_timer_list oml_drop_link_timer;
Neels Hofmeyr10485162018-02-13 23:22:03 +01001049 /* when OML link was established */
1050 time_t uptime;
1051
1052 /* Abis network management O&M handle */
1053 struct abis_nm_h *nmh;
1054
1055 struct gsm_abis_mo mo;
1056
1057 /* number of this BTS on given E1 link */
1058 uint8_t bts_nr;
1059
1060 /* DTX features of this BTS */
1061 enum gsm48_dtx_mode dtxu;
1062 bool dtxd;
1063
1064 /* paging state and control */
1065 struct gsm_bts_paging_state paging;
1066
1067 /* CCCH is on C0 */
1068 struct gsm_bts_trx *c0;
1069
1070 struct {
1071 struct gsm_abis_mo mo;
1072 } site_mgr;
1073
1074 /* bitmask of all SI that are present/valid in si_buf */
1075 uint32_t si_valid;
1076 /* 3GPP TS 44.018 Table 10.5.2.33b.1 INDEX and COUNT for SI2quater */
1077 uint8_t si2q_index; /* distinguish individual SI2quater messages */
1078 uint8_t si2q_count; /* si2q_index for the last (highest indexed) individual SI2quater message */
1079 /* buffers where we put the pre-computed SI */
1080 sysinfo_buf_t si_buf[_MAX_SYSINFO_TYPE][SI2Q_MAX_NUM];
1081 /* offsets used while generating SI2quater */
1082 size_t e_offset;
1083 size_t u_offset;
Pau Espin Pedrol1cf21de2018-12-05 13:38:10 +01001084 /* 3GPP TS 08.58 §8.5.1 BCCH INFORMATION. Some nanoBTS fail upon
1085 * receival of empty SI disabling unsupported SI. see OS#3707. */
1086 bool si_unused_send_empty;
Neels Hofmeyr10485162018-02-13 23:22:03 +01001087
Martin Haukea29affd2019-11-13 22:10:41 +01001088 /* ip.access Unit ID's have Site/BTS/TRX layout */
Neels Hofmeyr10485162018-02-13 23:22:03 +01001089 union {
1090 struct {
1091 uint16_t site_id;
1092 uint16_t bts_id;
1093 uint32_t flags;
1094 uint32_t rsl_ip;
1095 } ip_access;
1096 struct {
1097 struct {
1098 struct gsm_abis_mo mo;
1099 } cclk;
1100 struct {
1101 struct gsm_abis_mo mo;
1102 } rack;
1103 struct gsm_envabtse envabtse[4];
1104 } bs11;
1105 struct {
1106 struct {
1107 struct om2k_mo om2k_mo;
1108 struct gsm_abis_mo mo;
1109 struct llist_head conn_groups;
1110 } cf;
1111 struct {
1112 struct om2k_mo om2k_mo;
1113 struct gsm_abis_mo mo;
1114 struct llist_head conn_groups;
1115 } is;
1116 struct {
1117 struct om2k_mo om2k_mo;
1118 struct gsm_abis_mo mo;
1119 struct llist_head conn_groups;
1120 } con;
1121 struct {
1122 struct om2k_mo om2k_mo;
1123 struct gsm_abis_mo mo;
1124 } dp;
1125 struct {
1126 struct om2k_mo om2k_mo;
1127 struct gsm_abis_mo mo;
1128 } tf;
Sylvain Munautcbaa1792020-05-05 20:14:44 +02001129 struct {
1130 struct om2k_mo om2k_mo;
1131 struct gsm_abis_mo mo;
1132 } mctr;
Neels Hofmeyr10485162018-02-13 23:22:03 +01001133 uint32_t use_superchannel:1;
Sylvain Munautdbd1b502020-05-05 21:07:58 +02001134 struct {
1135 uint16_t limit;
1136 uint16_t active;
1137 } om2k_version[16];
Neels Hofmeyr10485162018-02-13 23:22:03 +01001138 } rbs2000;
1139 struct {
1140 uint8_t bts_type;
Harald Welte1d7349f2020-05-03 11:48:31 +02001141 unsigned int configured:1, /* we sent the config data request */
1142 skip_reset:1, /* skip reset at bootstrap */
1143 no_loc_rel_cnf:1, /* don't wait for RSL REL CONF */
1144 bts_reset_timer_cnf, /* timer for BTS RESET */
1145 did_reset:1, /* we received a RESET ACK */
Harald Welte456a62e2020-05-03 12:00:52 +02001146 wait_reset:2; /* we are waiting for reset to complete */
Neels Hofmeyr10485162018-02-13 23:22:03 +01001147 struct osmo_timer_list reset_timer;
1148 } nokia;
1149 };
1150
1151 /* Not entirely sure how ip.access specific this is */
1152 struct {
Neels Hofmeyr10485162018-02-13 23:22:03 +01001153 enum bts_gprs_mode mode;
1154 struct {
1155 struct gsm_abis_mo mo;
1156 uint16_t nsei;
1157 uint8_t timer[7];
1158 } nse;
1159 struct {
1160 struct gsm_abis_mo mo;
1161 uint16_t bvci;
1162 uint8_t timer[11];
1163 struct gprs_rlc_cfg rlc_cfg;
1164 } cell;
1165 struct gsm_bts_gprs_nsvc nsvc[2];
1166 uint8_t rac;
1167 uint8_t net_ctrl_ord;
1168 bool ctrl_ack_type_use_block;
Vadim Yanitskiye981f172020-04-06 18:09:55 +07001169 bool egprs_pkt_chan_request;
Neels Hofmeyr10485162018-02-13 23:22:03 +01001170 } gprs;
1171
Harald Welte15400252019-05-24 11:56:23 +02001172 /* threshold (in percent) when BTS shall send CCCH LOAD IND */
1173 int ccch_load_ind_thresh;
1174
Neels Hofmeyr10485162018-02-13 23:22:03 +01001175 /* RACH NM values */
1176 int rach_b_thresh;
1177 int rach_ldavg_slots;
1178
1179 /* transceivers */
1180 int num_trx;
1181 struct llist_head trx_list;
1182
1183 /* SI related items */
1184 int force_combined_si;
Pau Espin Pedrol167cb822018-11-19 17:48:17 +01001185 bool force_combined_si_set;
Neels Hofmeyr10485162018-02-13 23:22:03 +01001186 int bcch_change_mark;
1187
1188 /* Abis NM queue */
1189 struct llist_head abis_queue;
1190 int abis_nm_pend;
1191
1192 struct gsm_network *network;
1193
1194 /* should the channel allocator allocate channels from high TRX to TRX0,
1195 * rather than starting from TRX0 and go upwards? */
1196 int chan_alloc_reverse;
1197
1198 enum neigh_list_manual_mode neigh_list_manual_mode;
1199 /* parameters from which we build SYSTEM INFORMATION */
1200 struct {
1201 struct gsm48_rach_control rach_control;
1202 uint8_t ncc_permitted;
1203 struct gsm48_cell_sel_par cell_sel_par;
1204 struct gsm48_si_selection_params cell_ro_sel_par; /* rest octet */
1205 struct gsm48_cell_options cell_options;
1206 struct gsm48_control_channel_descr chan_desc;
1207 struct bitvec neigh_list;
1208 struct bitvec cell_alloc;
1209 struct bitvec si5_neigh_list;
1210 struct osmo_earfcn_si2q si2quater_neigh_list;
1211 size_t uarfcn_length; /* index for uarfcn and scramble lists */
1212 struct {
1213 /* bitmask large enough for all possible ARFCN's */
1214 uint8_t neigh_list[1024/8];
1215 uint8_t cell_alloc[1024/8];
1216 /* If the user wants a different neighbor list in SI5 than in SI2 */
1217 uint8_t si5_neigh_list[1024/8];
1218 uint8_t meas_bw_list[MAX_EARFCN_LIST];
1219 uint16_t earfcn_list[MAX_EARFCN_LIST];
1220 uint16_t uarfcn_list[MAX_EARFCN_LIST];
1221 uint16_t scramble_list[MAX_EARFCN_LIST];
1222 } data;
1223 } si_common;
1224 bool early_classmark_allowed;
1225 bool early_classmark_allowed_3g;
1226 /* for testing only: Have an infinitely long radio link timeout */
1227 bool infinite_radio_link_timeout;
1228
1229 /* do we use static (user-defined) system information messages? (bitmask) */
1230 uint32_t si_mode_static;
1231
Stefan Sperling6442e432018-02-06 14:44:54 +01001232 /* access control class ramping */
1233 struct acc_ramp acc_ramp;
1234
Neels Hofmeyr10485162018-02-13 23:22:03 +01001235 /* exclude the BTS from the global RF Lock handling */
1236 int excl_from_rf_lock;
1237
1238 /* supported codecs beside FR */
1239 struct bts_codec_conf codec;
1240
1241 /* BTS dependencies bit field */
1242 uint32_t depends_on[256/(8*4)];
1243
1244 /* full and half rate multirate config */
1245 struct amr_multirate_conf mr_full;
1246 struct amr_multirate_conf mr_half;
1247
1248 /* PCU socket state */
1249 char *pcu_sock_path;
1250 struct pcu_sock_state *pcu_state;
1251
1252 struct rate_ctr_group *bts_ctrs;
1253 struct osmo_stat_item_group *bts_statg;
1254
1255 struct handover_cfg *ho;
1256
Neels Hofmeyr19bed232018-03-22 04:54:57 +01001257 /* A list of struct gsm_bts_ref, indicating neighbors of this BTS.
1258 * When the si_common neigh_list is in automatic mode, it is populated from this list as well as
1259 * gsm_network->neighbor_bss_cells. */
1260 struct llist_head local_neighbors;
1261
Neels Hofmeyr10485162018-02-13 23:22:03 +01001262 /* BTS-specific overrides for timer values from struct gsm_network. */
Martin Haukea29affd2019-11-13 22:10:41 +01001263 uint8_t T3122; /* ASSIGNMENT REJECT wait indication */
Pau Espin Pedrol1b963342018-11-07 14:19:32 +01001264 bool T3113_dynamic; /* Calculate T3113 timeout dynamically based on BTS channel config and load */
Neels Hofmeyr10485162018-02-13 23:22:03 +01001265
1266 /* Periodic channel load measurements are used to maintain T3122. */
1267 struct load_counter chan_load_samples[7];
1268 int chan_load_samples_idx;
Stefan Sperling6442e432018-02-06 14:44:54 +01001269 uint8_t chan_load_avg; /* current channel load average in percent (0 - 100). */
Harald Welted41b7c72019-06-13 09:41:58 +02001270
1271 /* cell broadcast system */
1272 struct osmo_timer_list cbch_timer;
1273 struct bts_smscb_chan_state cbch_basic;
1274 struct bts_smscb_chan_state cbch_extended;
Harald Welte7d888442019-09-06 23:18:27 +02001275 struct osmo_timer_list etws_timer; /* when to stop ETWS PN */
Oliver Smithba0a1222020-03-18 12:39:30 +01001276
1277 struct llist_head oml_fail_rep;
Neels Hofmeyr10485162018-02-13 23:22:03 +01001278};
1279
Oliver Smith8d8d7102018-10-23 15:35:43 +02001280/* One rejected BTS */
1281struct gsm_bts_rejected {
1282 /* list header in net->bts_rejected */
1283 struct llist_head list;
1284
1285 uint16_t site_id;
1286 uint16_t bts_id;
1287 char ip[INET6_ADDRSTRLEN];
1288 time_t time;
1289};
Neels Hofmeyr10485162018-02-13 23:22:03 +01001290
Neels Hofmeyr958f2592018-05-27 01:26:31 +02001291struct gsm_network *gsm_network_init(void *ctx);
1292
Neels Hofmeyr10485162018-02-13 23:22:03 +01001293struct gsm_bts *gsm_bts_alloc(struct gsm_network *net, uint8_t bts_num);
Neels Hofmeyr6d568ed2018-07-09 16:49:18 +02001294struct gsm_bts *gsm_bts_num(const struct gsm_network *net, int num);
Neels Hofmeyr19bed232018-03-22 04:54:57 +01001295bool gsm_bts_matches_lai(const struct gsm_bts *bts, const struct osmo_location_area_id *lai);
1296bool gsm_bts_matches_cell_id(const struct gsm_bts *bts, const struct gsm0808_cell_id *cell_id);
1297struct gsm_bts *gsm_bts_by_cell_id(const struct gsm_network *net,
1298 const struct gsm0808_cell_id *cell_id,
1299 int match_idx);
1300int gsm_bts_local_neighbor_add(struct gsm_bts *bts, struct gsm_bts *neighbor);
1301int gsm_bts_local_neighbor_del(struct gsm_bts *bts, const struct gsm_bts *neighbor);
Neels Hofmeyr10485162018-02-13 23:22:03 +01001302
1303struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts);
1304struct gsm_bts_trx *gsm_bts_trx_num(const struct gsm_bts *bts, int num);
1305
1306enum gsm_bts_type str2btstype(const char *arg);
1307const char *btstype2str(enum gsm_bts_type type);
1308
1309enum bts_attribute str2btsattr(const char *s);
1310const char *btsatttr2str(enum bts_attribute v);
1311
1312enum gsm_bts_type_variant str2btsvariant(const char *arg);
1313const char *btsvariant2str(enum gsm_bts_type_variant v);
1314
1315extern const struct value_string gsm_chreq_descs[];
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001316extern const struct value_string gsm_pchant_names[];
1317extern const struct value_string gsm_pchant_descs[];
1318extern const struct value_string gsm_pchan_ids[];
Neels Hofmeyr10485162018-02-13 23:22:03 +01001319const char *gsm_pchan_name(enum gsm_phys_chan_config c);
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001320static inline const char *gsm_pchan_id(enum gsm_phys_chan_config c)
1321{ return get_value_string(gsm_pchan_ids, c); }
Neels Hofmeyr10485162018-02-13 23:22:03 +01001322enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
1323const char *gsm_lchant_name(enum gsm_chan_t c);
1324const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Harald Welte57658ec2019-02-04 12:30:44 +01001325char *gsm_bts_name(const struct gsm_bts *bts);
Neels Hofmeyr10485162018-02-13 23:22:03 +01001326char *gsm_trx_name(const struct gsm_bts_trx *trx);
1327char *gsm_ts_name(const struct gsm_bts_trx_ts *ts);
1328char *gsm_ts_and_pchan_name(const struct gsm_bts_trx_ts *ts);
1329char *gsm_lchan_name_compute(const struct gsm_lchan *lchan);
Neels Hofmeyr10485162018-02-13 23:22:03 +01001330
1331static inline char *gsm_lchan_name(const struct gsm_lchan *lchan)
1332{
1333 return lchan->name;
1334}
1335
Neels Hofmeyr10485162018-02-13 23:22:03 +01001336void gsm_abis_mo_reset(struct gsm_abis_mo *mo);
1337
1338struct gsm_nm_state *
1339gsm_objclass2nmstate(struct gsm_bts *bts, uint8_t obj_class,
1340 const struct abis_om_obj_inst *obj_inst);
1341void *
1342gsm_objclass2obj(struct gsm_bts *bts, uint8_t obj_class,
1343 const struct abis_om_obj_inst *obj_inst);
1344
1345/* reset the state of all MO in the BTS */
1346void gsm_bts_mo_reset(struct gsm_bts *bts);
1347
1348uint8_t gsm_pchan2chan_nr(enum gsm_phys_chan_config pchan,
1349 uint8_t ts_nr, uint8_t lchan_nr);
1350uint8_t gsm_lchan2chan_nr(const struct gsm_lchan *lchan);
1351uint8_t gsm_lchan_as_pchan2chan_nr(const struct gsm_lchan *lchan,
1352 enum gsm_phys_chan_config as_pchan);
1353
Harald Welte251bec12018-09-09 17:14:09 +02001354void gsm48_lchan2chan_desc(struct gsm48_chan_desc *cd,
1355 const struct gsm_lchan *lchan);
Harald Welte24286f32018-09-09 17:17:44 +02001356void gsm48_lchan2chan_desc_as_configured(struct gsm48_chan_desc *cd, const struct gsm_lchan *lchan);
Harald Welte251bec12018-09-09 17:14:09 +02001357
Neels Hofmeyr10485162018-02-13 23:22:03 +01001358/* return the gsm_lchan for the CBCH (if it exists at all) */
1359struct gsm_lchan *gsm_bts_get_cbch(struct gsm_bts *bts);
1360
Neels Hofmeyr10485162018-02-13 23:22:03 +01001361static inline uint8_t gsm_ts_tsc(const struct gsm_bts_trx_ts *ts)
1362{
1363 if (ts->tsc != -1)
1364 return ts->tsc;
1365 else
1366 return ts->trx->bts->bsic & 7;
1367}
1368
1369struct gsm_lchan *rsl_lchan_lookup(struct gsm_bts_trx *trx, uint8_t chan_nr,
1370 int *rc);
1371
1372enum gsm_phys_chan_config ts_pchan(struct gsm_bts_trx_ts *ts);
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001373uint8_t pchan_subslots(enum gsm_phys_chan_config pchan);
Neels Hofmeyr10485162018-02-13 23:22:03 +01001374bool ts_is_tch(struct gsm_bts_trx_ts *ts);
1375
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +01001376
Harald Welteb7948872017-12-18 18:48:21 +01001377static inline struct gsm_bts *conn_get_bts(struct gsm_subscriber_connection *conn) {
1378 OSMO_ASSERT(conn->lchan);
1379 return conn->lchan->ts->trx->bts;
1380}
1381
Pau Espin Pedrol7950e5d2019-10-31 15:59:49 +01001382void conn_update_ms_power_class(struct gsm_subscriber_connection *conn, uint8_t power_class);
1383void lchan_update_ms_power_ctrl_level(struct gsm_lchan *lchan, int ms_power_dbm);
1384
Alexander Chemeris5d638272020-05-11 00:30:11 +03001385enum bts_counter_id {
Harald Welted82101e2017-12-09 23:07:38 +01001386 BTS_CTR_CHREQ_TOTAL,
1387 BTS_CTR_CHREQ_NO_CHANNEL,
1388 BTS_CTR_CHAN_RF_FAIL,
1389 BTS_CTR_CHAN_RLL_ERR,
1390 BTS_CTR_BTS_OML_FAIL,
1391 BTS_CTR_BTS_RSL_FAIL,
1392 BTS_CTR_CODEC_AMR_F,
1393 BTS_CTR_CODEC_AMR_H,
1394 BTS_CTR_CODEC_EFR,
1395 BTS_CTR_CODEC_V1_FR,
1396 BTS_CTR_CODEC_V1_HR,
Harald Weltecf9d4312017-12-13 23:17:16 +01001397 BTS_CTR_PAGING_ATTEMPTED,
1398 BTS_CTR_PAGING_ALREADY,
1399 BTS_CTR_PAGING_RESPONDED,
1400 BTS_CTR_PAGING_EXPIRED,
Alexander Chemeris43def742020-05-16 18:49:59 +03001401 BTS_CTR_PAGING_NO_ACTIVE_PAGING,
Alexander Chemeris001a2df2020-05-22 21:43:57 +03001402 BTS_CTR_PAGING_MSC_FLUSH,
Harald Welte4f598922017-12-14 13:47:02 +01001403 BTS_CTR_CHAN_ACT_TOTAL,
1404 BTS_CTR_CHAN_ACT_NACK,
Harald Welte62d9cb02017-12-14 14:00:26 +01001405 BTS_CTR_RSL_UNKNOWN,
Harald Welte581398a2017-12-14 14:29:44 +01001406 BTS_CTR_RSL_IPA_NACK,
Harald Welte00d64fd2017-12-14 14:34:16 +01001407 BTS_CTR_MODE_MODIFY_NACK,
Alexander Chemeris5d638272020-05-11 00:30:11 +03001408 BTS_CTR_LCHAN_BORKEN_FROM_UNUSED,
1409 BTS_CTR_LCHAN_BORKEN_FROM_WAIT_ACTIV_ACK,
1410 BTS_CTR_LCHAN_BORKEN_FROM_WAIT_RF_RELEASE_ACK,
1411 BTS_CTR_LCHAN_BORKEN_FROM_BORKEN,
1412 BTS_CTR_LCHAN_BORKEN_FROM_UNKNOWN,
1413 BTS_CTR_LCHAN_BORKEN_EV_CHAN_ACTIV_ACK,
1414 BTS_CTR_LCHAN_BORKEN_EV_CHAN_ACTIV_NACK,
1415 BTS_CTR_LCHAN_BORKEN_EV_RF_CHAN_REL_ACK,
1416 BTS_CTR_LCHAN_BORKEN_EV_VTY,
1417 BTS_CTR_LCHAN_BORKEN_EV_TEARDOWN,
1418 BTS_CTR_TS_BORKEN_FROM_NOT_INITIALIZED,
1419 BTS_CTR_TS_BORKEN_FROM_UNUSED,
1420 BTS_CTR_TS_BORKEN_FROM_WAIT_PDCH_ACT,
1421 BTS_CTR_TS_BORKEN_FROM_PDCH,
1422 BTS_CTR_TS_BORKEN_FROM_WAIT_PDCH_DEACT,
1423 BTS_CTR_TS_BORKEN_FROM_IN_USE,
1424 BTS_CTR_TS_BORKEN_FROM_BORKEN,
1425 BTS_CTR_TS_BORKEN_FROM_UNKNOWN,
1426 BTS_CTR_TS_BORKEN_EV_PDCH_ACT_ACK_NACK,
1427 BTS_CTR_TS_BORKEN_EV_PDCH_DEACT_ACK_NACK,
1428 BTS_CTR_TS_BORKEN_EV_TEARDOWN,
Harald Welted82101e2017-12-09 23:07:38 +01001429};
1430
1431static const struct rate_ctr_desc bts_ctr_description[] = {
Harald Welte1ef46d92017-12-09 23:10:46 +01001432 [BTS_CTR_CHREQ_TOTAL] = {"chreq:total", "Received channel requests."},
1433 [BTS_CTR_CHREQ_NO_CHANNEL] = {"chreq:no_channel", "Sent to MS no channel available."},
1434 [BTS_CTR_CHAN_RF_FAIL] = {"chan:rf_fail", "Received a RF failure indication from BTS."},
1435 [BTS_CTR_CHAN_RLL_ERR] = {"chan:rll_err", "Received a RLL failure with T200 cause from BTS."},
Harald Welted82101e2017-12-09 23:07:38 +01001436 [BTS_CTR_BTS_OML_FAIL] = {"oml_fail", "Received a TEI down on a OML link."},
1437 [BTS_CTR_BTS_RSL_FAIL] = {"rsl_fail", "Received a TEI down on a OML link."},
Harald Welte1ef46d92017-12-09 23:10:46 +01001438 [BTS_CTR_CODEC_AMR_F] = {"codec:amr_f", "Count the usage of AMR/F codec by channel mode requested."},
1439 [BTS_CTR_CODEC_AMR_H] = {"codec:amr_h", "Count the usage of AMR/H codec by channel mode requested."},
1440 [BTS_CTR_CODEC_EFR] = {"codec:efr", "Count the usage of EFR codec by channel mode requested."},
1441 [BTS_CTR_CODEC_V1_FR] = {"codec:fr", "Count the usage of FR codec by channel mode requested."},
1442 [BTS_CTR_CODEC_V1_HR] = {"codec:hr", "Count the usage of HR codec by channel mode requested."},
Harald Weltecf9d4312017-12-13 23:17:16 +01001443
1444 [BTS_CTR_PAGING_ATTEMPTED] = {"paging:attempted", "Paging attempts for a subscriber."},
Martin Haukea29affd2019-11-13 22:10:41 +01001445 [BTS_CTR_PAGING_ALREADY] = {"paging:already", "Paging attempts ignored as subscriber was already being paged."},
Harald Weltecf9d4312017-12-13 23:17:16 +01001446 [BTS_CTR_PAGING_RESPONDED] = {"paging:responded", "Paging attempts with successful paging response."},
1447 [BTS_CTR_PAGING_EXPIRED] = {"paging:expired", "Paging Request expired because of timeout T3113."},
Alexander Chemeris43def742020-05-16 18:49:59 +03001448 [BTS_CTR_PAGING_NO_ACTIVE_PAGING] = {"paging:no_active_paging", "Paging response without an active paging request (arrived after paging expiration?)."},
Alexander Chemeris001a2df2020-05-22 21:43:57 +03001449 [BTS_CTR_PAGING_MSC_FLUSH] = {"paging:msc_flush", "Paging flushed due to MSC Reset BSSMAP message."},
Harald Welte4f598922017-12-14 13:47:02 +01001450 [BTS_CTR_CHAN_ACT_TOTAL] = {"chan_act:total", "Total number of Channel Activations."},
1451 [BTS_CTR_CHAN_ACT_NACK] = {"chan_act:nack", "Number of Channel Activations that the BTS NACKed"},
Harald Welte62d9cb02017-12-14 14:00:26 +01001452 [BTS_CTR_RSL_UNKNOWN] = {"rsl:unknown", "Number of unknown/unsupported RSL messages received from BTS"},
Harald Welte581398a2017-12-14 14:29:44 +01001453 [BTS_CTR_RSL_IPA_NACK] = {"rsl:ipa_nack", "Number of IPA (RTP/dyn-PDCH) related NACKs received from BTS"},
Harald Welte00d64fd2017-12-14 14:34:16 +01001454 [BTS_CTR_MODE_MODIFY_NACK] = {"chan:mode_modify_nack", "Number of Channel Mode Modify NACKs received from BTS"},
Alexander Chemeris5d638272020-05-11 00:30:11 +03001455
1456 /* lchan/TS BORKEN state counters */
1457 [BTS_CTR_LCHAN_BORKEN_FROM_UNUSED] = {"lchan_borken:from_state:unused", "Transitions from lchan UNUSED state to BORKEN state"},
1458 [BTS_CTR_LCHAN_BORKEN_FROM_WAIT_ACTIV_ACK] = {"lchan_borken:from_state:wait_activ_ack", "Transitions from lchan WAIT_ACTIV_ACK state to BORKEN state"},
1459 [BTS_CTR_LCHAN_BORKEN_FROM_WAIT_RF_RELEASE_ACK] = {"lchan_borken:from_state:wait_rf_release_ack", "Transitions from lchan WAIT_RF_RELEASE_ACK state to BORKEN state"},
1460 [BTS_CTR_LCHAN_BORKEN_FROM_BORKEN] = {"lchan_borken:from_state:borken", "Transitions from lchan BORKEN state to BORKEN state"},
1461 [BTS_CTR_LCHAN_BORKEN_FROM_UNKNOWN] = {"lchan_borken:from_state:unknown", "Transitions from an unknown lchan state to BORKEN state"},
1462 [BTS_CTR_LCHAN_BORKEN_EV_CHAN_ACTIV_ACK] = {"lchan_borken:event:chan_activ_ack", "CHAN_ACTIV_ACK received in the lchan BORKEN state"},
1463 [BTS_CTR_LCHAN_BORKEN_EV_CHAN_ACTIV_NACK] = {"lchan_borken:event:chan_activ_nack", "CHAN_ACTIV_NACK received in the lchan BORKEN state"},
1464 [BTS_CTR_LCHAN_BORKEN_EV_RF_CHAN_REL_ACK] = {"lchan_borken:event:rf_chan_rel_ack", "RF_CHAN_REL_ACK received in the lchan BORKEN state"},
1465 [BTS_CTR_LCHAN_BORKEN_EV_VTY] = {"lchan_borken:event:vty", "VTY commands received in the lchan BORKEN state"},
1466 [BTS_CTR_LCHAN_BORKEN_EV_TEARDOWN] = {"lchan_borken:event:teardown", "lchan in a BORKEN state is shutting down (BTS disconnected?)"},
1467 [BTS_CTR_TS_BORKEN_FROM_NOT_INITIALIZED] = {"ts_borken:from_state:not_initialized", "Transitions from TS NOT_INITIALIZED state to BORKEN state"},
1468 [BTS_CTR_TS_BORKEN_FROM_UNUSED] = {"ts_borken:from_state:unused", "Transitions from TS UNUSED state to BORKEN state"},
1469 [BTS_CTR_TS_BORKEN_FROM_WAIT_PDCH_ACT] = {"ts_borken:from_state:wait_pdch_act", "Transitions from TS WAIT_PDCH_ACT state to BORKEN state"},
1470 [BTS_CTR_TS_BORKEN_FROM_PDCH] = {"ts_borken:from_state:pdch", "Transitions from TS PDCH state to BORKEN state"},
1471 [BTS_CTR_TS_BORKEN_FROM_WAIT_PDCH_DEACT] = {"ts_borken:from_state:wait_pdch_deact", "Transitions from TS WAIT_PDCH_DEACT state to BORKEN state"},
1472 [BTS_CTR_TS_BORKEN_FROM_IN_USE] = {"ts_borken:from_state:in_use", "Transitions from TS IN_USE state to BORKEN state"},
1473 [BTS_CTR_TS_BORKEN_FROM_BORKEN] = {"ts_borken:from_state:borken", "Transitions from TS BORKEN state to BORKEN state"},
1474 [BTS_CTR_TS_BORKEN_FROM_UNKNOWN] = {"ts_borken:from_state:unknown", "Transitions from an unknown TS state to BORKEN state"},
1475 [BTS_CTR_TS_BORKEN_EV_PDCH_ACT_ACK_NACK] = {"ts_borken:event:pdch_act_ack_nack", "PDCH_ACT_ACK/NACK received in the TS BORKEN state"},
1476 [BTS_CTR_TS_BORKEN_EV_PDCH_DEACT_ACK_NACK] = {"ts_borken:event:pdch_deact_ack_nack", "PDCH_DEACT_ACK/NACK received in the TS BORKEN state"},
1477 [BTS_CTR_TS_BORKEN_EV_TEARDOWN] = {"ts_borken:event:teardown", "TS in a BORKEN state is shutting down (BTS disconnected?)"},
Harald Welted82101e2017-12-09 23:07:38 +01001478};
1479
1480static const struct rate_ctr_group_desc bts_ctrg_desc = {
1481 "bts",
1482 "base transceiver station",
1483 OSMO_STATS_CLASS_GLOBAL,
1484 ARRAY_SIZE(bts_ctr_description),
1485 bts_ctr_description,
1486};
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +01001487
Alexander Couzens20423ea2016-07-12 15:42:02 +02001488enum {
Stefan Sperling81dc9e72018-02-05 17:34:36 +01001489 BTS_STAT_CHAN_LOAD_AVERAGE,
Alexander Chemerisb091def2020-05-06 23:17:49 +03001490 BTS_STAT_CHAN_CCCH_SDCCH4_USED,
1491 BTS_STAT_CHAN_CCCH_SDCCH4_TOTAL,
1492 BTS_STAT_CHAN_TCH_F_USED,
1493 BTS_STAT_CHAN_TCH_F_TOTAL,
1494 BTS_STAT_CHAN_TCH_H_USED,
1495 BTS_STAT_CHAN_TCH_H_TOTAL,
1496 BTS_STAT_CHAN_SDCCH8_USED,
1497 BTS_STAT_CHAN_SDCCH8_TOTAL,
1498 BTS_STAT_CHAN_TCH_F_PDCH_USED,
1499 BTS_STAT_CHAN_TCH_F_PDCH_TOTAL,
1500 BTS_STAT_CHAN_CCCH_SDCCH4_CBCH_USED,
1501 BTS_STAT_CHAN_CCCH_SDCCH4_CBCH_TOTAL,
1502 BTS_STAT_CHAN_SDCCH8_CBCH_USED,
1503 BTS_STAT_CHAN_SDCCH8_CBCH_TOTAL,
1504 BTS_STAT_CHAN_TCH_F_TCH_H_PDCH_USED,
1505 BTS_STAT_CHAN_TCH_F_TCH_H_PDCH_TOTAL,
Stefan Sperling81dc9e72018-02-05 17:34:36 +01001506 BTS_STAT_T3122,
Harald Weltebe86caa2019-05-24 09:30:28 +02001507 BTS_STAT_RACH_BUSY,
1508 BTS_STAT_RACH_ACCESS,
Alexander Chemeris8b0f6872020-05-07 16:46:47 +03001509 BTS_STAT_OML_CONNECTED,
1510 BTS_STAT_RSL_CONNECTED,
Alexander Chemeris5d638272020-05-11 00:30:11 +03001511 BTS_STAT_LCHAN_BORKEN,
1512 BTS_STAT_TS_BORKEN,
Stefan Sperling81dc9e72018-02-05 17:34:36 +01001513};
1514
1515enum {
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001516 BSC_CTR_ASSIGNMENT_ATTEMPTED,
1517 BSC_CTR_ASSIGNMENT_COMPLETED,
1518 BSC_CTR_ASSIGNMENT_STOPPED,
1519 BSC_CTR_ASSIGNMENT_NO_CHANNEL,
1520 BSC_CTR_ASSIGNMENT_TIMEOUT,
1521 BSC_CTR_ASSIGNMENT_FAILED,
1522 BSC_CTR_ASSIGNMENT_ERROR,
Alexander Couzensb847a212016-08-02 11:34:11 +02001523 BSC_CTR_HANDOVER_ATTEMPTED,
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001524 BSC_CTR_HANDOVER_COMPLETED,
1525 BSC_CTR_HANDOVER_STOPPED,
Alexander Couzensb847a212016-08-02 11:34:11 +02001526 BSC_CTR_HANDOVER_NO_CHANNEL,
1527 BSC_CTR_HANDOVER_TIMEOUT,
Alexander Couzensb847a212016-08-02 11:34:11 +02001528 BSC_CTR_HANDOVER_FAILED,
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001529 BSC_CTR_HANDOVER_ERROR,
1530 BSC_CTR_INTER_BSC_HO_OUT_ATTEMPTED,
1531 BSC_CTR_INTER_BSC_HO_OUT_COMPLETED,
1532 BSC_CTR_INTER_BSC_HO_OUT_STOPPED,
1533 BSC_CTR_INTER_BSC_HO_OUT_TIMEOUT,
1534 BSC_CTR_INTER_BSC_HO_OUT_ERROR,
1535 BSC_CTR_INTER_BSC_HO_IN_ATTEMPTED,
1536 BSC_CTR_INTER_BSC_HO_IN_COMPLETED,
1537 BSC_CTR_INTER_BSC_HO_IN_STOPPED,
1538 BSC_CTR_INTER_BSC_HO_IN_NO_CHANNEL,
1539 BSC_CTR_INTER_BSC_HO_IN_FAILED,
1540 BSC_CTR_INTER_BSC_HO_IN_TIMEOUT,
1541 BSC_CTR_INTER_BSC_HO_IN_ERROR,
Alexander Couzensb847a212016-08-02 11:34:11 +02001542 BSC_CTR_PAGING_ATTEMPTED,
1543 BSC_CTR_PAGING_DETACHED,
Harald Weltecf9d4312017-12-13 23:17:16 +01001544 BSC_CTR_PAGING_RESPONDED,
Alexander Chemeris43def742020-05-16 18:49:59 +03001545 BSC_CTR_PAGING_NO_ACTIVE_PAGING,
Stefan Sperling7926d982018-05-17 14:52:02 +02001546 BSC_CTR_UNKNOWN_UNIT_ID,
Alexander Couzensb847a212016-08-02 11:34:11 +02001547};
1548
1549static const struct rate_ctr_desc bsc_ctr_description[] = {
Neels Hofmeyrdbb38d52018-07-11 19:53:56 +02001550 [BSC_CTR_ASSIGNMENT_ATTEMPTED] = {"assignment:attempted", "Assignment attempts."},
1551 [BSC_CTR_ASSIGNMENT_COMPLETED] = {"assignment:completed", "Assignment completed."},
1552 [BSC_CTR_ASSIGNMENT_STOPPED] = {"assignment:stopped", "Connection ended during Assignment."},
1553 [BSC_CTR_ASSIGNMENT_NO_CHANNEL] = {"assignment:no_channel", "Failure to allocate lchan for Assignment."},
1554 [BSC_CTR_ASSIGNMENT_TIMEOUT] = {"assignment:timeout", "Assignment timed out."},
1555 [BSC_CTR_ASSIGNMENT_FAILED] = {"assignment:failed", "Received Assignment Failure message."},
Martin Haukea29affd2019-11-13 22:10:41 +01001556 [BSC_CTR_ASSIGNMENT_ERROR] = {"assignment:error", "Assignment failed for other reason."},
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001557
1558 [BSC_CTR_HANDOVER_ATTEMPTED] = {"handover:attempted", "Intra-BSC handover attempts."},
1559 [BSC_CTR_HANDOVER_COMPLETED] = {"handover:completed", "Intra-BSC handover completed."},
1560 [BSC_CTR_HANDOVER_STOPPED] = {"handover:stopped", "Connection ended during HO."},
1561 [BSC_CTR_HANDOVER_NO_CHANNEL] = {"handover:no_channel", "Failure to allocate lchan for HO."},
1562 [BSC_CTR_HANDOVER_TIMEOUT] = {"handover:timeout", "Handover timed out."},
1563 [BSC_CTR_HANDOVER_FAILED] = {"handover:failed", "Received Handover Fail messages."},
Martin Haukea29affd2019-11-13 22:10:41 +01001564 [BSC_CTR_HANDOVER_ERROR] = {"handover:error", "Re-assignment failed for other reason."},
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001565
1566 [BSC_CTR_INTER_BSC_HO_OUT_ATTEMPTED] = {"interbsc_ho_out:attempted",
1567 "Attempts to handover to remote BSS."},
1568 [BSC_CTR_INTER_BSC_HO_OUT_COMPLETED] = {"interbsc_ho_out:completed",
1569 "Handover to remote BSS completed."},
1570 [BSC_CTR_INTER_BSC_HO_OUT_STOPPED] = {"interbsc_ho_out:stopped", "Connection ended during HO."},
1571 [BSC_CTR_INTER_BSC_HO_OUT_TIMEOUT] = {"interbsc_ho_out:timeout", "Handover timed out."},
1572 [BSC_CTR_INTER_BSC_HO_OUT_ERROR] = {"interbsc_ho_out:error",
1573 "Handover to remote BSS failed for other reason."},
1574
1575 [BSC_CTR_INTER_BSC_HO_IN_ATTEMPTED] = {"interbsc_ho_in:attempted",
1576 "Attempts to handover from remote BSS."},
1577 [BSC_CTR_INTER_BSC_HO_IN_COMPLETED] = {"interbsc_ho_in:completed",
1578 "Handover from remote BSS completed."},
1579 [BSC_CTR_INTER_BSC_HO_IN_STOPPED] = {"interbsc_ho_in:stopped", "Connection ended during HO."},
1580 [BSC_CTR_INTER_BSC_HO_IN_NO_CHANNEL] = {"interbsc_ho_in:no_channel",
1581 "Failure to allocate lchan for HO."},
1582 [BSC_CTR_INTER_BSC_HO_IN_TIMEOUT] = {"interbsc_ho_in:timeout", "Handover from remote BSS timed out."},
1583 [BSC_CTR_INTER_BSC_HO_IN_FAILED] = {"interbsc_ho_in:failed", "Received Handover Fail message."},
1584 [BSC_CTR_INTER_BSC_HO_IN_ERROR] = {"interbsc_ho_in:error",
1585 "Handover from remote BSS failed for other reason."},
Harald Weltecf9d4312017-12-13 23:17:16 +01001586
1587 [BSC_CTR_PAGING_ATTEMPTED] = {"paging:attempted", "Paging attempts for a subscriber."},
Stefan Sperling71d524c2018-05-17 14:38:27 +02001588 [BSC_CTR_PAGING_DETACHED] = {"paging:detached", "Paging request send failures because no responsible BTS was found."},
Harald Weltecf9d4312017-12-13 23:17:16 +01001589 [BSC_CTR_PAGING_RESPONDED] = {"paging:responded", "Paging attempts with successful response."},
Alexander Chemeris43def742020-05-16 18:49:59 +03001590 [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 +02001591
1592 [BSC_CTR_UNKNOWN_UNIT_ID] = {"abis:unknown_unit_id", "Connection attempts from unknown IPA CCM Unit ID."},
Alexander Couzensb847a212016-08-02 11:34:11 +02001593};
1594
Alexander Couzensb847a212016-08-02 11:34:11 +02001595
1596
1597static const struct rate_ctr_group_desc bsc_ctrg_desc = {
1598 "bsc",
1599 "base station controller",
1600 OSMO_STATS_CLASS_GLOBAL,
1601 ARRAY_SIZE(bsc_ctr_description),
1602 bsc_ctr_description,
Alexander Couzens20423ea2016-07-12 15:42:02 +02001603};
1604
Alexander Chemerisdb542832020-05-08 01:49:12 +03001605/* Constants for the BSC stats */
1606enum {
1607 BSC_STAT_NUM_BTS_TOTAL,
1608};
1609
Neels Hofmeyr73983952016-05-10 13:29:33 +02001610struct gsm_tz {
1611 int override; /* if 0, use system's time zone instead. */
1612 int hr; /* hour */
1613 int mn; /* minute */
1614 int dst; /* daylight savings */
1615};
1616
Harald Welte52b1f982008-12-23 20:25:15 +00001617struct gsm_network {
Neels Hofmeyrce4d88b2017-05-08 15:12:20 +02001618 /* TODO MSCSPLIT the gsm_network struct is basically a kitchen sink for
1619 * global settings and variables, "madly" mixing BSC and MSC stuff. Split
1620 * this in e.g. struct osmo_bsc and struct osmo_msc, with the things
1621 * these have in common, like country and network code, put in yet
1622 * separate structs and placed as members in osmo_bsc and osmo_msc. */
1623
Neels Hofmeyrf93970b2018-03-05 02:09:40 +01001624 struct osmo_plmn_id plmn;
1625
Harald Welte51e4bf32017-12-23 17:30:18 +01001626 /* bit-mask of permitted encryption algorithms. LSB=A5/0, MSB=A5/7 */
1627 uint8_t a5_encryption_mask;
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001628 int neci;
Neels Hofmeyr909e9722017-12-07 03:54:01 +01001629
Neels Hofmeyre25018b2017-11-27 21:29:33 +01001630 struct handover_cfg *ho;
Neels Hofmeyr909e9722017-12-07 03:54:01 +01001631 struct {
1632 unsigned int congestion_check_interval_s;
1633 struct osmo_timer_list congestion_check_timer;
1634 } hodec2;
Harald Welte52b1f982008-12-23 20:25:15 +00001635
Alexander Chemerisdb542832020-05-08 01:49:12 +03001636 /* structures for keeping rate counters and gauge stats */
Alexander Couzensb847a212016-08-02 11:34:11 +02001637 struct rate_ctr_group *bsc_ctrs;
Alexander Chemerisdb542832020-05-08 01:49:12 +03001638 struct osmo_stat_item_group *bsc_statg;
Harald Welte24ff6ee2009-12-22 00:41:05 +01001639
Harald Welte52b1f982008-12-23 20:25:15 +00001640 unsigned int num_bts;
Harald Weltee441d9c2009-06-21 16:17:15 +02001641 struct llist_head bts_list;
Oliver Smith8d8d7102018-10-23 15:35:43 +02001642 struct llist_head bts_rejected;
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001643
Neels Hofmeyr08822a32019-07-11 03:43:34 +02001644 /* see gsm_network_T_defs */
Neels Hofmeyra6078fe2019-01-28 03:52:14 +01001645 struct osmo_tdef *T_defs;
Harald Welteeab84a12009-12-13 10:53:12 +01001646
Alexander Couzens547c2072017-11-21 12:03:04 +01001647 enum gsm_chan_t ctype_by_chreq[_NUM_CHREQ_T];
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +08001648
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001649 /* Use a TCH for handling requests of type paging any */
1650 int pag_any_tch;
1651
Neels Hofmeyr06a14d22020-05-26 12:41:18 +02001652 /* msc configuration */
1653 struct llist_head mscs;
1654
1655 /* rf ctl related bits */
1656 int mid_call_timeout;
1657 char *rf_ctrl_name;
1658 struct osmo_bsc_rf *rf_ctrl;
1659 int auto_off_timeout;
1660
1661 struct bsc_cbc_link *cbc;
Holger Hans Peter Freytherdaee5ca2010-12-22 12:34:39 +01001662
Daniel Willmann6fc4a982011-07-22 17:55:42 +02001663 /* control interface */
1664 struct ctrl_handle *ctrl;
Neels Hofmeyr5f0c71b2016-07-23 20:15:28 +02001665
1666 /* Allow or disallow TCH/F on dynamic TCH/F_TCH/H_PDCH; OS#1778 */
1667 bool dyn_ts_allow_tch_f;
Neels Hofmeyrd90fa422016-05-09 21:03:12 +02001668
1669 /* all active subscriber connections. */
1670 struct llist_head subscr_conns;
Neels Hofmeyr73983952016-05-10 13:29:33 +02001671
1672 /* if override is nonzero, this timezone data is used for all MM
1673 * contexts. */
1674 /* TODO: in OsmoNITB, tz-override used to be BTS-specific. To enable
1675 * BTS|RNC specific timezone overrides for multi-tz networks in
Neels Hofmeyrfe291de2017-02-23 21:06:12 +01001676 * OsmoMSC, this should be tied to the location area code (LAC). */
Neels Hofmeyr73983952016-05-10 13:29:33 +02001677 struct gsm_tz tz;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001678
1679 /* List of all struct bsc_subscr used in libbsc. This llist_head is
1680 * allocated so that the llist_head pointer itself can serve as a
1681 * talloc context (useful to not have to pass the entire gsm_network
1682 * struct to the bsc_subscr_* API, and for bsc_susbscr unit tests to
1683 * not require gsm_data.h). In an MSC-without-BSC environment, this
1684 * pointer is NULL to indicate absence of a bsc_subscribers list. */
1685 struct llist_head *bsc_subscribers;
Harald Weltea43e0b42016-06-19 18:06:02 +02001686
Stefan Sperling6cee8932018-01-30 18:14:22 +01001687 /* Timer for periodic channel load measurements to maintain each BTS's T3122. */
1688 struct osmo_timer_list t3122_chan_load_timer;
1689
Neels Hofmeyrc29505e2016-05-20 21:59:55 +02001690 struct {
Philipp Maier39c609b2017-09-27 15:51:34 +02001691 struct mgcp_client_conf *conf;
1692 struct mgcp_client *client;
Neels Hofmeyrf14aaa42019-04-23 18:37:37 +02001693 struct osmo_tdef *tdefs;
Philipp Maier39c609b2017-09-27 15:51:34 +02001694 } mgw;
Neels Hofmeyr19bed232018-03-22 04:54:57 +01001695
1696 /* Remote BSS Cell Identifier Lists */
1697 struct neighbor_ident_list *neighbor_bss_cells;
Oliver Smitha595db12020-03-17 12:21:00 +01001698
1699 /* Don't refuse to start with mutually exclusive codec settings */
1700 bool allow_unusable_timeslots;
Harald Welte7e310b12009-03-30 20:56:32 +00001701};
1702
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001703struct gsm_audio_support {
1704 uint8_t hr : 1,
1705 ver : 7;
1706};
1707
Neels Hofmeyrf93970b2018-03-05 02:09:40 +01001708static inline const struct osmo_location_area_id *bts_lai(struct gsm_bts *bts)
1709{
1710 static struct osmo_location_area_id lai;
1711 lai = (struct osmo_location_area_id){
1712 .plmn = bts->network->plmn,
1713 .lac = bts->location_area_code,
1714 };
1715 return &lai;
1716}
1717
Neels Hofmeyrc13e6872016-05-11 13:53:47 +02001718extern void talloc_ctx_init(void *ctx_root);
1719
Harald Welte39315c42010-01-10 18:01:52 +01001720int gsm_set_bts_type(struct gsm_bts *bts, enum gsm_bts_type type);
Harald Weltee441d9c2009-06-21 16:17:15 +02001721
Harald Welte1d014a52009-08-08 15:38:29 +02001722enum gsm_bts_type parse_btstype(const char *arg);
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +02001723const char *btstype2str(enum gsm_bts_type type);
Harald Weltebe991492009-05-23 13:56:40 +00001724struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
1725 struct gsm_bts *start_bts);
Harald Welte32201c12009-03-10 12:15:10 +00001726
Andreas Eversberg8226fa72009-06-29 15:19:38 +02001727extern void *tall_bsc_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +02001728
Martin Haukea29affd2019-11-13 22:10:41 +01001729/* this actually refers to the IPA transport, not the BTS model */
Harald Welte32201c12009-03-10 12:15:10 +00001730static inline int is_ipaccess_bts(struct gsm_bts *bts)
1731{
1732 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +01001733 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +01001734 case GSM_BTS_TYPE_OSMOBTS:
Harald Welte32201c12009-03-10 12:15:10 +00001735 return 1;
1736 default:
1737 break;
1738 }
1739 return 0;
1740}
1741
Holger Hans Peter Freyther6f6cbf72015-04-04 19:35:22 +02001742static inline int is_sysmobts_v2(struct gsm_bts *bts)
1743{
1744 switch (bts->type) {
Maxf9685c12017-03-23 12:01:07 +01001745 case GSM_BTS_TYPE_OSMOBTS:
Holger Hans Peter Freyther6f6cbf72015-04-04 19:35:22 +02001746 return 1;
1747 default:
1748 break;
1749 }
1750 return 0;
1751}
1752
Harald Welte5b570672009-08-10 10:08:01 +02001753static inline int is_siemens_bts(struct gsm_bts *bts)
1754{
1755 switch (bts->type) {
1756 case GSM_BTS_TYPE_BS11:
1757 return 1;
1758 default:
1759 break;
1760 }
1761
1762 return 0;
1763}
1764
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001765static inline int is_nokia_bts(struct gsm_bts *bts)
1766{
1767 switch (bts->type) {
1768 case GSM_BTS_TYPE_NOKIA_SITE:
1769 return 1;
1770 default:
1771 break;
1772 }
1773
1774 return 0;
1775}
1776
Sylvain Munaut57a1ec52020-05-08 09:58:26 +02001777static inline int is_ericsson_bts(struct gsm_bts *bts)
1778{
1779 switch (bts->type) {
1780 case GSM_BTS_TYPE_RBS2000:
1781 return 1;
1782 default:
1783 break;
1784 }
1785
1786 return 0;
1787}
1788
Andreas Eversbergdcf38e12013-12-05 14:37:11 +01001789static inline int is_e1_bts(struct gsm_bts *bts)
1790{
1791 switch (bts->type) {
1792 case GSM_BTS_TYPE_BS11:
1793 case GSM_BTS_TYPE_RBS2000:
1794 case GSM_BTS_TYPE_NOKIA_SITE:
1795 return 1;
1796 default:
1797 break;
1798 }
1799
1800 return 0;
1801}
1802
Harald Welte1876c312018-05-27 11:53:43 +02001803extern struct gsm_network *bsc_gsmnet;
1804
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01001805enum bts_gprs_mode bts_gprs_mode_parse(const char *arg, int *valid);
Harald Welte4511d892010-04-18 15:51:20 +02001806const char *bts_gprs_mode_name(enum bts_gprs_mode mode);
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01001807int bts_gprs_mode_is_compat(struct gsm_bts *bts, enum bts_gprs_mode mode);
Harald Welte4511d892010-04-18 15:51:20 +02001808
Neels Hofmeyr4d358c02018-02-22 03:19:05 +01001809void gsm48_ra_id_by_bts(struct gsm48_ra_id *buf, struct gsm_bts *bts);
Harald Welte97a282b2010-03-14 15:37:43 +08001810void gprs_ra_id_by_bts(struct gprs_ra_id *raid, struct gsm_bts *bts);
Harald Welted12b0fd2009-12-15 21:36:05 +01001811
Harald Weltefbda4e12010-03-04 11:04:52 +01001812int gsm_bts_model_register(struct gsm_bts_model *model);
1813
Harald Welte3561bd42018-01-28 03:04:16 +01001814struct gsm_subscriber_connection *bsc_subscr_con_allocate(struct gsm_network *network);
Neels Hofmeyr42eb0142016-05-20 17:15:44 +02001815
Neels Hofmeyr958f2592018-05-27 01:26:31 +02001816struct gsm_bts *gsm_bts_alloc_register(struct gsm_network *net, enum gsm_bts_type type, uint8_t bsic);
1817struct 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 +01001818
Harald Welte3300c012011-06-05 13:31:33 +02001819void set_ts_e1link(struct gsm_bts_trx_ts *ts, uint8_t e1_nr,
1820 uint8_t e1_ts, uint8_t e1_ts_ss);
1821
Maxbe356ed2017-09-07 19:10:09 +02001822void gsm_trx_lock_rf(struct gsm_bts_trx *trx, bool locked, const char *reason);
Harald Welte3300c012011-06-05 13:31:33 +02001823struct gsm_bts_trx *gsm_bts_trx_by_nr(struct gsm_bts *bts, int nr);
Holger Hans Peter Freythera49b2c02014-11-21 11:18:45 +01001824int gsm_bts_trx_set_system_infos(struct gsm_bts_trx *trx);
Alexander Chemerisc36a13b2015-05-30 14:40:54 -04001825int gsm_bts_set_system_infos(struct gsm_bts *bts);
Harald Welte3300c012011-06-05 13:31:33 +02001826
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001827/* generic E1 line operations for all ISDN-based BTS. */
1828extern struct e1inp_line_ops bts_isdn_e1inp_line_ops;
1829
Harald Weltee555c2b2012-08-17 13:02:12 +02001830extern const struct value_string bts_type_names[_NUM_GSM_BTS_TYPE+1];
1831extern const struct value_string bts_type_descs[_NUM_GSM_BTS_TYPE+1];
1832
Max3d049d22017-10-09 17:12:53 +02001833char *get_model_oml_status(const struct gsm_bts *bts);
1834
Max25cc4072017-10-10 14:50:35 +02001835unsigned long long bts_uptime(const struct gsm_bts *bts);
1836
Holger Hans Peter Freytherf8c42192013-01-09 17:03:27 +01001837/* control interface handling */
1838int bsc_base_ctrl_cmds_install(void);
1839
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01001840/* dependency handling */
1841void bts_depend_mark(struct gsm_bts *bts, int dep);
1842void bts_depend_clear(struct gsm_bts *bts, int dep);
1843int bts_depend_check(struct gsm_bts *bts);
Holger Hans Peter Freytherf7e23c52014-12-17 15:44:32 +01001844int bts_depend_is_depedency(struct gsm_bts *base, struct gsm_bts *other);
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01001845
Harald Welte2f8b9d22017-06-18 11:12:13 +03001846int gsm_bts_get_radio_link_timeout(const struct gsm_bts *bts);
1847void gsm_bts_set_radio_link_timeout(struct gsm_bts *bts, int value);
1848
Neels Hofmeyr958f2592018-05-27 01:26:31 +02001849bool trx_is_usable(const struct gsm_bts_trx *trx);
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001850bool ts_is_usable(const struct gsm_bts_trx_ts *ts);
Neels Hofmeyr958f2592018-05-27 01:26:31 +02001851
Neels Hofmeyr31f525e2018-05-14 18:14:15 +02001852int gsm_lchan_type_by_pchan(enum gsm_phys_chan_config pchan);
1853enum gsm_phys_chan_config gsm_pchan_by_lchan_type(enum gsm_chan_t type);
1854
1855void gsm_bts_all_ts_dispatch(struct gsm_bts *bts, uint32_t ts_ev, void *data);
1856void gsm_trx_all_ts_dispatch(struct gsm_bts_trx *trx, uint32_t ts_ev, void *data);
1857
1858int bts_count_free_ts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan);
Neels Hofmeyr958f2592018-05-27 01:26:31 +02001859
Vadim Yanitskiy73bd4632019-11-02 00:57:23 +07001860bool trx_has_valid_pchan_config(const struct gsm_bts_trx *trx);
1861
Harald Welte6be350c2011-05-25 13:10:08 +02001862#endif /* _GSM_DATA_H */