blob: 02823c9698cf009da2913a9f8b0f9766904ce9e0 [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 <regex.h>
6#include <sys/types.h>
Maxe6052c42016-06-30 10:25:49 +02007#include <stdbool.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>
13
Harald Welte121e9a42016-04-20 13:13:19 +020014#include <osmocom/crypt/auth.h>
Harald Weltef142c972011-05-24 13:25:38 +020015
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020016#include <openbsc/common.h>
Harald Welteb96be392011-05-25 12:33:33 +020017#include <openbsc/rest_octets.h>
Neels Hofmeyr402006d2016-05-11 14:28:25 +020018#include <openbsc/common_cs.h>
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020019#include <openbsc/mgcpgw_client.h>
Harald Welteb96be392011-05-25 12:33:33 +020020
Holger Hans Peter Freytherd7b22c62013-04-29 09:11:02 +020021/** annotations for msgb ownership */
22#define __uses
23
Holger Hans Peter Freyther6f615552010-11-15 20:50:42 +010024#define OBSC_NM_W_ACK_CB(__msgb) (__msgb)->cb[3]
25
Holger Hans Peter Freyther694c82d2011-10-26 18:37:09 +020026struct mncc_sock_state;
Jacob Erlbeck1e30a282014-12-03 09:28:24 +010027struct gsm_subscriber_group;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +010028struct bsc_subscr;
Harald Welte2483f1b2016-06-19 18:06:02 +020029struct vlr_instance;
30struct vlr_subscr;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020031struct ue_conn_ctx;
Holger Hans Peter Freyther694c82d2011-10-26 18:37:09 +020032
Holger Hans Peter Freyther9c595b72010-06-15 11:20:52 +080033#define OBSC_LINKID_CB(__msgb) (__msgb)->cb[3]
34
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +010035#define tmsi_from_string(str) strtoul(str, NULL, 10)
36
Max70fdd242017-06-15 15:10:53 +020037/* 3-bit long values */
38#define EARFCN_PRIO_INVALID 8
39#define EARFCN_MEAS_BW_INVALID 8
40/* 5-bit long values */
41#define EARFCN_QRXLV_INVALID 32
42#define EARFCN_THRESH_LOW_INVALID 32
43
Sylvain Munaut30a15382009-12-24 00:27:26 +010044enum gsm_security_event {
45 GSM_SECURITY_NOAVAIL,
46 GSM_SECURITY_AUTH_FAILED,
47 GSM_SECURITY_SUCCEEDED,
Andreas Eversberg641475c2013-07-10 08:58:03 +020048 GSM_SECURITY_ALREADY,
Sylvain Munaut30a15382009-12-24 00:27:26 +010049};
50
Harald Welte8e1e3ee2009-02-01 13:32:45 +000051struct msgb;
52typedef int gsm_cbfn(unsigned int hooknum,
53 unsigned int event,
54 struct msgb *msg,
55 void *data, void *param);
56
Sylvain Munaut47193072009-12-27 21:56:14 +010057/* Real authentication information containing Ki */
58enum gsm_auth_algo {
59 AUTH_ALGO_NONE,
60 AUTH_ALGO_XOR,
61 AUTH_ALGO_COMP128v1,
62};
63
64struct gsm_auth_info {
65 enum gsm_auth_algo auth_algo;
66 unsigned int a3a8_ki_len;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020067 uint8_t a3a8_ki[16];
Sylvain Munaut47193072009-12-27 21:56:14 +010068};
69
70struct gsm_auth_tuple {
71 int use_count;
72 int key_seq;
Harald Welte121e9a42016-04-20 13:13:19 +020073 struct osmo_auth_vector vec;
Sylvain Munaut47193072009-12-27 21:56:14 +010074};
Sylvain Munautb48216f2010-06-09 12:45:37 +020075#define GSM_KEY_SEQ_INVAL 7 /* GSM 04.08 - 10.5.1.2 */
Sylvain Munaut47193072009-12-27 21:56:14 +010076
Holger Freyther73487a22008-12-31 18:53:57 +000077/*
Sylvain Munaut30a15382009-12-24 00:27:26 +010078 * AUTHENTICATION/CIPHERING state
79 */
80struct gsm_security_operation {
81 struct gsm_auth_tuple atuple;
82 gsm_cbfn *cb;
83 void *cb_data;
84};
85
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +080086/*
87 * A dummy to keep a connection up for at least
88 * a couple of seconds to work around MSC issues.
89 */
90struct gsm_anchor_operation {
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +020091 struct osmo_timer_list timeout;
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +080092};
93
Harald Weltef7c28b02009-12-21 13:30:17 +010094/* Maximum number of neighbor cells whose average we track */
95#define MAX_NEIGH_MEAS 10
96/* Maximum size of the averaging window for neighbor cells */
97#define MAX_WIN_NEIGH_AVG 10
98
99/* processed neighbor measurements for one cell */
100struct neigh_meas_proc {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200101 uint16_t arfcn;
102 uint8_t bsic;
103 uint8_t rxlev[MAX_WIN_NEIGH_AVG];
Harald Weltef7c28b02009-12-21 13:30:17 +0100104 unsigned int rxlev_cnt;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200105 uint8_t last_seen_nr;
Harald Weltef7c28b02009-12-21 13:30:17 +0100106};
107
Neels Hofmeyrd3270a92017-02-02 01:07:28 +0100108enum ran_type {
109 RAN_UNKNOWN,
110 RAN_GERAN_A, /* 2G / A-interface */
111 RAN_UTRAN_IU, /* 3G / Iu-interface (IuCS or IuPS) */
112};
113
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200114extern const struct value_string ran_type_names[];
115static inline const char *ran_type_name(enum ran_type val)
116{ return get_value_string(ran_type_names, val); }
117
Harald Welte2483f1b2016-06-19 18:06:02 +0200118struct gsm_classmark {
119 bool classmark1_set;
120 struct gsm48_classmark1 classmark1;
121 uint8_t classmark2_len;
122 uint8_t classmark2[3];
123 uint8_t classmark3_len;
124 uint8_t classmark3[14]; /* if cm3 gets extended by spec, it will be truncated */
125};
126
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200127enum integrity_protection_state {
128 INTEGRITY_PROTECTION_NONE = 0,
129 INTEGRITY_PROTECTION_IK = 1,
130 INTEGRITY_PROTECTION_IK_CK = 2,
131};
132
Neels Hofmeyr378a4922016-05-09 21:07:43 +0200133/* active radio connection of a mobile subscriber */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100134struct gsm_subscriber_connection {
Harald Welte2483f1b2016-06-19 18:06:02 +0200135 /* global linked list of subscriber_connections */
Holger Hans Peter Freyther79f763f2010-09-16 00:53:37 +0800136 struct llist_head entry;
137
Harald Welte2483f1b2016-06-19 18:06:02 +0200138 /* usage count. If this drops to zero, we start the release
139 * towards A/Iu */
140 uint32_t use_count;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100141
Harald Welte2483f1b2016-06-19 18:06:02 +0200142 /* The MS has opened the conn with a CM Service Request, and we shall
143 * keep it open for an actual request (or until timeout). */
144 bool received_cm_service_request;
145
146 /* libbsc subscriber information (if available) */
Neels Hofmeyr6d804b12017-02-18 22:20:46 +0100147 struct bsc_subscr *bsub;
148
Harald Welte2483f1b2016-06-19 18:06:02 +0200149 /* libmsc/libvlr subscriber information (if available) */
150 struct vlr_subscr *vsub;
151
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +0200152 /* LU expiration handling */
153 uint8_t expire_timer_stopped;
Holger Hans Peter Freytherca114432014-02-08 15:20:48 +0100154 /* SMS helpers for libmsc */
155 uint8_t next_rp_ref;
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +0200156
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100157 /*
158 * Operations that have a state and might be pending
159 */
Sylvain Munaut30a15382009-12-24 00:27:26 +0100160 struct gsm_security_operation *sec_operation;
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800161 struct gsm_anchor_operation *anch_operation;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100162
Harald Welte2483f1b2016-06-19 18:06:02 +0200163 struct osmo_fsm_inst *conn_fsm;
164
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100165 /* Are we part of a special "silent" call */
166 int silent_call;
167
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +0200168 /* MNCC rtp bridge markers */
169 int mncc_rtp_bridge;
170 int mncc_rtp_create_pending;
Holger Hans Peter Freytherc21dcb22015-08-04 14:41:21 +0200171 int mncc_rtp_connect_pending;
Holger Hans Peter Freytherc8a6c132015-08-04 13:32:09 +0200172
Holger Hans Peter Freyther2f9d1ef2010-09-16 20:14:01 +0800173 /* bsc structures */
Neels Hofmeyrce090f82016-05-30 15:00:23 +0200174 struct osmo_bsc_sccp_con *sccp_con; /* BSC */
Holger Hans Peter Freyther2f9d1ef2010-09-16 20:14:01 +0800175
Holger Hans Peter Freyther18b63f42010-03-23 07:52:17 +0100176 /* back pointers */
Neels Hofmeyr5e0b0a62016-05-09 22:33:01 +0200177 struct gsm_network *network;
178
Harald Welte2483f1b2016-06-19 18:06:02 +0200179 bool in_release;
Neels Hofmeyrce090f82016-05-30 15:00:23 +0200180 struct gsm_lchan *lchan; /* BSC */
181 struct gsm_lchan *ho_lchan; /* BSC */
182 struct gsm_bts *bts; /* BSC */
Holger Hans Peter Freyther77cd95d2010-11-14 16:19:48 +0100183
184 /* for assignment handling */
Neels Hofmeyrce090f82016-05-30 15:00:23 +0200185 struct osmo_timer_list T10; /* BSC */
186 struct gsm_lchan *secondary_lchan; /* BSC */
Holger Hans Peter Freyther77cd95d2010-11-14 16:19:48 +0100187
Neels Hofmeyrd3270a92017-02-02 01:07:28 +0100188 /* connected via 2G or 3G? */
189 enum ran_type via_ran;
Harald Welte2483f1b2016-06-19 18:06:02 +0200190
191 struct gsm_classmark classmark;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200192
193 uint16_t lac;
194 struct gsm_encr encr;
195
196 /* which Iu-CS connection, if any. */
197 struct {
198 struct ue_conn_ctx *ue_ctx;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200199 unsigned int mgcp_rtp_endpoint;
200 uint16_t mgcp_rtp_port_ue;
201 uint16_t mgcp_rtp_port_cn;
202 uint8_t rab_id;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200203 } iu;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100204};
205
Harald Weltef142c972011-05-24 13:25:38 +0200206
Harald Welte6be350c2011-05-25 13:10:08 +0200207#define ROLE_BSC
208#include "gsm_data_shared.h"
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100209
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100210
Alexander Couzens20423ea2016-07-12 15:42:02 +0200211enum {
Alexander Couzensb847a212016-08-02 11:34:11 +0200212 BSC_CTR_CHREQ_TOTAL,
213 BSC_CTR_CHREQ_NO_CHANNEL,
214 BSC_CTR_HANDOVER_ATTEMPTED,
215 BSC_CTR_HANDOVER_NO_CHANNEL,
216 BSC_CTR_HANDOVER_TIMEOUT,
217 BSC_CTR_HANDOVER_COMPLETED,
218 BSC_CTR_HANDOVER_FAILED,
219 BSC_CTR_PAGING_ATTEMPTED,
220 BSC_CTR_PAGING_DETACHED,
221 BSC_CTR_PAGING_COMPLETED,
222 BSC_CTR_PAGING_EXPIRED,
223 BSC_CTR_CHAN_RF_FAIL,
224 BSC_CTR_CHAN_RLL_ERR,
225 BSC_CTR_BTS_OML_FAIL,
226 BSC_CTR_BTS_RSL_FAIL,
Alexander Couzens8c53c592016-08-23 06:27:19 +0200227 BSC_CTR_CODEC_AMR_F,
228 BSC_CTR_CODEC_AMR_H,
229 BSC_CTR_CODEC_EFR,
230 BSC_CTR_CODEC_V1_FR,
231 BSC_CTR_CODEC_V1_HR,
Alexander Couzensb847a212016-08-02 11:34:11 +0200232};
233
234static const struct rate_ctr_desc bsc_ctr_description[] = {
235 [BSC_CTR_CHREQ_TOTAL] = {"chreq.total", "Received channel requests."},
236 [BSC_CTR_CHREQ_NO_CHANNEL] = {"chreq.no_channel", "Sent to MS no channel available."},
237 [BSC_CTR_HANDOVER_ATTEMPTED] = {"handover.attempted", "Received handover attempts."},
238 [BSC_CTR_HANDOVER_NO_CHANNEL] = {"handover.no_channel", "Sent no channel available responses."},
239 [BSC_CTR_HANDOVER_TIMEOUT] = {"handover.timeout", "Count the amount of timeouts of timer T3103."},
240 [BSC_CTR_HANDOVER_COMPLETED] = {"handover.completed", "Received handover completed."},
241 [BSC_CTR_HANDOVER_FAILED] = {"handover.failed", "Receive HO FAIL messages."},
242 [BSC_CTR_PAGING_ATTEMPTED] = {"paging.attempted", "Paging attempts for a MS."},
243 [BSC_CTR_PAGING_DETACHED] = {"paging.detached", "Counts the amount of paging attempts which couldn't sent out any paging request because no responsible bts found."},
244 [BSC_CTR_PAGING_COMPLETED] = {"paging.completed", "Paging successful completed."},
245 [BSC_CTR_PAGING_EXPIRED] = {"paging.expired", "Paging Request expired because of timeout T3113."},
246 [BSC_CTR_CHAN_RF_FAIL] = {"chan.rf_fail", "Received a RF failure indication from BTS."},
247 [BSC_CTR_CHAN_RLL_ERR] = {"chan.rll_err", "Received a RLL failure with T200 cause from BTS."},
248 [BSC_CTR_BTS_OML_FAIL] = {"bts.oml_fail", "Received a TEI down on a OML link."},
249 [BSC_CTR_BTS_RSL_FAIL] = {"bts.rsl_fail", "Received a TEI down on a OML link."},
Alexander Couzens8c53c592016-08-23 06:27:19 +0200250 [BSC_CTR_CODEC_AMR_F] = {"bts.codec_amr_f", "Count the usage of AMR/F codec by channel mode requested."},
251 [BSC_CTR_CODEC_AMR_H] = {"bts.codec_amr_h", "Count the usage of AMR/H codec by channel mode requested."},
252 [BSC_CTR_CODEC_EFR] = {"bts.codec_efr", "Count the usage of EFR codec by channel mode requested."},
253 [BSC_CTR_CODEC_V1_FR] = {"bts.codec_fr", "Count the usage of FR codec by channel mode requested."},
254 [BSC_CTR_CODEC_V1_HR] = {"bts.codec_hr", "Count the usage of HR codec by channel mode requested."},
Alexander Couzensb847a212016-08-02 11:34:11 +0200255};
256
257enum {
Alexander Couzens20423ea2016-07-12 15:42:02 +0200258 MSC_CTR_LOC_UPDATE_TYPE_ATTACH,
259 MSC_CTR_LOC_UPDATE_TYPE_NORMAL,
260 MSC_CTR_LOC_UPDATE_TYPE_PERIODIC,
261 MSC_CTR_LOC_UPDATE_TYPE_DETACH,
Neels Hofmeyr36891a72016-05-09 13:18:03 +0200262 MSC_CTR_LOC_UPDATE_FAILED,
263 MSC_CTR_LOC_UPDATE_COMPLETED,
Alexander Couzens20423ea2016-07-12 15:42:02 +0200264 MSC_CTR_SMS_SUBMITTED,
265 MSC_CTR_SMS_NO_RECEIVER,
266 MSC_CTR_SMS_DELIVERED,
267 MSC_CTR_SMS_RP_ERR_MEM,
268 MSC_CTR_SMS_RP_ERR_OTHER,
Alexander Couzensaa386d22016-08-21 20:16:33 +0200269 MSC_CTR_SMS_DELIVER_UNKNOWN_ERROR,
Alexander Couzens20423ea2016-07-12 15:42:02 +0200270 MSC_CTR_CALL_MO_SETUP,
271 MSC_CTR_CALL_MO_CONNECT_ACK,
272 MSC_CTR_CALL_MT_SETUP,
273 MSC_CTR_CALL_MT_CONNECT,
Alexander Couzens92f552f2016-08-23 07:32:27 +0200274 MSC_CTR_CALL_ACTIVE,
275 MSC_CTR_CALL_COMPLETE,
276 MSC_CTR_CALL_INCOMPLETE,
Alexander Couzens20423ea2016-07-12 15:42:02 +0200277};
278
279static const struct rate_ctr_desc msc_ctr_description[] = {
Alexander Couzens20423ea2016-07-12 15:42:02 +0200280 [MSC_CTR_LOC_UPDATE_TYPE_ATTACH] = {"loc_update_type.attach", "Received location update imsi attach requests."},
281 [MSC_CTR_LOC_UPDATE_TYPE_NORMAL] = {"loc_update_type.normal", "Received location update normal requests."},
282 [MSC_CTR_LOC_UPDATE_TYPE_PERIODIC] = {"loc_update_type.periodic", "Received location update periodic requests."},
283 [MSC_CTR_LOC_UPDATE_TYPE_DETACH] = {"loc_update_type.detach", "Received location update detach indication."},
Neels Hofmeyr36891a72016-05-09 13:18:03 +0200284 [MSC_CTR_LOC_UPDATE_FAILED] = {"loc_update_resp.failed", "Rejected location updates."},
285 [MSC_CTR_LOC_UPDATE_COMPLETED] = {"loc_update_resp.completed", "Successful location updates."},
Alexander Couzens20423ea2016-07-12 15:42:02 +0200286 [MSC_CTR_SMS_SUBMITTED] = {"sms.submitted", "Received a RPDU from a MS (MO)."},
287 [MSC_CTR_SMS_NO_RECEIVER] = {"sms.no_receiver", "Counts SMS which couldn't routed because no receiver found."},
288 [MSC_CTR_SMS_DELIVERED] = {"sms.delivered", "Global SMS Deliver attempts."},
289 [MSC_CTR_SMS_RP_ERR_MEM] = {"sms.rp_err_mem", "CAUSE_MT_MEM_EXCEEDED errors of MS responses on a sms deliver attempt."},
290 [MSC_CTR_SMS_RP_ERR_OTHER] = {"sms.rp_err_other", "Other error of MS responses on a sms delive attempt."},
Alexander Couzensaa386d22016-08-21 20:16:33 +0200291 [MSC_CTR_SMS_DELIVER_UNKNOWN_ERROR] = {"sms.deliver_unknown_error", "Unknown error occured during sms delivery."},
Alexander Couzens20423ea2016-07-12 15:42:02 +0200292 /* FIXME: count also sms delivered */
293 [MSC_CTR_CALL_MO_SETUP] = {"call.mo_setup", "Received setup requests from a MS to init a MO call."},
294 [MSC_CTR_CALL_MO_CONNECT_ACK] = {"call.mo_connect_ack", "Received a connect ack from MS of a MO call. Call is now succesful connected up."},
295 [MSC_CTR_CALL_MT_SETUP] = {"call.mt_setup", "Sent setup requests to the MS (MT)."},
296 [MSC_CTR_CALL_MT_CONNECT] = {"call.mt_connect", "Sent a connect to the MS (MT)."},
Alexander Couzens92f552f2016-08-23 07:32:27 +0200297 [MSC_CTR_CALL_ACTIVE] = {"call.active", "Count total amount of calls that ever reached active state."},
298 [MSC_CTR_CALL_COMPLETE] = {"call.complete", "Count total amount of calls which got terminated by disconnect req or ind after reaching active state."},
299 [MSC_CTR_CALL_INCOMPLETE] = {"call.incomplete", "Count total amount of call which got terminated by any other reason after reaching active state."},
Alexander Couzensb847a212016-08-02 11:34:11 +0200300};
301
302
303static const struct rate_ctr_group_desc bsc_ctrg_desc = {
304 "bsc",
305 "base station controller",
306 OSMO_STATS_CLASS_GLOBAL,
307 ARRAY_SIZE(bsc_ctr_description),
308 bsc_ctr_description,
Alexander Couzens20423ea2016-07-12 15:42:02 +0200309};
310
311static const struct rate_ctr_group_desc msc_ctrg_desc = {
312 "msc",
313 "mobile switching center",
314 OSMO_STATS_CLASS_GLOBAL,
315 ARRAY_SIZE(msc_ctr_description),
316 msc_ctr_description,
Harald Welte24ff6ee2009-12-22 00:41:05 +0100317};
318
Harald Welte (local)69de3972009-08-12 14:42:23 +0200319enum gsm_auth_policy {
320 GSM_AUTH_POLICY_CLOSED, /* only subscribers authorized in DB */
321 GSM_AUTH_POLICY_ACCEPT_ALL, /* accept everyone, even if not authorized in DB */
322 GSM_AUTH_POLICY_TOKEN, /* accept first, send token per sms, then revoke authorization */
Maxddee01f2016-05-24 14:23:27 +0200323 GSM_AUTH_POLICY_REGEXP, /* accept IMSIs matching given regexp */
Harald Welte (local)69de3972009-08-12 14:42:23 +0200324};
325
Harald Welte5d1fa892017-07-20 01:47:39 +0200326#define GSM_T3101_DEFAULT 10 /* s */
327#define GSM_T3103_DEFAULT 5 /* s */
328#define GSM_T3105_DEFAULT 100 /* ms */
329#define GSM_T3107_DEFAULT 5 /* s */
330#define GSM_T3109_DEFAULT 19 /* s, must be 2s + radio_link_timeout*0.48 */
331#define GSM_T3111_DEFAULT 2 /* s */
Harald Welteb84ddfc2009-12-01 17:36:54 +0530332#define GSM_T3113_DEFAULT 60
Harald Welte5d1fa892017-07-20 01:47:39 +0200333#define GSM_T3115_DEFAULT 10
334#define GSM_T3117_DEFAULT 10
335#define GSM_T3119_DEFAULT 10
Andreas Eversberg75e13a42013-02-07 11:51:16 +0100336#define GSM_T3122_DEFAULT 10
Harald Welte5d1fa892017-07-20 01:47:39 +0200337#define GSM_T3141_DEFAULT 10
Harald Welteb84ddfc2009-12-01 17:36:54 +0530338
Neels Hofmeyr73983952016-05-10 13:29:33 +0200339struct gsm_tz {
340 int override; /* if 0, use system's time zone instead. */
341 int hr; /* hour */
342 int mn; /* minute */
343 int dst; /* daylight savings */
344};
345
Harald Welte52b1f982008-12-23 20:25:15 +0000346struct gsm_network {
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200347 /* TODO MSCSPLIT the gsm_network struct is basically a kitchen sink for
348 * global settings and variables, "madly" mixing BSC and MSC stuff. Split
349 * this in e.g. struct osmo_bsc and struct osmo_msc, with the things
350 * these have in common, like country and network code, put in yet
351 * separate structs and placed as members in osmo_bsc and osmo_msc. */
352
Harald Welte52b1f982008-12-23 20:25:15 +0000353 /* global parameters */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200354 uint16_t country_code;
355 uint16_t network_code;
Harald Weltec6ba9c22008-12-30 18:01:02 +0000356 char *name_long;
357 char *name_short;
Harald Welte (local)69de3972009-08-12 14:42:23 +0200358 enum gsm_auth_policy auth_policy;
Maxddee01f2016-05-24 14:23:27 +0200359 regex_t authorized_regexp;
360 char *authorized_reg_str;
Harald Welte1085c092009-11-18 20:33:19 +0100361 enum gsm48_reject_value reject_cause;
Harald Welte4381cfe2009-08-30 15:47:06 +0900362 int a5_encryption;
Harald Welte2483f1b2016-06-19 18:06:02 +0200363 bool authentication_required;
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100364 int neci;
Harald Welte648b6ce2009-12-14 09:00:24 +0100365 int send_mm_info;
Harald Weltebc814502009-12-19 21:41:52 +0100366 struct {
367 int active;
Harald Weltef7c28b02009-12-21 13:30:17 +0100368 /* Window RXLEV averaging */
369 unsigned int win_rxlev_avg; /* number of SACCH frames */
370 /* Window RXQUAL averaging */
371 unsigned int win_rxqual_avg; /* number of SACCH frames */
372 /* Window RXLEV neighbouring cells averaging */
373 unsigned int win_rxlev_avg_neigh; /* number of SACCH frames */
374
375 /* how often should we check for power budget HO */
376 unsigned int pwr_interval; /* SACCH frames */
377 /* how much better does a neighbor cell have to be ? */
378 unsigned int pwr_hysteresis; /* dBm */
379 /* maximum distacne before we try a handover */
380 unsigned int max_distance; /* TA values */
Harald Weltebc814502009-12-19 21:41:52 +0100381 } handover;
Harald Welte52b1f982008-12-23 20:25:15 +0000382
Alexander Couzensb847a212016-08-02 11:34:11 +0200383 struct rate_ctr_group *bsc_ctrs;
384 struct rate_ctr_group *msc_ctrs;
Alexander Couzens92f552f2016-08-23 07:32:27 +0200385 struct osmo_counter *active_calls;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100386
Harald Welte4bfdfe72009-06-10 23:11:52 +0800387 /* layer 4 */
Holger Hans Peter Freyther694c82d2011-10-26 18:37:09 +0200388 struct mncc_sock_state *mncc_state;
Neels Hofmeyr402006d2016-05-11 14:28:25 +0200389 mncc_recv_cb_t mncc_recv;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800390 struct llist_head upqueue;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200391 /*
392 * TODO: Move the trans_list into the subscriber connection and
393 * create a pending list for MT transactions. These exist before
394 * we have a subscriber connection.
395 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800396 struct llist_head trans_list;
Holger Hans Peter Freytherabcddf12010-06-14 18:20:15 +0800397 struct bsc_api *bsc_api;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800398
Harald Welte52b1f982008-12-23 20:25:15 +0000399 unsigned int num_bts;
Harald Weltee441d9c2009-06-21 16:17:15 +0200400 struct llist_head bts_list;
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100401
402 /* timer values */
403 int T3101;
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100404 int T3103;
405 int T3105;
406 int T3107;
407 int T3109;
408 int T3111;
409 int T3113;
410 int T3115;
411 int T3117;
412 int T3119;
Harald Welte2862dca2010-12-23 14:39:29 +0100413 int T3122;
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100414 int T3141;
Harald Welteeab84a12009-12-13 10:53:12 +0100415
Jan Luebbebfbdeec2012-12-27 00:27:16 +0100416 /* timer to expire old location updates */
417 struct osmo_timer_list subscr_expire_timer;
418
Harald Welteeab84a12009-12-13 10:53:12 +0100419 /* Radio Resource Location Protocol (TS 04.31) */
420 struct {
421 enum rrlp_mode mode;
422 } rrlp;
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +0800423
Alexander Couzens11368112016-11-28 23:26:50 +0100424 enum gsm_chan_t ctype_by_chreq[18];
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +0800425
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800426 /* Use a TCH for handling requests of type paging any */
427 int pag_any_tch;
428
Holger Hans Peter Freyther3e8e0462010-09-15 22:29:25 +0800429 /* MSC data in case we are a true BSC */
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200430 struct osmo_bsc_data *bsc_data;
Holger Hans Peter Freytherdaee5ca2010-12-22 12:34:39 +0100431
Holger Hans Peter Freyther11b28f92010-12-24 13:48:27 +0100432 struct gsm_sms_queue *sms_queue;
Daniel Willmann6fc4a982011-07-22 17:55:42 +0200433
434 /* control interface */
435 struct ctrl_handle *ctrl;
Neels Hofmeyr5f0c71b2016-07-23 20:15:28 +0200436
437 /* Allow or disallow TCH/F on dynamic TCH/F_TCH/H_PDCH; OS#1778 */
438 bool dyn_ts_allow_tch_f;
Neels Hofmeyrd90fa422016-05-09 21:03:12 +0200439
440 /* all active subscriber connections. */
441 struct llist_head subscr_conns;
Neels Hofmeyr73983952016-05-10 13:29:33 +0200442
443 /* if override is nonzero, this timezone data is used for all MM
444 * contexts. */
445 /* TODO: in OsmoNITB, tz-override used to be BTS-specific. To enable
446 * BTS|RNC specific timezone overrides for multi-tz networks in
Neels Hofmeyrfe291de2017-02-23 21:06:12 +0100447 * OsmoMSC, this should be tied to the location area code (LAC). */
Neels Hofmeyr73983952016-05-10 13:29:33 +0200448 struct gsm_tz tz;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +0100449
450 /* List of all struct bsc_subscr used in libbsc. This llist_head is
451 * allocated so that the llist_head pointer itself can serve as a
452 * talloc context (useful to not have to pass the entire gsm_network
453 * struct to the bsc_subscr_* API, and for bsc_susbscr unit tests to
454 * not require gsm_data.h). In an MSC-without-BSC environment, this
455 * pointer is NULL to indicate absence of a bsc_subscribers list. */
456 struct llist_head *bsc_subscribers;
Harald Welte2483f1b2016-06-19 18:06:02 +0200457
458 /* MSC: GSUP server address of the HLR */
459 const char *gsup_server_addr_str;
460 uint16_t gsup_server_port;
461
462 struct vlr_instance *vlr;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200463
464 /* Periodic location update default value */
465 uint8_t t3212;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200466
467 struct {
468 struct mgcpgw_client_conf conf;
469 struct mgcpgw_client *client;
470 } mgcpgw;
471
472 struct {
473 enum nsap_addr_enc rab_assign_addr_enc;
474 } iu;
Harald Welte52b1f982008-12-23 20:25:15 +0000475};
476
Harald Welted4bdee72012-11-08 19:44:08 +0100477struct osmo_esme;
478
479enum gsm_sms_source_id {
480 SMS_SOURCE_UNKNOWN = 0,
481 SMS_SOURCE_MS, /* received from MS */
482 SMS_SOURCE_VTY, /* received from VTY */
483 SMS_SOURCE_SMPP, /* received via SMPP */
484};
485
Harald Welte7e310b12009-03-30 20:56:32 +0000486#define SMS_HDR_SIZE 128
487#define SMS_TEXT_SIZE 256
Harald Weltee07b6a72012-11-23 19:02:37 +0100488
489struct gsm_sms_addr {
490 uint8_t ton;
491 uint8_t npi;
492 char addr[21+1];
493};
494
Harald Welte7e310b12009-03-30 20:56:32 +0000495struct gsm_sms {
Harald Welted409be72009-11-07 00:06:19 +0900496 unsigned long long id;
Harald Welte2483f1b2016-06-19 18:06:02 +0200497 struct vlr_subscr *receiver;
Harald Weltec0de14d2012-11-23 23:35:01 +0100498 struct gsm_sms_addr src, dst;
Harald Welted4bdee72012-11-08 19:44:08 +0100499 enum gsm_sms_source_id source;
500
501 struct {
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200502 uint8_t transaction_id;
503 uint32_t msg_ref;
504 } gsm411;
505
506 struct {
Harald Welted4bdee72012-11-08 19:44:08 +0100507 struct osmo_esme *esme;
508 uint32_t sequence_nr;
509 int transaction_mode;
510 char msg_id[16];
511 } smpp;
Harald Welte7e310b12009-03-30 20:56:32 +0000512
Harald Welteb9c758b2009-07-05 14:02:46 +0200513 unsigned long validity_minutes;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200514 uint8_t reply_path_req;
515 uint8_t status_rep_req;
516 uint8_t ud_hdr_ind;
517 uint8_t protocol_id;
518 uint8_t data_coding_scheme;
519 uint8_t msg_ref;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200520 uint8_t user_data_len;
521 uint8_t user_data[SMS_TEXT_SIZE];
Harald Weltef3efc592009-07-27 20:11:35 +0200522
Harald Welte7e310b12009-03-30 20:56:32 +0000523 char text[SMS_TEXT_SIZE];
524};
525
Neels Hofmeyrc13e6872016-05-11 13:53:47 +0200526extern void talloc_ctx_init(void *ctx_root);
527
Harald Welte39315c42010-01-10 18:01:52 +0100528int gsm_set_bts_type(struct gsm_bts *bts, enum gsm_bts_type type);
Harald Weltee441d9c2009-06-21 16:17:15 +0200529
Harald Welte1d014a52009-08-08 15:38:29 +0200530enum gsm_bts_type parse_btstype(const char *arg);
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +0200531const char *btstype2str(enum gsm_bts_type type);
Harald Weltebe991492009-05-23 13:56:40 +0000532struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
533 struct gsm_bts *start_bts);
Harald Welte32201c12009-03-10 12:15:10 +0000534
Andreas Eversberg8226fa72009-06-29 15:19:38 +0200535extern void *tall_bsc_ctx;
Harald Weltef88c8a02009-12-20 13:48:15 +0100536extern int ipacc_rtp_direct;
Harald Welte2cf161b2009-06-20 22:36:41 +0200537
Harald Weltef383aa12012-07-02 19:51:55 +0200538/* this actaully refers to the IPA transport, not the BTS model */
Harald Welte32201c12009-03-10 12:15:10 +0000539static inline int is_ipaccess_bts(struct gsm_bts *bts)
540{
541 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +0100542 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +0100543 case GSM_BTS_TYPE_OSMOBTS:
Harald Welte32201c12009-03-10 12:15:10 +0000544 return 1;
545 default:
546 break;
547 }
548 return 0;
549}
550
Holger Hans Peter Freyther6f6cbf72015-04-04 19:35:22 +0200551static inline int is_sysmobts_v2(struct gsm_bts *bts)
552{
553 switch (bts->type) {
Maxf9685c12017-03-23 12:01:07 +0100554 case GSM_BTS_TYPE_OSMOBTS:
Holger Hans Peter Freyther6f6cbf72015-04-04 19:35:22 +0200555 return 1;
556 default:
557 break;
558 }
559 return 0;
560}
561
Harald Welte5b570672009-08-10 10:08:01 +0200562static inline int is_siemens_bts(struct gsm_bts *bts)
563{
564 switch (bts->type) {
565 case GSM_BTS_TYPE_BS11:
566 return 1;
567 default:
568 break;
569 }
570
571 return 0;
572}
573
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100574static inline int is_nokia_bts(struct gsm_bts *bts)
575{
576 switch (bts->type) {
577 case GSM_BTS_TYPE_NOKIA_SITE:
578 return 1;
579 default:
580 break;
581 }
582
583 return 0;
584}
585
Andreas Eversbergdcf38e12013-12-05 14:37:11 +0100586static inline int is_e1_bts(struct gsm_bts *bts)
587{
588 switch (bts->type) {
589 case GSM_BTS_TYPE_BS11:
590 case GSM_BTS_TYPE_RBS2000:
591 case GSM_BTS_TYPE_NOKIA_SITE:
592 return 1;
593 default:
594 break;
595 }
596
597 return 0;
598}
599
Harald Welte (local)69de3972009-08-12 14:42:23 +0200600enum gsm_auth_policy gsm_auth_policy_parse(const char *arg);
601const char *gsm_auth_policy_name(enum gsm_auth_policy policy);
602
Harald Welteeab84a12009-12-13 10:53:12 +0100603enum rrlp_mode rrlp_mode_parse(const char *arg);
604const char *rrlp_mode_name(enum rrlp_mode mode);
605
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +0100606enum bts_gprs_mode bts_gprs_mode_parse(const char *arg, int *valid);
Harald Welte4511d892010-04-18 15:51:20 +0200607const char *bts_gprs_mode_name(enum bts_gprs_mode mode);
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +0100608int bts_gprs_mode_is_compat(struct gsm_bts *bts, enum bts_gprs_mode mode);
Harald Welte4511d892010-04-18 15:51:20 +0200609
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200610int gsm48_ra_id_by_bts(uint8_t *buf, struct gsm_bts *bts);
Harald Welte97a282b2010-03-14 15:37:43 +0800611void gprs_ra_id_by_bts(struct gprs_ra_id *raid, struct gsm_bts *bts);
Harald Welted12b0fd2009-12-15 21:36:05 +0100612
Harald Weltef3d8e922010-06-14 22:44:42 +0200613int gsm_btsmodel_set_feature(struct gsm_bts_model *model, enum gsm_bts_features feat);
Harald Weltefbda4e12010-03-04 11:04:52 +0100614int gsm_bts_model_register(struct gsm_bts_model *model);
615
Neels Hofmeyr42eb0142016-05-20 17:15:44 +0200616struct gsm_subscriber_connection *bsc_subscr_con_allocate(struct gsm_lchan *lchan);
617void bsc_subscr_con_free(struct gsm_subscriber_connection *conn);
618
619struct gsm_subscriber_connection *msc_subscr_con_allocate(struct gsm_network *network);
620void msc_subscr_con_free(struct gsm_subscriber_connection *conn);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800621
Harald Welte3300c012011-06-05 13:31:33 +0200622struct gsm_bts *gsm_bts_alloc_register(struct gsm_network *net,
623 enum gsm_bts_type type,
Harald Weltea2bbc5e2015-11-20 10:43:31 +0100624 uint8_t bsic);
Harald Welte142d12d2014-12-29 17:47:08 +0100625
Harald Welte3300c012011-06-05 13:31:33 +0200626void set_ts_e1link(struct gsm_bts_trx_ts *ts, uint8_t e1_nr,
627 uint8_t e1_ts, uint8_t e1_ts_ss);
628
629void gsm_trx_lock_rf(struct gsm_bts_trx *trx, int locked);
Max71d082b2017-05-30 15:03:38 +0200630bool gsm_btsmodel_has_feature(struct gsm_bts_model *model, enum gsm_bts_features feat);
Harald Welte3300c012011-06-05 13:31:33 +0200631struct gsm_bts_trx *gsm_bts_trx_by_nr(struct gsm_bts *bts, int nr);
Holger Hans Peter Freythera49b2c02014-11-21 11:18:45 +0100632int gsm_bts_trx_set_system_infos(struct gsm_bts_trx *trx);
Alexander Chemerisc36a13b2015-05-30 14:40:54 -0400633int gsm_bts_set_system_infos(struct gsm_bts *bts);
Harald Welte3300c012011-06-05 13:31:33 +0200634
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200635/* generic E1 line operations for all ISDN-based BTS. */
636extern struct e1inp_line_ops bts_isdn_e1inp_line_ops;
637
Harald Weltee555c2b2012-08-17 13:02:12 +0200638extern const struct value_string bts_type_names[_NUM_GSM_BTS_TYPE+1];
639extern const struct value_string bts_type_descs[_NUM_GSM_BTS_TYPE+1];
640
Holger Hans Peter Freytherf8c42192013-01-09 17:03:27 +0100641/* control interface handling */
642int bsc_base_ctrl_cmds_install(void);
Harald Welte2483f1b2016-06-19 18:06:02 +0200643int msc_ctrl_cmds_install(struct gsm_network *net);
Holger Hans Peter Freytherf8c42192013-01-09 17:03:27 +0100644
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +0100645/* dependency handling */
646void bts_depend_mark(struct gsm_bts *bts, int dep);
647void bts_depend_clear(struct gsm_bts *bts, int dep);
648int bts_depend_check(struct gsm_bts *bts);
Holger Hans Peter Freytherf7e23c52014-12-17 15:44:32 +0100649int bts_depend_is_depedency(struct gsm_bts *base, struct gsm_bts *other);
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +0100650
Harald Welte2f8b9d22017-06-18 11:12:13 +0300651int gsm_bts_get_radio_link_timeout(const struct gsm_bts *bts);
652void gsm_bts_set_radio_link_timeout(struct gsm_bts *bts, int value);
653
Harald Welte2483f1b2016-06-19 18:06:02 +0200654bool classmark_is_r99(struct gsm_classmark *cm);
655
Harald Welte6be350c2011-05-25 13:10:08 +0200656#endif /* _GSM_DATA_H */