blob: 890ccac010aad2ef422143badcfd7e72740df1de [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001#ifndef _GSM_DATA_H
2#define _GSM_DATA_H
3
4#include <sys/types.h>
5
Holger Hans Peter Freyther3e8e0462010-09-15 22:29:25 +08006struct osmo_msc_data;
Holger Hans Peter Freyther2f9d1ef2010-09-16 20:14:01 +08007struct osmo_bsc_sccp_con;
Holger Hans Peter Freyther3e8e0462010-09-15 22:29:25 +08008
Harald Welte4bfdfe72009-06-10 23:11:52 +08009enum gsm_phys_chan_config {
10 GSM_PCHAN_NONE,
11 GSM_PCHAN_CCCH,
12 GSM_PCHAN_CCCH_SDCCH4,
13 GSM_PCHAN_TCH_F,
14 GSM_PCHAN_TCH_H,
15 GSM_PCHAN_SDCCH8_SACCH8C,
Harald Weltea1499d02009-10-24 10:25:50 +020016 GSM_PCHAN_PDCH, /* GPRS PDCH */
17 GSM_PCHAN_TCH_F_PDCH, /* TCH/F if used, PDCH otherwise */
Harald Welte4bfdfe72009-06-10 23:11:52 +080018 GSM_PCHAN_UNKNOWN,
19};
20
21enum gsm_chan_t {
22 GSM_LCHAN_NONE,
23 GSM_LCHAN_SDCCH,
24 GSM_LCHAN_TCH_F,
25 GSM_LCHAN_TCH_H,
26 GSM_LCHAN_UNKNOWN,
27};
28
Harald Welteeab84a12009-12-13 10:53:12 +010029/* RRLP mode of operation */
30enum rrlp_mode {
31 RRLP_MODE_NONE,
32 RRLP_MODE_MS_BASED,
33 RRLP_MODE_MS_PREF,
34 RRLP_MODE_ASS_PREF,
35};
Harald Welte4bfdfe72009-06-10 23:11:52 +080036
37/* Channel Request reason */
38enum gsm_chreq_reason_t {
39 GSM_CHREQ_REASON_EMERG,
40 GSM_CHREQ_REASON_PAG,
41 GSM_CHREQ_REASON_CALL,
42 GSM_CHREQ_REASON_LOCATION_UPD,
43 GSM_CHREQ_REASON_OTHER,
44};
45
Harald Weltedfe6c7d2010-02-20 16:24:02 +010046#include <osmocore/timer.h>
Holger Freyther1adb4ff2009-02-04 00:04:52 +000047#include <openbsc/gsm_04_08.h>
Harald Welte9943c5b2009-07-29 15:41:29 +020048#include <openbsc/abis_rsl.h>
Harald Welte7401ae62010-06-15 16:44:12 +020049#include <openbsc/system_information.h>
Harald Welte4bfdfe72009-06-10 23:11:52 +080050#include <openbsc/mncc.h>
Harald Welte887deab2010-03-06 11:38:05 +010051
Harald Weltedfe6c7d2010-02-20 16:24:02 +010052#include <osmocore/tlv.h>
53#include <osmocore/bitvec.h>
54#include <osmocore/statistics.h>
55#include <osmocore/gsm_utils.h>
56#include <osmocore/utils.h>
Harald Welte887deab2010-03-06 11:38:05 +010057#include <osmocore/rxlev_stat.h>
Harald Welte8470bf22008-12-25 23:28:35 +000058
Harald Welte85770c72009-01-18 17:47:32 +000059#define TRX_NR_TS 8
Harald Welte8470bf22008-12-25 23:28:35 +000060#define TS_MAX_LCHAN 8
Harald Welte52b1f982008-12-23 20:25:15 +000061
62#define HARDCODED_ARFCN 123
Harald Welte02b0e092009-02-28 13:11:07 +000063#define HARDCODED_TSC 7
Harald Welte78f2f502009-05-23 16:56:52 +000064#define HARDCODED_BSIC 0x3f /* NCC = 7 / BCC = 7 */
Harald Welte52b1f982008-12-23 20:25:15 +000065
Harald Welte63589be2009-08-06 17:38:10 +020066/* for multi-drop config */
67#define HARDCODED_BTS0_TS 1
68#define HARDCODED_BTS1_TS 6
69#define HARDCODED_BTS2_TS 11
70
Harald Welte8e1e3ee2009-02-01 13:32:45 +000071enum gsm_hooks {
72 GSM_HOOK_NM_SWLOAD,
Harald Welte0932d1e2009-02-16 22:53:52 +000073 GSM_HOOK_RR_PAGING,
Sylvain Munaut30a15382009-12-24 00:27:26 +010074 GSM_HOOK_RR_SECURITY,
Harald Welte0932d1e2009-02-16 22:53:52 +000075};
76
77enum gsm_paging_event {
78 GSM_PAGING_SUCCEEDED,
79 GSM_PAGING_EXPIRED,
Holger Freyther85a7b362009-04-18 13:48:55 +020080 GSM_PAGING_OOM,
Harald Welte8e1e3ee2009-02-01 13:32:45 +000081};
82
Harald Welte4511d892010-04-18 15:51:20 +020083enum bts_gprs_mode {
84 BTS_GPRS_NONE = 0,
85 BTS_GPRS_GPRS = 1,
86 BTS_GPRS_EGPRS = 2,
87};
88
Harald Welte0809d792010-04-30 14:36:25 +020089/* the data structure stored in msgb->cb for openbsc apps */
90struct openbsc_msgb_cb {
Harald Weltefd3fa1d2010-05-02 09:50:42 +020091 unsigned char *bssgph;
92 unsigned char *llch;
Harald Welte44f1c272010-04-30 19:54:29 +020093
Harald Welte11d7c102010-05-02 11:54:55 +020094 /* Cell Identifier */
95 unsigned char *bssgp_cell_id;
96
Harald Weltee6afd602010-05-02 11:19:37 +020097 /* Identifiers of a BTS, equal to 'struct bssgp_bts_ctx' */
Harald Welte44f1c272010-04-30 19:54:29 +020098 u_int16_t nsei;
99 u_int16_t bvci;
100
Harald Weltee6afd602010-05-02 11:19:37 +0200101 /* Identifier of a MS (inside BTS), equal to 'struct sgsn_mm_ctx' */
Harald Welte0809d792010-04-30 14:36:25 +0200102 u_int32_t tlli;
Harald Welte44f1c272010-04-30 19:54:29 +0200103} __attribute__((packed));
Harald Welte0809d792010-04-30 14:36:25 +0200104#define OBSC_MSGB_CB(__msgb) ((struct openbsc_msgb_cb *)&((__msgb)->cb[0]))
Harald Welte943c5bc2010-04-30 16:33:12 +0200105#define msgb_tlli(__x) OBSC_MSGB_CB(__x)->tlli
Harald Welte44f1c272010-04-30 19:54:29 +0200106#define msgb_nsei(__x) OBSC_MSGB_CB(__x)->nsei
107#define msgb_bvci(__x) OBSC_MSGB_CB(__x)->bvci
Harald Weltefd3fa1d2010-05-02 09:50:42 +0200108#define msgb_gmmh(__x) (__x)->l3h
109#define msgb_bssgph(__x) OBSC_MSGB_CB(__x)->bssgph
Harald Welte721961c2010-05-02 21:29:36 +0200110#define msgb_bssgp_len(__x) ((__x)->tail - (uint8_t *)msgb_bssgph(__x))
Harald Welte11d7c102010-05-02 11:54:55 +0200111#define msgb_bcid(__x) OBSC_MSGB_CB(__x)->bssgp_cell_id
Harald Weltefd3fa1d2010-05-02 09:50:42 +0200112#define msgb_llch(__x) OBSC_MSGB_CB(__x)->llch
Harald Welte0809d792010-04-30 14:36:25 +0200113
Holger Hans Peter Freyther9c595b72010-06-15 11:20:52 +0800114#define OBSC_LINKID_CB(__msgb) (__msgb)->cb[3]
115
Sylvain Munaut30a15382009-12-24 00:27:26 +0100116enum gsm_security_event {
117 GSM_SECURITY_NOAVAIL,
118 GSM_SECURITY_AUTH_FAILED,
119 GSM_SECURITY_SUCCEEDED,
120};
121
Harald Welte8e1e3ee2009-02-01 13:32:45 +0000122struct msgb;
123typedef int gsm_cbfn(unsigned int hooknum,
124 unsigned int event,
125 struct msgb *msg,
126 void *data, void *param);
127
Sylvain Munaut47193072009-12-27 21:56:14 +0100128/* Real authentication information containing Ki */
129enum gsm_auth_algo {
130 AUTH_ALGO_NONE,
131 AUTH_ALGO_XOR,
132 AUTH_ALGO_COMP128v1,
133};
134
135struct gsm_auth_info {
136 enum gsm_auth_algo auth_algo;
137 unsigned int a3a8_ki_len;
138 u_int8_t a3a8_ki[16];
139};
140
141struct gsm_auth_tuple {
142 int use_count;
143 int key_seq;
144 u_int8_t rand[16];
145 u_int8_t sres[4];
146 u_int8_t kc[8];
147};
Sylvain Munautb48216f2010-06-09 12:45:37 +0200148#define GSM_KEY_SEQ_INVAL 7 /* GSM 04.08 - 10.5.1.2 */
Sylvain Munaut47193072009-12-27 21:56:14 +0100149
150
Harald Welte49f48b82009-02-17 15:29:33 +0000151struct gsm_lchan;
152struct gsm_subscriber;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800153struct gsm_mncc;
Harald Welte805f6442009-07-28 18:25:29 +0200154struct rtp_socket;
Holger Hans Peter Freytherabcddf12010-06-14 18:20:15 +0800155struct bsc_api;
Harald Welte49f48b82009-02-17 15:29:33 +0000156
Harald Weltebbcc7a52009-02-14 19:45:44 +0000157/* Network Management State */
158struct gsm_nm_state {
159 u_int8_t operational;
160 u_int8_t administrative;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000161 u_int8_t availability;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000162};
Harald Weltebbcc7a52009-02-14 19:45:44 +0000163
Holger Freyther73487a22008-12-31 18:53:57 +0000164/*
165 * LOCATION UPDATING REQUEST state
166 *
167 * Our current operation is:
168 * - Get imei/tmsi
169 * - Accept/Reject according to global policy
170 */
171struct gsm_loc_updating_operation {
172 struct timer_list updating_timer;
Holger Hans Peter Freyther251aa912009-10-27 10:42:28 +0100173 unsigned int waiting_for_imsi : 1;
174 unsigned int waiting_for_imei : 1;
Sylvain Munaut2030a2a2010-06-10 13:36:59 +0200175 unsigned int key_seq : 4;
Holger Freyther73487a22008-12-31 18:53:57 +0000176};
177
Sylvain Munaut30a15382009-12-24 00:27:26 +0100178/*
179 * AUTHENTICATION/CIPHERING state
180 */
181struct gsm_security_operation {
182 struct gsm_auth_tuple atuple;
183 gsm_cbfn *cb;
184 void *cb_data;
185};
186
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800187/*
188 * A dummy to keep a connection up for at least
189 * a couple of seconds to work around MSC issues.
190 */
191struct gsm_anchor_operation {
192 struct timer_list timeout;
193};
194
Harald Weltef7c28b02009-12-21 13:30:17 +0100195/* Maximum number of neighbor cells whose average we track */
196#define MAX_NEIGH_MEAS 10
197/* Maximum size of the averaging window for neighbor cells */
198#define MAX_WIN_NEIGH_AVG 10
199
200/* processed neighbor measurements for one cell */
201struct neigh_meas_proc {
202 u_int16_t arfcn;
203 u_int8_t bsic;
204 u_int8_t rxlev[MAX_WIN_NEIGH_AVG];
205 unsigned int rxlev_cnt;
206 u_int8_t last_seen_nr;
207};
208
Harald Welte08d91a52009-08-30 15:37:11 +0900209#define MAX_A5_KEY_LEN (128/8)
Sylvain Munaute824d9c2010-06-11 00:19:42 +0200210#define A38_XOR_MIN_KEY_LEN 12
211#define A38_XOR_MAX_KEY_LEN 16
Sylvain Munaut30a15382009-12-24 00:27:26 +0100212#define A38_COMP128_KEY_LEN 16
Harald Welte08d91a52009-08-30 15:37:11 +0900213#define RSL_ENC_ALG_A5(x) (x+1)
214
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100215/* is the data link established? who established it? */
216#define LCHAN_SAPI_UNUSED 0
217#define LCHAN_SAPI_MS 1
218#define LCHAN_SAPI_NET 2
219
Harald Welteb8bfc562009-12-21 13:27:11 +0100220/* state of a logical channel */
221enum gsm_lchan_state {
222 LCHAN_S_NONE, /* channel is not active */
Harald Welte (local)3e460312009-12-27 18:12:29 +0100223 LCHAN_S_ACT_REQ, /* channel activatin requested */
Harald Welteb8bfc562009-12-21 13:27:11 +0100224 LCHAN_S_ACTIVE, /* channel is active and operational */
Harald Welte8e93b792009-12-29 10:44:17 +0100225 LCHAN_S_REL_REQ, /* channel release has been requested */
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +0800226 LCHAN_S_REL_ERR, /* channel is in an error state */
Harald Welteb8bfc562009-12-21 13:27:11 +0100227 LCHAN_S_INACTIVE, /* channel is set inactive */
228};
229
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100230/* the per subscriber data for lchan */
231struct gsm_subscriber_connection {
Holger Hans Peter Freyther79f763f2010-09-16 00:53:37 +0800232 struct llist_head entry;
233
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100234 /* To whom we are allocated at the moment */
235 struct gsm_subscriber *subscr;
236
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100237 /*
238 * Operations that have a state and might be pending
239 */
240 struct gsm_loc_updating_operation *loc_operation;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100241 struct gsm_security_operation *sec_operation;
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800242 struct gsm_anchor_operation *anch_operation;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100243
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100244 /* Are we part of a special "silent" call */
245 int silent_call;
246
Holger Hans Peter Freyther2f9d1ef2010-09-16 20:14:01 +0800247 /* bsc structures */
248 struct osmo_bsc_sccp_con *sccp_con;
249
Holger Hans Peter Freyther18b63f42010-03-23 07:52:17 +0100250 /* back pointers */
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800251 int in_release;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100252 struct gsm_lchan *lchan;
Holger Hans Peter Freythere071ab72010-06-30 12:40:10 +0800253 struct gsm_lchan *ho_lchan;
Holger Hans Peter Freyther18b63f42010-03-23 07:52:17 +0100254 struct gsm_bts *bts;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100255};
256
Harald Welte8470bf22008-12-25 23:28:35 +0000257struct gsm_lchan {
258 /* The TS that we're part of */
259 struct gsm_bts_trx_ts *ts;
260 /* The logical subslot number in the TS */
261 u_int8_t nr;
Harald Welte45b407a2009-05-23 15:51:12 +0000262 /* The logical channel type */
Harald Welte8470bf22008-12-25 23:28:35 +0000263 enum gsm_chan_t type;
Harald Welte9943c5b2009-07-29 15:41:29 +0200264 /* RSL channel mode */
265 enum rsl_cmod_spd rsl_cmode;
Harald Welte45b407a2009-05-23 15:51:12 +0000266 /* If TCH, traffic channel mode */
Harald Welte9943c5b2009-07-29 15:41:29 +0200267 enum gsm48_chan_mode tch_mode;
Harald Welteb8bfc562009-12-21 13:27:11 +0100268 /* State */
269 enum gsm_lchan_state state;
Harald Welted4c9bf32009-02-15 16:56:18 +0000270 /* Power levels for MS and BTS */
271 u_int8_t bs_power;
272 u_int8_t ms_power;
Harald Welte08d91a52009-08-30 15:37:11 +0900273 /* Encryption information */
274 struct {
275 u_int8_t alg_id;
276 u_int8_t key_len;
277 u_int8_t key[MAX_A5_KEY_LEN];
278 } encr;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100279
280 struct timer_list T3101;
Holger Hans Peter Freytherf30c0dc2010-05-31 21:33:15 +0800281 struct timer_list T3111;
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +0800282 struct timer_list error_timer;
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +0100283
284 /* AMR bits */
285 struct gsm48_multi_rate_conf mr_conf;
Harald Welted4c9bf32009-02-15 16:56:18 +0000286
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100287 /* Established data link layer services */
288 u_int8_t sapis[8];
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800289 int sach_deact;
290 int release_reason;
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100291
Holger Hans Peter Freyther5ba05f42010-06-22 12:11:59 +0800292 /* GSM Random Access data */
293 struct gsm48_req_ref *rqd_ref;
294 uint8_t rqd_ta;
295
Harald Welted12b0fd2009-12-15 21:36:05 +0100296 /* cache of last measurement reports on this lchan */
297 struct gsm_meas_rep meas_rep[6];
298 int meas_rep_idx;
299
Harald Weltef7c28b02009-12-21 13:30:17 +0100300 /* table of neighbor cell measurements */
301 struct neigh_meas_proc neigh_meas[MAX_NEIGH_MEAS];
302
Harald Welte2c828992009-12-02 01:56:49 +0530303 struct {
304 u_int32_t bound_ip;
Harald Welte5e3d91b2009-12-19 16:42:06 +0100305 u_int32_t connect_ip;
Harald Welte2c828992009-12-02 01:56:49 +0530306 u_int16_t bound_port;
Harald Welte5e3d91b2009-12-19 16:42:06 +0100307 u_int16_t connect_port;
Harald Welte2c828992009-12-02 01:56:49 +0530308 u_int16_t conn_id;
Sylvain Munautb54dda42009-12-20 22:06:40 +0100309 u_int8_t rtp_payload;
Harald Welte5e3d91b2009-12-19 16:42:06 +0100310 u_int8_t rtp_payload2;
311 u_int8_t speech_mode;
Harald Welte2c828992009-12-02 01:56:49 +0530312 struct rtp_socket *rtp_socket;
313 } abis_ip;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100314
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800315 struct gsm_subscriber_connection *conn;
Harald Welte8470bf22008-12-25 23:28:35 +0000316};
317
Harald Welte85770c72009-01-18 17:47:32 +0000318struct gsm_e1_subslot {
319 /* Number of E1 link */
320 u_int8_t e1_nr;
321 /* Number of E1 TS inside E1 link */
322 u_int8_t e1_ts;
323 /* Sub-slot within the E1 TS, 0xff if full TS */
324 u_int8_t e1_ts_ss;
325};
326
Harald Welte4563eab2010-03-28 14:42:09 +0800327#define TS_F_PDCH_MODE 0x1000
Harald Welte52b1f982008-12-23 20:25:15 +0000328/* One Timeslot in a TRX */
329struct gsm_bts_trx_ts {
330 struct gsm_bts_trx *trx;
331 /* number of this timeslot at the TRX */
332 u_int8_t nr;
333
Harald Welte8470bf22008-12-25 23:28:35 +0000334 enum gsm_phys_chan_config pchan;
335
Harald Welte52b1f982008-12-23 20:25:15 +0000336 unsigned int flags;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000337 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200338 struct tlv_parsed nm_attr;
Harald Welte39c7deb2009-08-09 21:49:48 +0200339 u_int8_t nm_chan_comb;
Harald Welte8470bf22008-12-25 23:28:35 +0000340
Harald Welte6e0cd042009-09-12 13:05:33 +0200341 struct {
Harald Weltefd370892010-06-15 08:52:12 +0200342 /* Parameters below are configured by VTY */
Harald Weltea39b0f22010-06-14 22:26:10 +0200343 int enabled;
Harald Welte6e0cd042009-09-12 13:05:33 +0200344 u_int8_t maio;
345 u_int8_t hsn;
Harald Weltea39b0f22010-06-14 22:26:10 +0200346 struct bitvec arfcns;
347 u_int8_t arfcns_data[1024/8];
Harald Weltefd370892010-06-15 08:52:12 +0200348 /* This is the pre-computed MA for channel assignments */
349 struct bitvec ma;
Harald Welte29aca172010-06-15 16:45:51 +0200350 u_int8_t ma_len; /* part of ma_data that is used */
Harald Weltefd370892010-06-15 08:52:12 +0200351 u_int8_t ma_data[8]; /* 10.5.2.21: max 8 bytes value part */
Harald Welte6e0cd042009-09-12 13:05:33 +0200352 } hopping;
353
Harald Welte85770c72009-01-18 17:47:32 +0000354 /* To which E1 subslot are we connected */
355 struct gsm_e1_subslot e1_link;
356
Harald Welte8470bf22008-12-25 23:28:35 +0000357 struct gsm_lchan lchan[TS_MAX_LCHAN];
Harald Welte52b1f982008-12-23 20:25:15 +0000358};
359
360/* One TRX in a BTS */
361struct gsm_bts_trx {
Harald Weltee441d9c2009-06-21 16:17:15 +0200362 /* list header in bts->trx_list */
363 struct llist_head list;
364
Harald Welte52b1f982008-12-23 20:25:15 +0000365 struct gsm_bts *bts;
366 /* number of this TRX in the BTS */
367 u_int8_t nr;
Harald Welte197dea92010-05-14 17:59:53 +0200368 /* human readable name / description */
369 char *description;
Harald Welte1fa60c82009-02-09 18:13:26 +0000370 /* how do we talk RSL with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200371 struct gsm_e1_subslot rsl_e1_link;
372 u_int8_t rsl_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000373 struct e1inp_sign_link *rsl_link;
Harald Welte42581822009-08-08 16:12:58 +0200374
Harald Weltebbcc7a52009-02-14 19:45:44 +0000375 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200376 struct tlv_parsed nm_attr;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000377 struct {
378 struct gsm_nm_state nm_state;
379 } bb_transc;
Harald Welte52b1f982008-12-23 20:25:15 +0000380
381 u_int16_t arfcn;
Harald Weltefcd24452009-06-20 18:15:19 +0200382 int nominal_power; /* in dBm */
383 unsigned int max_power_red; /* in actual dB */
Harald Welte8b697c72009-06-05 19:18:45 +0000384
385 union {
386 struct {
387 struct {
388 struct gsm_nm_state nm_state;
389 } bbsig;
390 struct {
391 struct gsm_nm_state nm_state;
392 } pa;
393 } bs11;
Harald Welte549faad2010-03-05 19:36:20 +0100394 struct {
395 unsigned int test_state;
Harald Weltea0b0f362010-03-09 22:35:37 +0100396 u_int8_t test_nr;
Harald Welte887deab2010-03-06 11:38:05 +0100397 struct rxlev_stats rxlev_stat;
Harald Welte549faad2010-03-05 19:36:20 +0100398 } ipaccess;
Harald Welte8b697c72009-06-05 19:18:45 +0000399 };
Harald Welte85770c72009-01-18 17:47:32 +0000400 struct gsm_bts_trx_ts ts[TRX_NR_TS];
Harald Welte52b1f982008-12-23 20:25:15 +0000401};
402
Harald Welte7401ae62010-06-15 16:44:12 +0200403#define GSM_BTS_SI(bts, i) (void *)(bts->si_buf[i])
404
Harald Welte978cb422009-01-18 17:57:27 +0000405enum gsm_bts_type {
406 GSM_BTS_TYPE_UNKNOWN,
407 GSM_BTS_TYPE_BS11,
Mike Habene2d82272009-10-02 12:19:34 +0100408 GSM_BTS_TYPE_NANOBTS,
Harald Welte978cb422009-01-18 17:57:27 +0000409};
410
Harald Welte39315c42010-01-10 18:01:52 +0100411struct gsm_bts_model {
412 struct llist_head list;
413
414 enum gsm_bts_type type;
415 const char *name;
416
417 struct tlv_definition nm_att_tlvdef;
Harald Weltef3d8e922010-06-14 22:44:42 +0200418
419 struct bitvec features;
420 uint8_t _features_data[128/8];
421};
422
423enum gsm_bts_features {
424 BTS_FEAT_HSCSD,
425 BTS_FEAT_GPRS,
426 BTS_FEAT_EGPRS,
427 BTS_FEAT_ECSD,
428 BTS_FEAT_HOPPING,
Harald Welte39315c42010-01-10 18:01:52 +0100429};
430
Holger Freytherceb59b72009-02-06 18:54:00 +0000431/**
432 * A pending paging request
433 */
434struct gsm_paging_request {
Harald Welte0932d1e2009-02-16 22:53:52 +0000435 /* list_head for list of all paging requests */
Holger Freytherceb59b72009-02-06 18:54:00 +0000436 struct llist_head entry;
Harald Welte0932d1e2009-02-16 22:53:52 +0000437 /* the subscriber which we're paging. Later gsm_paging_request
438 * should probably become a part of the gsm_subscriber struct? */
Holger Freytherceb59b72009-02-06 18:54:00 +0000439 struct gsm_subscriber *subscr;
Harald Welte0932d1e2009-02-16 22:53:52 +0000440 /* back-pointer to the BTS on which we are paging */
Holger Freytherceb59b72009-02-06 18:54:00 +0000441 struct gsm_bts *bts;
Harald Welte0932d1e2009-02-16 22:53:52 +0000442 /* what kind of channel type do we ask the MS to establish */
Holger Freytherceb59b72009-02-06 18:54:00 +0000443 int chan_type;
Harald Weltecd06bfb2009-02-10 17:33:56 +0000444
445 /* Timer 3113: how long do we try to page? */
446 struct timer_list T3113;
Harald Welte0932d1e2009-02-16 22:53:52 +0000447
448 /* callback to be called in case paging completes */
449 gsm_cbfn *cbfn;
450 void *cbfn_param;
Holger Freytherceb59b72009-02-06 18:54:00 +0000451};
452
453/*
454 * This keeps track of the paging status of one BTS. It
455 * includes a number of pending requests, a back pointer
456 * to the gsm_bts, a timer and some more state.
457 */
458struct gsm_bts_paging_state {
Holger Freytherceb59b72009-02-06 18:54:00 +0000459 /* pending requests */
460 struct llist_head pending_requests;
Holger Freytherceb59b72009-02-06 18:54:00 +0000461 struct gsm_bts *bts;
462
Harald Welte75a1fa82009-02-17 01:39:41 +0000463 struct timer_list work_timer;
Holger Hans Peter Freyther6410d932010-04-19 19:41:26 +0800464 struct timer_list credit_timer;
Harald Welte75a1fa82009-02-17 01:39:41 +0000465
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +0800466 /* free chans needed */
467 int free_chans_need;
468
Holger Freyther392209c2009-02-10 00:06:19 +0000469 /* load */
470 u_int16_t available_slots;
Holger Freytherceb59b72009-02-06 18:54:00 +0000471};
472
Harald Welte8b697c72009-06-05 19:18:45 +0000473struct gsm_envabtse {
474 struct gsm_nm_state nm_state;
475};
476
Harald Welte55dd4432009-10-24 10:19:14 +0200477struct gsm_bts_gprs_nsvc {
478 struct gsm_bts *bts;
Harald Welteab88a622010-03-18 00:01:23 +0800479 /* data read via VTY config file, to configure the BTS
480 * via OML from BSC */
Harald Welte55dd4432009-10-24 10:19:14 +0200481 int id;
Harald Welte97a282b2010-03-14 15:37:43 +0800482 u_int16_t nsvci;
Harald Welteab88a622010-03-18 00:01:23 +0800483 u_int16_t local_port; /* on the BTS */
484 u_int16_t remote_port; /* on the SGSN */
485 u_int32_t remote_ip; /* on the SGSN */
486
Harald Welte55dd4432009-10-24 10:19:14 +0200487 struct gsm_nm_state nm_state;
488};
489
Harald Welte52b1f982008-12-23 20:25:15 +0000490/* One BTS */
491struct gsm_bts {
Harald Weltee441d9c2009-06-21 16:17:15 +0200492 /* list header in net->bts_list */
493 struct llist_head list;
494
Harald Welte52b1f982008-12-23 20:25:15 +0000495 struct gsm_network *network;
496 /* number of ths BTS in network */
497 u_int8_t nr;
Harald Welte197dea92010-05-14 17:59:53 +0200498 /* human readable name / description */
499 char *description;
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200500 /* Cell Identity */
501 u_int16_t cell_identity;
Harald Welte52b1f982008-12-23 20:25:15 +0000502 /* location area code of this BTS */
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +0200503 u_int16_t location_area_code;
Harald Welte02b0e092009-02-28 13:11:07 +0000504 /* Training Sequence Code */
505 u_int8_t tsc;
Harald Welte78f2f502009-05-23 16:56:52 +0000506 /* Base Station Identification Code (BSIC) */
507 u_int8_t bsic;
Harald Welte978cb422009-01-18 17:57:27 +0000508 /* type of BTS */
509 enum gsm_bts_type type;
Harald Welte39315c42010-01-10 18:01:52 +0100510 struct gsm_bts_model *model;
Harald Weltefcd24452009-06-20 18:15:19 +0200511 enum gsm_band band;
Harald Weltefc0d9522009-08-10 13:46:55 +0200512 /* should the channel allocator allocate channels from high TRX to TRX0,
513 * rather than starting from TRX0 and go upwards? */
514 int chan_alloc_reverse;
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200515 /* maximum Tx power that the MS is permitted to use in this cell */
516 int ms_max_power;
Harald Weltefc0d9522009-08-10 13:46:55 +0200517
Harald Welte1fa60c82009-02-09 18:13:26 +0000518 /* how do we talk OML with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200519 struct gsm_e1_subslot oml_e1_link;
520 u_int8_t oml_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000521 struct e1inp_sign_link *oml_link;
Harald Welte52b1f982008-12-23 20:25:15 +0000522
523 /* Abis network management O&M handle */
524 struct abis_nm_h *nmh;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000525 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200526 struct tlv_parsed nm_attr;
Harald Welte978cb422009-01-18 17:57:27 +0000527
Harald Welte52b1f982008-12-23 20:25:15 +0000528 /* number of this BTS on given E1 link */
529 u_int8_t bts_nr;
530
Holger Freytherceb59b72009-02-06 18:54:00 +0000531 /* paging state and control */
532 struct gsm_bts_paging_state paging;
533
Harald Welte52b1f982008-12-23 20:25:15 +0000534 /* CCCH is on C0 */
535 struct gsm_bts_trx *c0;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000536
537 struct {
538 struct gsm_nm_state nm_state;
539 } site_mgr;
Harald Welteedb37782009-05-01 14:59:07 +0000540
Harald Weltea43f7892009-12-01 18:04:30 +0530541 /* parameters from which we build SYSTEM INFORMATION */
542 struct {
543 struct gsm48_rach_control rach_control;
544 u_int8_t ncc_permitted;
545 struct gsm48_cell_sel_par cell_sel_par;
546 struct gsm48_cell_options cell_options;
547 struct gsm48_control_channel_descr chan_desc;
Harald Welte6c40def2009-12-14 22:07:14 +0100548 struct bitvec neigh_list;
549 struct bitvec cell_alloc;
550 struct {
551 /* bitmask large enough for all possible ARFCN's */
552 u_int8_t neigh_list[1024/8];
553 u_int8_t cell_alloc[1024/8];
554 } data;
Harald Weltea43f7892009-12-01 18:04:30 +0530555 } si_common;
556
Harald Welte9fbff4a2010-07-30 11:50:09 +0200557 /* do we use static (user-defined) system information messages? (bitmask) */
558 uint32_t si_mode_static;
559 /* bitmask of all SI that are present/valid in si_buf */
560 uint32_t si_valid;
Harald Welte7401ae62010-06-15 16:44:12 +0200561 /* buffers where we put the pre-computed SI */
562 sysinfo_buf_t si_buf[_MAX_SYSINFO_TYPE];
563
Harald Welteedb37782009-05-01 14:59:07 +0000564 /* ip.accesss Unit ID's have Site/BTS/TRX layout */
Harald Welte7b26bcb2009-05-28 11:39:21 +0000565 union {
566 struct {
567 u_int16_t site_id;
568 u_int16_t bts_id;
Harald Welte88a412a2009-12-16 17:32:37 +0100569 u_int32_t flags;
Harald Welte7b26bcb2009-05-28 11:39:21 +0000570 } ip_access;
571 struct {
572 struct {
573 struct gsm_nm_state nm_state;
574 } cclk;
575 struct {
576 struct gsm_nm_state nm_state;
577 } rack;
Harald Welte8b697c72009-06-05 19:18:45 +0000578 struct gsm_envabtse envabtse[4];
Harald Welte7b26bcb2009-05-28 11:39:21 +0000579 } bs11;
580 };
Harald Welte55dd4432009-10-24 10:19:14 +0200581
582 /* Not entirely sure how ip.access specific this is */
583 struct {
Harald Welte4511d892010-04-18 15:51:20 +0200584 enum bts_gprs_mode mode;
Harald Welte55dd4432009-10-24 10:19:14 +0200585 struct {
586 struct gsm_nm_state nm_state;
Harald Weltea5731cf2010-03-22 11:48:36 +0800587 u_int16_t nsei;
Harald Welte615e9562010-05-11 23:50:21 +0200588 uint8_t timer[7];
Harald Welte55dd4432009-10-24 10:19:14 +0200589 } nse;
590 struct {
591 struct gsm_nm_state nm_state;
Harald Welte97a282b2010-03-14 15:37:43 +0800592 u_int16_t bvci;
Harald Welte615e9562010-05-11 23:50:21 +0200593 uint8_t timer[11];
Harald Welte55dd4432009-10-24 10:19:14 +0200594 } cell;
595 struct gsm_bts_gprs_nsvc nsvc[2];
Harald Welte97a282b2010-03-14 15:37:43 +0800596 u_int8_t rac;
Harald Welte55dd4432009-10-24 10:19:14 +0200597 } gprs;
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800598
599 /* RACH NM values */
600 int rach_b_thresh;
601 int rach_ldavg_slots;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000602
Harald Welte52b1f982008-12-23 20:25:15 +0000603 /* transceivers */
604 int num_trx;
Harald Weltee441d9c2009-06-21 16:17:15 +0200605 struct llist_head trx_list;
Harald Welte52b1f982008-12-23 20:25:15 +0000606};
607
Harald Welte24ff6ee2009-12-22 00:41:05 +0100608/* Some statistics of our network */
609struct gsmnet_stats {
610 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100611 struct counter *total;
612 struct counter *no_channel;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100613 } chreq;
614 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100615 struct counter *attempted;
616 struct counter *no_channel; /* no channel available */
617 struct counter *timeout; /* T3103 timeout */
618 struct counter *completed; /* HO COMPL received */
619 struct counter *failed; /* HO FAIL received */
Harald Welte24ff6ee2009-12-22 00:41:05 +0100620 } handover;
621 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100622 struct counter *attach;
623 struct counter *normal;
624 struct counter *periodic;
625 struct counter *detach;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100626 } loc_upd_type;
627 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100628 struct counter *reject;
629 struct counter *accept;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100630 } loc_upd_resp;
631 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100632 struct counter *attempted;
633 struct counter *detached;
634 struct counter *completed;
635 struct counter *expired;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100636 } paging;
637 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100638 struct counter *submitted; /* MO SMS submissions */
639 struct counter *no_receiver;
640 struct counter *delivered; /* MT SMS deliveries */
641 struct counter *rp_err_mem;
642 struct counter *rp_err_other;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100643 } sms;
644 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100645 struct counter *dialled; /* total number of dialled calls */
646 struct counter *alerted; /* we alerted the other end */
647 struct counter *connected;/* how many calls were accepted */
Harald Welte24ff6ee2009-12-22 00:41:05 +0100648 } call;
Holger Hans Peter Freyther3ba36d52010-04-17 06:48:29 +0200649 struct {
650 struct counter *rf_fail;
651 struct counter *rll_err;
652 } chan;
Holger Hans Peter Freytherbb110f92010-04-12 10:45:52 +0200653 struct {
654 struct counter *oml_fail;
655 struct counter *rsl_fail;
656 } bts;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100657};
658
Harald Welte (local)69de3972009-08-12 14:42:23 +0200659enum gsm_auth_policy {
660 GSM_AUTH_POLICY_CLOSED, /* only subscribers authorized in DB */
661 GSM_AUTH_POLICY_ACCEPT_ALL, /* accept everyone, even if not authorized in DB */
662 GSM_AUTH_POLICY_TOKEN, /* accept first, send token per sms, then revoke authorization */
663};
664
Harald Welteb84ddfc2009-12-01 17:36:54 +0530665#define GSM_T3101_DEFAULT 10
666#define GSM_T3113_DEFAULT 60
667
Harald Welte52b1f982008-12-23 20:25:15 +0000668struct gsm_network {
669 /* global parameters */
Harald Welteb84e2f42008-12-28 23:42:04 +0000670 u_int16_t country_code;
671 u_int16_t network_code;
Harald Weltec6ba9c22008-12-30 18:01:02 +0000672 char *name_long;
673 char *name_short;
Harald Welte (local)69de3972009-08-12 14:42:23 +0200674 enum gsm_auth_policy auth_policy;
Harald Welte1085c092009-11-18 20:33:19 +0100675 enum gsm48_reject_value reject_cause;
Harald Welte4381cfe2009-08-30 15:47:06 +0900676 int a5_encryption;
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100677 int neci;
Harald Welte648b6ce2009-12-14 09:00:24 +0100678 int send_mm_info;
Harald Weltebc814502009-12-19 21:41:52 +0100679 struct {
680 int active;
Harald Weltef7c28b02009-12-21 13:30:17 +0100681 /* Window RXLEV averaging */
682 unsigned int win_rxlev_avg; /* number of SACCH frames */
683 /* Window RXQUAL averaging */
684 unsigned int win_rxqual_avg; /* number of SACCH frames */
685 /* Window RXLEV neighbouring cells averaging */
686 unsigned int win_rxlev_avg_neigh; /* number of SACCH frames */
687
688 /* how often should we check for power budget HO */
689 unsigned int pwr_interval; /* SACCH frames */
690 /* how much better does a neighbor cell have to be ? */
691 unsigned int pwr_hysteresis; /* dBm */
692 /* maximum distacne before we try a handover */
693 unsigned int max_distance; /* TA values */
Harald Weltebc814502009-12-19 21:41:52 +0100694 } handover;
Harald Welte52b1f982008-12-23 20:25:15 +0000695
Harald Welte24ff6ee2009-12-22 00:41:05 +0100696 struct gsmnet_stats stats;
697
Harald Welte4bfdfe72009-06-10 23:11:52 +0800698 /* layer 4 */
699 int (*mncc_recv) (struct gsm_network *net, int msg_type, void *arg);
700 struct llist_head upqueue;
701 struct llist_head trans_list;
Holger Hans Peter Freytherabcddf12010-06-14 18:20:15 +0800702 struct bsc_api *bsc_api;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800703
Harald Welte52b1f982008-12-23 20:25:15 +0000704 unsigned int num_bts;
Harald Weltee441d9c2009-06-21 16:17:15 +0200705 struct llist_head bts_list;
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100706
707 /* timer values */
708 int T3101;
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100709 int T3103;
710 int T3105;
711 int T3107;
712 int T3109;
713 int T3111;
714 int T3113;
715 int T3115;
716 int T3117;
717 int T3119;
718 int T3141;
Harald Welteeab84a12009-12-13 10:53:12 +0100719
720 /* Radio Resource Location Protocol (TS 04.31) */
721 struct {
722 enum rrlp_mode mode;
723 } rrlp;
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +0800724
725 /* enable the DTXu and DTXd for this network */
726 int dtx_enabled;
727
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +0800728 enum gsm_chan_t ctype_by_chreq[16];
729
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800730 /* Use a TCH for handling requests of type paging any */
731 int pag_any_tch;
732
Holger Hans Peter Freyther3e8e0462010-09-15 22:29:25 +0800733 /* MSC data in case we are a true BSC */
734 struct osmo_msc_data *msc_data;
Harald Welte52b1f982008-12-23 20:25:15 +0000735};
736
Harald Welte7e310b12009-03-30 20:56:32 +0000737#define SMS_HDR_SIZE 128
738#define SMS_TEXT_SIZE 256
739struct gsm_sms {
Harald Welted409be72009-11-07 00:06:19 +0900740 unsigned long long id;
Harald Welte7e310b12009-03-30 20:56:32 +0000741 struct gsm_subscriber *sender;
742 struct gsm_subscriber *receiver;
743
Harald Welteb9c758b2009-07-05 14:02:46 +0200744 unsigned long validity_minutes;
Harald Welte76042182009-08-08 16:03:15 +0200745 u_int8_t reply_path_req;
746 u_int8_t status_rep_req;
747 u_int8_t ud_hdr_ind;
748 u_int8_t protocol_id;
749 u_int8_t data_coding_scheme;
750 u_int8_t msg_ref;
751 char dest_addr[20+1]; /* DA LV is 12 bytes max, i.e. 10 bytes
752 * BCD == 20 bytes string */
753 u_int8_t user_data_len;
754 u_int8_t user_data[SMS_TEXT_SIZE];
Harald Weltef3efc592009-07-27 20:11:35 +0200755
Harald Welte7e310b12009-03-30 20:56:32 +0000756 char text[SMS_TEXT_SIZE];
757};
758
Harald Welte3606cc52009-12-05 15:13:22 +0530759
Harald Weltee441d9c2009-06-21 16:17:15 +0200760struct gsm_network *gsm_network_init(u_int16_t country_code, u_int16_t network_code,
Harald Welte4bfdfe72009-06-10 23:11:52 +0800761 int (*mncc_recv)(struct gsm_network *, int, void *));
Harald Weltee441d9c2009-06-21 16:17:15 +0200762struct gsm_bts *gsm_bts_alloc(struct gsm_network *net, enum gsm_bts_type type,
763 u_int8_t tsc, u_int8_t bsic);
764struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts);
Harald Welte39315c42010-01-10 18:01:52 +0100765int gsm_set_bts_type(struct gsm_bts *bts, enum gsm_bts_type type);
Harald Weltee441d9c2009-06-21 16:17:15 +0200766
767struct gsm_bts *gsm_bts_num(struct gsm_network *net, int num);
Harald Welte84874c92009-12-14 22:33:02 +0100768
769/* Get reference to a neighbor cell on a given BCCH ARFCN */
Harald Welte0b121032009-12-15 00:21:31 +0100770struct gsm_bts *gsm_bts_neighbor(const struct gsm_bts *bts,
771 u_int16_t arfcn, u_int8_t bsic);
Harald Welte84874c92009-12-14 22:33:02 +0100772
Harald Weltee441d9c2009-06-21 16:17:15 +0200773struct gsm_bts_trx *gsm_bts_trx_num(struct gsm_bts *bts, int num);
Harald Welte8470bf22008-12-25 23:28:35 +0000774
Harald Weltea72c98e2009-01-04 16:10:38 +0000775const char *gsm_pchan_name(enum gsm_phys_chan_config c);
Harald Welte65da9122009-08-07 00:32:22 +0200776enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
Harald Welte (local)ccd88452009-12-27 18:05:25 +0100777const char *gsm_lchant_name(enum gsm_chan_t c);
Harald Weltea72c98e2009-01-04 16:10:38 +0000778const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Harald Welte (local)d48f4eb2009-12-28 23:14:22 +0100779char *gsm_trx_name(struct gsm_bts_trx *trx);
Harald Welte23a68632009-02-19 17:06:42 +0000780char *gsm_ts_name(struct gsm_bts_trx_ts *ts);
Harald Welte (local)19ef62a2009-12-27 18:16:36 +0100781char *gsm_lchan_name(struct gsm_lchan *lchan);
Harald Welte1887f9d2009-12-29 10:52:38 +0100782const char *gsm_lchans_name(enum gsm_lchan_state s);
Harald Weltea72c98e2009-01-04 16:10:38 +0000783
Harald Weltead384642008-12-26 10:20:07 +0000784enum gsm_e1_event {
785 EVT_E1_NONE,
Harald Welte1fa60c82009-02-09 18:13:26 +0000786 EVT_E1_TEI_UP,
787 EVT_E1_TEI_DN,
Harald Weltead384642008-12-26 10:20:07 +0000788};
789
Harald Weltecd06bfb2009-02-10 17:33:56 +0000790void set_ts_e1link(struct gsm_bts_trx_ts *ts, u_int8_t e1_nr,
791 u_int8_t e1_ts, u_int8_t e1_ts_ss);
Harald Welte1d014a52009-08-08 15:38:29 +0200792enum gsm_bts_type parse_btstype(const char *arg);
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +0200793const char *btstype2str(enum gsm_bts_type type);
Harald Welte6e670aa2010-01-07 20:44:32 +0100794struct gsm_bts_trx *gsm_bts_trx_by_nr(struct gsm_bts *bts, int nr);
Harald Weltebe991492009-05-23 13:56:40 +0000795struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
796 struct gsm_bts *start_bts);
Harald Welte32201c12009-03-10 12:15:10 +0000797
Andreas Eversberg8226fa72009-06-29 15:19:38 +0200798extern void *tall_bsc_ctx;
Harald Weltef88c8a02009-12-20 13:48:15 +0100799extern int ipacc_rtp_direct;
Harald Welte2cf161b2009-06-20 22:36:41 +0200800
Harald Welte32201c12009-03-10 12:15:10 +0000801static inline int is_ipaccess_bts(struct gsm_bts *bts)
802{
803 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +0100804 case GSM_BTS_TYPE_NANOBTS:
Harald Welte32201c12009-03-10 12:15:10 +0000805 return 1;
806 default:
807 break;
808 }
809 return 0;
810}
811
Harald Welte5b570672009-08-10 10:08:01 +0200812static inline int is_siemens_bts(struct gsm_bts *bts)
813{
814 switch (bts->type) {
815 case GSM_BTS_TYPE_BS11:
816 return 1;
817 default:
818 break;
819 }
820
821 return 0;
822}
823
Harald Welte (local)69de3972009-08-12 14:42:23 +0200824
825enum gsm_auth_policy gsm_auth_policy_parse(const char *arg);
826const char *gsm_auth_policy_name(enum gsm_auth_policy policy);
827
Harald Welteeab84a12009-12-13 10:53:12 +0100828enum rrlp_mode rrlp_mode_parse(const char *arg);
829const char *rrlp_mode_name(enum rrlp_mode mode);
830
Harald Welte4511d892010-04-18 15:51:20 +0200831enum bts_gprs_mode bts_gprs_mode_parse(const char *arg);
832const char *bts_gprs_mode_name(enum bts_gprs_mode mode);
833
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +0100834void gsm_trx_lock_rf(struct gsm_bts_trx *trx, int locked);
835
Harald Welte97a282b2010-03-14 15:37:43 +0800836int gsm48_ra_id_by_bts(u_int8_t *buf, struct gsm_bts *bts);
837void gprs_ra_id_by_bts(struct gprs_ra_id *raid, struct gsm_bts *bts);
Harald Welted12b0fd2009-12-15 21:36:05 +0100838struct gsm_meas_rep *lchan_next_meas_rep(struct gsm_lchan *lchan);
839
Harald Weltef3d8e922010-06-14 22:44:42 +0200840int gsm_btsmodel_set_feature(struct gsm_bts_model *model, enum gsm_bts_features feat);
841int gsm_bts_has_feature(struct gsm_bts *bts, enum gsm_bts_features feat);
Harald Weltefbda4e12010-03-04 11:04:52 +0100842int gsm_bts_model_register(struct gsm_bts_model *model);
843
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800844struct gsm_subscriber_connection *subscr_con_allocate(struct gsm_lchan *lchan);
845void subscr_con_free(struct gsm_subscriber_connection *conn);
846
Harald Welte52b1f982008-12-23 20:25:15 +0000847#endif