blob: 3dd7a18c2d2c15bc1a65704cb0ff085a981998eb [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
Harald Welte4bfdfe72009-06-10 23:11:52 +08006enum gsm_phys_chan_config {
7 GSM_PCHAN_NONE,
8 GSM_PCHAN_CCCH,
9 GSM_PCHAN_CCCH_SDCCH4,
10 GSM_PCHAN_TCH_F,
11 GSM_PCHAN_TCH_H,
12 GSM_PCHAN_SDCCH8_SACCH8C,
Harald Weltea1499d02009-10-24 10:25:50 +020013 GSM_PCHAN_PDCH, /* GPRS PDCH */
14 GSM_PCHAN_TCH_F_PDCH, /* TCH/F if used, PDCH otherwise */
Harald Welte4bfdfe72009-06-10 23:11:52 +080015 GSM_PCHAN_UNKNOWN,
16};
17
18enum gsm_chan_t {
19 GSM_LCHAN_NONE,
20 GSM_LCHAN_SDCCH,
21 GSM_LCHAN_TCH_F,
22 GSM_LCHAN_TCH_H,
23 GSM_LCHAN_UNKNOWN,
24};
25
Harald Welteeab84a12009-12-13 10:53:12 +010026/* RRLP mode of operation */
27enum rrlp_mode {
28 RRLP_MODE_NONE,
29 RRLP_MODE_MS_BASED,
30 RRLP_MODE_MS_PREF,
31 RRLP_MODE_ASS_PREF,
32};
Harald Welte4bfdfe72009-06-10 23:11:52 +080033
34/* Channel Request reason */
35enum gsm_chreq_reason_t {
36 GSM_CHREQ_REASON_EMERG,
37 GSM_CHREQ_REASON_PAG,
38 GSM_CHREQ_REASON_CALL,
39 GSM_CHREQ_REASON_LOCATION_UPD,
40 GSM_CHREQ_REASON_OTHER,
41};
42
Harald Weltedfe6c7d2010-02-20 16:24:02 +010043#include <osmocore/timer.h>
Holger Freyther1adb4ff2009-02-04 00:04:52 +000044#include <openbsc/gsm_04_08.h>
Harald Welte9943c5b2009-07-29 15:41:29 +020045#include <openbsc/abis_rsl.h>
Harald Welte4bfdfe72009-06-10 23:11:52 +080046#include <openbsc/mncc.h>
Harald Weltedfe6c7d2010-02-20 16:24:02 +010047#include <osmocore/tlv.h>
48#include <osmocore/bitvec.h>
49#include <osmocore/statistics.h>
50#include <osmocore/gsm_utils.h>
51#include <osmocore/utils.h>
Harald Welte8470bf22008-12-25 23:28:35 +000052
Harald Welte85770c72009-01-18 17:47:32 +000053#define TRX_NR_TS 8
Harald Welte8470bf22008-12-25 23:28:35 +000054#define TS_MAX_LCHAN 8
Harald Welte52b1f982008-12-23 20:25:15 +000055
56#define HARDCODED_ARFCN 123
Harald Welte02b0e092009-02-28 13:11:07 +000057#define HARDCODED_TSC 7
Harald Welte78f2f502009-05-23 16:56:52 +000058#define HARDCODED_BSIC 0x3f /* NCC = 7 / BCC = 7 */
Harald Welte52b1f982008-12-23 20:25:15 +000059
Harald Welte63589be2009-08-06 17:38:10 +020060/* for multi-drop config */
61#define HARDCODED_BTS0_TS 1
62#define HARDCODED_BTS1_TS 6
63#define HARDCODED_BTS2_TS 11
64
Harald Welte8e1e3ee2009-02-01 13:32:45 +000065enum gsm_hooks {
66 GSM_HOOK_NM_SWLOAD,
Harald Welte0932d1e2009-02-16 22:53:52 +000067 GSM_HOOK_RR_PAGING,
68};
69
70enum gsm_paging_event {
71 GSM_PAGING_SUCCEEDED,
72 GSM_PAGING_EXPIRED,
Holger Freyther85a7b362009-04-18 13:48:55 +020073 GSM_PAGING_OOM,
Harald Welte8e1e3ee2009-02-01 13:32:45 +000074};
75
Harald Welte4511d892010-04-18 15:51:20 +020076enum bts_gprs_mode {
77 BTS_GPRS_NONE = 0,
78 BTS_GPRS_GPRS = 1,
79 BTS_GPRS_EGPRS = 2,
80};
81
Harald Welte0809d792010-04-30 14:36:25 +020082/* the data structure stored in msgb->cb for openbsc apps */
83struct openbsc_msgb_cb {
Harald Weltefd3fa1d2010-05-02 09:50:42 +020084 unsigned char *bssgph;
85 unsigned char *llch;
Harald Welte44f1c272010-04-30 19:54:29 +020086
Harald Weltee6afd602010-05-02 11:19:37 +020087 /* Identifiers of a BTS, equal to 'struct bssgp_bts_ctx' */
Harald Welte44f1c272010-04-30 19:54:29 +020088 u_int16_t nsei;
89 u_int16_t bvci;
90
Harald Weltee6afd602010-05-02 11:19:37 +020091 /* Identifier of a MS (inside BTS), equal to 'struct sgsn_mm_ctx' */
Harald Welte0809d792010-04-30 14:36:25 +020092 u_int32_t tlli;
Harald Welte44f1c272010-04-30 19:54:29 +020093} __attribute__((packed));
Harald Welte0809d792010-04-30 14:36:25 +020094#define OBSC_MSGB_CB(__msgb) ((struct openbsc_msgb_cb *)&((__msgb)->cb[0]))
Harald Welte943c5bc2010-04-30 16:33:12 +020095#define msgb_tlli(__x) OBSC_MSGB_CB(__x)->tlli
Harald Welte44f1c272010-04-30 19:54:29 +020096#define msgb_nsei(__x) OBSC_MSGB_CB(__x)->nsei
97#define msgb_bvci(__x) OBSC_MSGB_CB(__x)->bvci
Harald Weltefd3fa1d2010-05-02 09:50:42 +020098#define msgb_gmmh(__x) (__x)->l3h
99#define msgb_bssgph(__x) OBSC_MSGB_CB(__x)->bssgph
100#define msgb_llch(__x) OBSC_MSGB_CB(__x)->llch
Harald Welte0809d792010-04-30 14:36:25 +0200101
Harald Welte8e1e3ee2009-02-01 13:32:45 +0000102struct msgb;
103typedef int gsm_cbfn(unsigned int hooknum,
104 unsigned int event,
105 struct msgb *msg,
106 void *data, void *param);
107
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000108/*
109 * Use the channel. As side effect the lchannel recycle timer
110 * will be started.
111 */
Harald Welteb9c758b2009-07-05 14:02:46 +0200112#define LCHAN_RELEASE_TIMEOUT 20, 0
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100113#define use_subscr_con(con) \
114 do { (con)->use_count++; \
Harald Welted0c19142009-12-24 11:46:44 +0100115 DEBUGP(DREF, "lchan (bts=%d,trx=%d,ts=%d,ch=%d) increases usage to: %d\n", \
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100116 (con)->lchan->ts->trx->bts->nr, (con)->lchan->ts->trx->nr, (con)->lchan->ts->nr, \
117 (con)->lchan->nr, (con)->use_count); \
118 bsc_schedule_timer(&(con)->release_timer, LCHAN_RELEASE_TIMEOUT); } while(0);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000119
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100120#define put_subscr_con(con) \
121 do { (con)->use_count--; \
Harald Welted0c19142009-12-24 11:46:44 +0100122 DEBUGP(DREF, "lchan (bts=%d,trx=%d,ts=%d,ch=%d) decreases usage to: %d\n", \
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100123 (con)->lchan->ts->trx->bts->nr, (con)->lchan->ts->trx->nr, (con)->lchan->ts->nr, \
124 (con)->lchan->nr, (con)->use_count); \
Holger Freyther4f584c32009-06-02 02:55:07 +0000125 } while(0);
126
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000127
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};
148
149
Harald Welte49f48b82009-02-17 15:29:33 +0000150struct gsm_lchan;
151struct gsm_subscriber;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800152struct gsm_mncc;
Harald Welte805f6442009-07-28 18:25:29 +0200153struct rtp_socket;
Harald Welte49f48b82009-02-17 15:29:33 +0000154
Harald Weltebbcc7a52009-02-14 19:45:44 +0000155/* Network Management State */
156struct gsm_nm_state {
157 u_int8_t operational;
158 u_int8_t administrative;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000159 u_int8_t availability;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000160};
Harald Weltebbcc7a52009-02-14 19:45:44 +0000161
Holger Freyther73487a22008-12-31 18:53:57 +0000162/*
163 * LOCATION UPDATING REQUEST state
164 *
165 * Our current operation is:
166 * - Get imei/tmsi
167 * - Accept/Reject according to global policy
168 */
169struct gsm_loc_updating_operation {
170 struct timer_list updating_timer;
Holger Hans Peter Freyther251aa912009-10-27 10:42:28 +0100171 unsigned int waiting_for_imsi : 1;
172 unsigned int waiting_for_imei : 1;
Holger Freyther73487a22008-12-31 18:53:57 +0000173};
174
Harald Weltef7c28b02009-12-21 13:30:17 +0100175/* Maximum number of neighbor cells whose average we track */
176#define MAX_NEIGH_MEAS 10
177/* Maximum size of the averaging window for neighbor cells */
178#define MAX_WIN_NEIGH_AVG 10
179
180/* processed neighbor measurements for one cell */
181struct neigh_meas_proc {
182 u_int16_t arfcn;
183 u_int8_t bsic;
184 u_int8_t rxlev[MAX_WIN_NEIGH_AVG];
185 unsigned int rxlev_cnt;
186 u_int8_t last_seen_nr;
187};
188
Harald Welte08d91a52009-08-30 15:37:11 +0900189#define MAX_A5_KEY_LEN (128/8)
190#define RSL_ENC_ALG_A5(x) (x+1)
191
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100192/* is the data link established? who established it? */
193#define LCHAN_SAPI_UNUSED 0
194#define LCHAN_SAPI_MS 1
195#define LCHAN_SAPI_NET 2
196
Harald Welteb8bfc562009-12-21 13:27:11 +0100197/* state of a logical channel */
198enum gsm_lchan_state {
199 LCHAN_S_NONE, /* channel is not active */
Harald Welte (local)3e460312009-12-27 18:12:29 +0100200 LCHAN_S_ACT_REQ, /* channel activatin requested */
Harald Welteb8bfc562009-12-21 13:27:11 +0100201 LCHAN_S_ACTIVE, /* channel is active and operational */
Harald Welte8e93b792009-12-29 10:44:17 +0100202 LCHAN_S_REL_REQ, /* channel release has been requested */
Harald Welteb8bfc562009-12-21 13:27:11 +0100203 LCHAN_S_INACTIVE, /* channel is set inactive */
204};
205
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100206/* the per subscriber data for lchan */
207struct gsm_subscriber_connection {
208 /* To whom we are allocated at the moment */
209 struct gsm_subscriber *subscr;
210
211 /* Timer started to release the channel */
212 struct timer_list release_timer;
213
214 /*
215 * Operations that have a state and might be pending
216 */
217 struct gsm_loc_updating_operation *loc_operation;
218
219 /* use count. how many users use this channel */
220 unsigned int use_count;
221
222 /* Are we part of a special "silent" call */
223 int silent_call;
224
Holger Hans Peter Freyther18b63f42010-03-23 07:52:17 +0100225 /* back pointers */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100226 struct gsm_lchan *lchan;
Holger Hans Peter Freyther18b63f42010-03-23 07:52:17 +0100227 struct gsm_bts *bts;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100228};
229
Harald Welte8470bf22008-12-25 23:28:35 +0000230struct gsm_lchan {
231 /* The TS that we're part of */
232 struct gsm_bts_trx_ts *ts;
233 /* The logical subslot number in the TS */
234 u_int8_t nr;
Harald Welte45b407a2009-05-23 15:51:12 +0000235 /* The logical channel type */
Harald Welte8470bf22008-12-25 23:28:35 +0000236 enum gsm_chan_t type;
Harald Welte9943c5b2009-07-29 15:41:29 +0200237 /* RSL channel mode */
238 enum rsl_cmod_spd rsl_cmode;
Harald Welte45b407a2009-05-23 15:51:12 +0000239 /* If TCH, traffic channel mode */
Harald Welte9943c5b2009-07-29 15:41:29 +0200240 enum gsm48_chan_mode tch_mode;
Harald Welteb8bfc562009-12-21 13:27:11 +0100241 /* State */
242 enum gsm_lchan_state state;
Harald Welted4c9bf32009-02-15 16:56:18 +0000243 /* Power levels for MS and BTS */
244 u_int8_t bs_power;
245 u_int8_t ms_power;
Harald Welte08d91a52009-08-30 15:37:11 +0900246 /* Encryption information */
247 struct {
248 u_int8_t alg_id;
249 u_int8_t key_len;
250 u_int8_t key[MAX_A5_KEY_LEN];
251 } encr;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100252
253 struct timer_list T3101;
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +0100254
255 /* AMR bits */
256 struct gsm48_multi_rate_conf mr_conf;
Harald Welted4c9bf32009-02-15 16:56:18 +0000257
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100258 /* Established data link layer services */
259 u_int8_t sapis[8];
260
Harald Welted12b0fd2009-12-15 21:36:05 +0100261 /* cache of last measurement reports on this lchan */
262 struct gsm_meas_rep meas_rep[6];
263 int meas_rep_idx;
264
Harald Weltef7c28b02009-12-21 13:30:17 +0100265 /* table of neighbor cell measurements */
266 struct neigh_meas_proc neigh_meas[MAX_NEIGH_MEAS];
267
Harald Welte2c828992009-12-02 01:56:49 +0530268 struct {
269 u_int32_t bound_ip;
Harald Welte5e3d91b2009-12-19 16:42:06 +0100270 u_int32_t connect_ip;
Harald Welte2c828992009-12-02 01:56:49 +0530271 u_int16_t bound_port;
Harald Welte5e3d91b2009-12-19 16:42:06 +0100272 u_int16_t connect_port;
Harald Welte2c828992009-12-02 01:56:49 +0530273 u_int16_t conn_id;
Sylvain Munautb54dda42009-12-20 22:06:40 +0100274 u_int8_t rtp_payload;
Harald Welte5e3d91b2009-12-19 16:42:06 +0100275 u_int8_t rtp_payload2;
276 u_int8_t speech_mode;
Harald Welte2c828992009-12-02 01:56:49 +0530277 struct rtp_socket *rtp_socket;
278 } abis_ip;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100279
280 struct gsm_subscriber_connection conn;
Harald Welte8470bf22008-12-25 23:28:35 +0000281};
282
Harald Welte85770c72009-01-18 17:47:32 +0000283struct gsm_e1_subslot {
284 /* Number of E1 link */
285 u_int8_t e1_nr;
286 /* Number of E1 TS inside E1 link */
287 u_int8_t e1_ts;
288 /* Sub-slot within the E1 TS, 0xff if full TS */
289 u_int8_t e1_ts_ss;
290};
291
Harald Welte4563eab2010-03-28 14:42:09 +0800292#define TS_F_PDCH_MODE 0x1000
Harald Welte52b1f982008-12-23 20:25:15 +0000293/* One Timeslot in a TRX */
294struct gsm_bts_trx_ts {
295 struct gsm_bts_trx *trx;
296 /* number of this timeslot at the TRX */
297 u_int8_t nr;
298
Harald Welte8470bf22008-12-25 23:28:35 +0000299 enum gsm_phys_chan_config pchan;
300
Harald Welte52b1f982008-12-23 20:25:15 +0000301 unsigned int flags;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000302 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200303 struct tlv_parsed nm_attr;
Harald Welte39c7deb2009-08-09 21:49:48 +0200304 u_int8_t nm_chan_comb;
Harald Welte8470bf22008-12-25 23:28:35 +0000305
Harald Welte85770c72009-01-18 17:47:32 +0000306 /* To which E1 subslot are we connected */
307 struct gsm_e1_subslot e1_link;
308
Harald Welte8470bf22008-12-25 23:28:35 +0000309 struct gsm_lchan lchan[TS_MAX_LCHAN];
Harald Welte52b1f982008-12-23 20:25:15 +0000310};
311
312/* One TRX in a BTS */
313struct gsm_bts_trx {
Harald Weltee441d9c2009-06-21 16:17:15 +0200314 /* list header in bts->trx_list */
315 struct llist_head list;
316
Harald Welte52b1f982008-12-23 20:25:15 +0000317 struct gsm_bts *bts;
318 /* number of this TRX in the BTS */
319 u_int8_t nr;
Harald Welte1fa60c82009-02-09 18:13:26 +0000320 /* how do we talk RSL with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200321 struct gsm_e1_subslot rsl_e1_link;
322 u_int8_t rsl_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000323 struct e1inp_sign_link *rsl_link;
Harald Welte42581822009-08-08 16:12:58 +0200324
Harald Weltebbcc7a52009-02-14 19:45:44 +0000325 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200326 struct tlv_parsed nm_attr;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000327 struct {
328 struct gsm_nm_state nm_state;
329 } bb_transc;
Harald Welte52b1f982008-12-23 20:25:15 +0000330
331 u_int16_t arfcn;
Harald Weltefcd24452009-06-20 18:15:19 +0200332 int nominal_power; /* in dBm */
333 unsigned int max_power_red; /* in actual dB */
Harald Welte8b697c72009-06-05 19:18:45 +0000334
335 union {
336 struct {
337 struct {
338 struct gsm_nm_state nm_state;
339 } bbsig;
340 struct {
341 struct gsm_nm_state nm_state;
342 } pa;
343 } bs11;
344 };
Harald Welte85770c72009-01-18 17:47:32 +0000345 struct gsm_bts_trx_ts ts[TRX_NR_TS];
Harald Welte52b1f982008-12-23 20:25:15 +0000346};
347
Harald Welte978cb422009-01-18 17:57:27 +0000348enum gsm_bts_type {
349 GSM_BTS_TYPE_UNKNOWN,
350 GSM_BTS_TYPE_BS11,
Mike Habene2d82272009-10-02 12:19:34 +0100351 GSM_BTS_TYPE_NANOBTS,
Harald Welte978cb422009-01-18 17:57:27 +0000352};
353
Harald Welte39315c42010-01-10 18:01:52 +0100354struct gsm_bts_model {
355 struct llist_head list;
356
357 enum gsm_bts_type type;
358 const char *name;
359
360 struct tlv_definition nm_att_tlvdef;
361};
362
Holger Freytherceb59b72009-02-06 18:54:00 +0000363/**
364 * A pending paging request
365 */
366struct gsm_paging_request {
Harald Welte0932d1e2009-02-16 22:53:52 +0000367 /* list_head for list of all paging requests */
Holger Freytherceb59b72009-02-06 18:54:00 +0000368 struct llist_head entry;
Harald Welte0932d1e2009-02-16 22:53:52 +0000369 /* the subscriber which we're paging. Later gsm_paging_request
370 * should probably become a part of the gsm_subscriber struct? */
Holger Freytherceb59b72009-02-06 18:54:00 +0000371 struct gsm_subscriber *subscr;
Harald Welte0932d1e2009-02-16 22:53:52 +0000372 /* back-pointer to the BTS on which we are paging */
Holger Freytherceb59b72009-02-06 18:54:00 +0000373 struct gsm_bts *bts;
Harald Welte0932d1e2009-02-16 22:53:52 +0000374 /* what kind of channel type do we ask the MS to establish */
Holger Freytherceb59b72009-02-06 18:54:00 +0000375 int chan_type;
Harald Weltecd06bfb2009-02-10 17:33:56 +0000376
377 /* Timer 3113: how long do we try to page? */
378 struct timer_list T3113;
Harald Welte0932d1e2009-02-16 22:53:52 +0000379
380 /* callback to be called in case paging completes */
381 gsm_cbfn *cbfn;
382 void *cbfn_param;
Holger Freytherceb59b72009-02-06 18:54:00 +0000383};
384
385/*
386 * This keeps track of the paging status of one BTS. It
387 * includes a number of pending requests, a back pointer
388 * to the gsm_bts, a timer and some more state.
389 */
390struct gsm_bts_paging_state {
Holger Freytherceb59b72009-02-06 18:54:00 +0000391 /* pending requests */
392 struct llist_head pending_requests;
Holger Freytherceb59b72009-02-06 18:54:00 +0000393 struct gsm_bts *bts;
394
Harald Welte75a1fa82009-02-17 01:39:41 +0000395 struct timer_list work_timer;
396
Holger Freyther392209c2009-02-10 00:06:19 +0000397 /* load */
398 u_int16_t available_slots;
Holger Freytherceb59b72009-02-06 18:54:00 +0000399};
400
Harald Welte8b697c72009-06-05 19:18:45 +0000401struct gsm_envabtse {
402 struct gsm_nm_state nm_state;
403};
404
Harald Welte55dd4432009-10-24 10:19:14 +0200405struct gsm_bts_gprs_nsvc {
406 struct gsm_bts *bts;
Harald Welteab88a622010-03-18 00:01:23 +0800407 /* data read via VTY config file, to configure the BTS
408 * via OML from BSC */
Harald Welte55dd4432009-10-24 10:19:14 +0200409 int id;
Harald Welte97a282b2010-03-14 15:37:43 +0800410 u_int16_t nsvci;
Harald Welteab88a622010-03-18 00:01:23 +0800411 u_int16_t local_port; /* on the BTS */
412 u_int16_t remote_port; /* on the SGSN */
413 u_int32_t remote_ip; /* on the SGSN */
414
Harald Welte55dd4432009-10-24 10:19:14 +0200415 struct gsm_nm_state nm_state;
416};
417
Harald Welte52b1f982008-12-23 20:25:15 +0000418/* One BTS */
419struct gsm_bts {
Harald Weltee441d9c2009-06-21 16:17:15 +0200420 /* list header in net->bts_list */
421 struct llist_head list;
422
Harald Welte52b1f982008-12-23 20:25:15 +0000423 struct gsm_network *network;
424 /* number of ths BTS in network */
425 u_int8_t nr;
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200426 /* Cell Identity */
427 u_int16_t cell_identity;
Harald Welte52b1f982008-12-23 20:25:15 +0000428 /* location area code of this BTS */
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +0200429 u_int16_t location_area_code;
Harald Welte02b0e092009-02-28 13:11:07 +0000430 /* Training Sequence Code */
431 u_int8_t tsc;
Harald Welte78f2f502009-05-23 16:56:52 +0000432 /* Base Station Identification Code (BSIC) */
433 u_int8_t bsic;
Harald Welte978cb422009-01-18 17:57:27 +0000434 /* type of BTS */
435 enum gsm_bts_type type;
Harald Welte39315c42010-01-10 18:01:52 +0100436 struct gsm_bts_model *model;
Harald Weltefcd24452009-06-20 18:15:19 +0200437 enum gsm_band band;
Harald Weltefc0d9522009-08-10 13:46:55 +0200438 /* should the channel allocator allocate channels from high TRX to TRX0,
439 * rather than starting from TRX0 and go upwards? */
440 int chan_alloc_reverse;
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200441 /* maximum Tx power that the MS is permitted to use in this cell */
442 int ms_max_power;
Harald Weltefc0d9522009-08-10 13:46:55 +0200443
Harald Welte1fa60c82009-02-09 18:13:26 +0000444 /* how do we talk OML with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200445 struct gsm_e1_subslot oml_e1_link;
446 u_int8_t oml_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000447 struct e1inp_sign_link *oml_link;
Harald Welte52b1f982008-12-23 20:25:15 +0000448
449 /* Abis network management O&M handle */
450 struct abis_nm_h *nmh;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000451 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200452 struct tlv_parsed nm_attr;
Harald Welte978cb422009-01-18 17:57:27 +0000453
Harald Welte52b1f982008-12-23 20:25:15 +0000454 /* number of this BTS on given E1 link */
455 u_int8_t bts_nr;
456
Holger Freytherceb59b72009-02-06 18:54:00 +0000457 /* paging state and control */
458 struct gsm_bts_paging_state paging;
459
Harald Welte52b1f982008-12-23 20:25:15 +0000460 /* CCCH is on C0 */
461 struct gsm_bts_trx *c0;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000462
463 struct {
464 struct gsm_nm_state nm_state;
465 } site_mgr;
Harald Welteedb37782009-05-01 14:59:07 +0000466
Harald Weltea43f7892009-12-01 18:04:30 +0530467 /* parameters from which we build SYSTEM INFORMATION */
468 struct {
469 struct gsm48_rach_control rach_control;
470 u_int8_t ncc_permitted;
471 struct gsm48_cell_sel_par cell_sel_par;
472 struct gsm48_cell_options cell_options;
473 struct gsm48_control_channel_descr chan_desc;
Harald Welte6c40def2009-12-14 22:07:14 +0100474 struct bitvec neigh_list;
475 struct bitvec cell_alloc;
476 struct {
477 /* bitmask large enough for all possible ARFCN's */
478 u_int8_t neigh_list[1024/8];
479 u_int8_t cell_alloc[1024/8];
480 } data;
Harald Weltea43f7892009-12-01 18:04:30 +0530481 } si_common;
482
Harald Welteedb37782009-05-01 14:59:07 +0000483 /* ip.accesss Unit ID's have Site/BTS/TRX layout */
Harald Welte7b26bcb2009-05-28 11:39:21 +0000484 union {
485 struct {
486 u_int16_t site_id;
487 u_int16_t bts_id;
Harald Welte88a412a2009-12-16 17:32:37 +0100488 u_int32_t flags;
Harald Welte7b26bcb2009-05-28 11:39:21 +0000489 } ip_access;
490 struct {
491 struct {
492 struct gsm_nm_state nm_state;
493 } cclk;
494 struct {
495 struct gsm_nm_state nm_state;
496 } rack;
Harald Welte8b697c72009-06-05 19:18:45 +0000497 struct gsm_envabtse envabtse[4];
Harald Welte7b26bcb2009-05-28 11:39:21 +0000498 } bs11;
499 };
Harald Welte55dd4432009-10-24 10:19:14 +0200500
501 /* Not entirely sure how ip.access specific this is */
502 struct {
Harald Welte4511d892010-04-18 15:51:20 +0200503 enum bts_gprs_mode mode;
Harald Welte55dd4432009-10-24 10:19:14 +0200504 struct {
505 struct gsm_nm_state nm_state;
Harald Weltea5731cf2010-03-22 11:48:36 +0800506 u_int16_t nsei;
Harald Welte55dd4432009-10-24 10:19:14 +0200507 } nse;
508 struct {
509 struct gsm_nm_state nm_state;
Harald Welte97a282b2010-03-14 15:37:43 +0800510 u_int16_t bvci;
Harald Welte55dd4432009-10-24 10:19:14 +0200511 } cell;
512 struct gsm_bts_gprs_nsvc nsvc[2];
Harald Welte97a282b2010-03-14 15:37:43 +0800513 u_int8_t rac;
Harald Welte55dd4432009-10-24 10:19:14 +0200514 } gprs;
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800515
516 /* RACH NM values */
517 int rach_b_thresh;
518 int rach_ldavg_slots;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000519
Harald Welte52b1f982008-12-23 20:25:15 +0000520 /* transceivers */
521 int num_trx;
Harald Weltee441d9c2009-06-21 16:17:15 +0200522 struct llist_head trx_list;
Harald Welte52b1f982008-12-23 20:25:15 +0000523};
524
Harald Welte24ff6ee2009-12-22 00:41:05 +0100525/* Some statistics of our network */
526struct gsmnet_stats {
527 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100528 struct counter *total;
529 struct counter *no_channel;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100530 } chreq;
531 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100532 struct counter *attempted;
533 struct counter *no_channel; /* no channel available */
534 struct counter *timeout; /* T3103 timeout */
535 struct counter *completed; /* HO COMPL received */
536 struct counter *failed; /* HO FAIL received */
Harald Welte24ff6ee2009-12-22 00:41:05 +0100537 } handover;
538 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100539 struct counter *attach;
540 struct counter *normal;
541 struct counter *periodic;
542 struct counter *detach;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100543 } loc_upd_type;
544 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100545 struct counter *reject;
546 struct counter *accept;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100547 } loc_upd_resp;
548 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100549 struct counter *attempted;
550 struct counter *detached;
551 struct counter *completed;
552 struct counter *expired;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100553 } paging;
554 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100555 struct counter *submitted; /* MO SMS submissions */
556 struct counter *no_receiver;
557 struct counter *delivered; /* MT SMS deliveries */
558 struct counter *rp_err_mem;
559 struct counter *rp_err_other;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100560 } sms;
561 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100562 struct counter *dialled; /* total number of dialled calls */
563 struct counter *alerted; /* we alerted the other end */
564 struct counter *connected;/* how many calls were accepted */
Harald Welte24ff6ee2009-12-22 00:41:05 +0100565 } call;
Holger Hans Peter Freyther3ba36d52010-04-17 06:48:29 +0200566 struct {
567 struct counter *rf_fail;
568 struct counter *rll_err;
569 } chan;
Holger Hans Peter Freytherbb110f92010-04-12 10:45:52 +0200570 struct {
571 struct counter *oml_fail;
572 struct counter *rsl_fail;
573 } bts;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100574};
575
Harald Welte (local)69de3972009-08-12 14:42:23 +0200576enum gsm_auth_policy {
577 GSM_AUTH_POLICY_CLOSED, /* only subscribers authorized in DB */
578 GSM_AUTH_POLICY_ACCEPT_ALL, /* accept everyone, even if not authorized in DB */
579 GSM_AUTH_POLICY_TOKEN, /* accept first, send token per sms, then revoke authorization */
580};
581
Harald Welteb84ddfc2009-12-01 17:36:54 +0530582#define GSM_T3101_DEFAULT 10
583#define GSM_T3113_DEFAULT 60
584
Harald Welte52b1f982008-12-23 20:25:15 +0000585struct gsm_network {
586 /* global parameters */
Harald Welteb84e2f42008-12-28 23:42:04 +0000587 u_int16_t country_code;
588 u_int16_t network_code;
Harald Weltec6ba9c22008-12-30 18:01:02 +0000589 char *name_long;
590 char *name_short;
Harald Welte (local)69de3972009-08-12 14:42:23 +0200591 enum gsm_auth_policy auth_policy;
Harald Welte1085c092009-11-18 20:33:19 +0100592 enum gsm48_reject_value reject_cause;
Harald Welte4381cfe2009-08-30 15:47:06 +0900593 int a5_encryption;
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100594 int neci;
Harald Welte648b6ce2009-12-14 09:00:24 +0100595 int send_mm_info;
Harald Weltebc814502009-12-19 21:41:52 +0100596 struct {
597 int active;
Harald Weltef7c28b02009-12-21 13:30:17 +0100598 /* Window RXLEV averaging */
599 unsigned int win_rxlev_avg; /* number of SACCH frames */
600 /* Window RXQUAL averaging */
601 unsigned int win_rxqual_avg; /* number of SACCH frames */
602 /* Window RXLEV neighbouring cells averaging */
603 unsigned int win_rxlev_avg_neigh; /* number of SACCH frames */
604
605 /* how often should we check for power budget HO */
606 unsigned int pwr_interval; /* SACCH frames */
607 /* how much better does a neighbor cell have to be ? */
608 unsigned int pwr_hysteresis; /* dBm */
609 /* maximum distacne before we try a handover */
610 unsigned int max_distance; /* TA values */
Harald Weltebc814502009-12-19 21:41:52 +0100611 } handover;
Harald Welte52b1f982008-12-23 20:25:15 +0000612
Harald Welte24ff6ee2009-12-22 00:41:05 +0100613 struct gsmnet_stats stats;
614
Harald Welte4bfdfe72009-06-10 23:11:52 +0800615 /* layer 4 */
616 int (*mncc_recv) (struct gsm_network *net, int msg_type, void *arg);
617 struct llist_head upqueue;
618 struct llist_head trans_list;
619
Harald Welte52b1f982008-12-23 20:25:15 +0000620 unsigned int num_bts;
Harald Weltee441d9c2009-06-21 16:17:15 +0200621 struct llist_head bts_list;
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100622
623 /* timer values */
624 int T3101;
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100625 int T3103;
626 int T3105;
627 int T3107;
628 int T3109;
629 int T3111;
630 int T3113;
631 int T3115;
632 int T3117;
633 int T3119;
634 int T3141;
Harald Welteeab84a12009-12-13 10:53:12 +0100635
636 /* Radio Resource Location Protocol (TS 04.31) */
637 struct {
638 enum rrlp_mode mode;
639 } rrlp;
Harald Welte52b1f982008-12-23 20:25:15 +0000640};
641
Harald Welte7e310b12009-03-30 20:56:32 +0000642#define SMS_HDR_SIZE 128
643#define SMS_TEXT_SIZE 256
644struct gsm_sms {
Harald Welted409be72009-11-07 00:06:19 +0900645 unsigned long long id;
Harald Welte7e310b12009-03-30 20:56:32 +0000646 struct gsm_subscriber *sender;
647 struct gsm_subscriber *receiver;
648
Harald Welteb9c758b2009-07-05 14:02:46 +0200649 unsigned long validity_minutes;
Harald Welte76042182009-08-08 16:03:15 +0200650 u_int8_t reply_path_req;
651 u_int8_t status_rep_req;
652 u_int8_t ud_hdr_ind;
653 u_int8_t protocol_id;
654 u_int8_t data_coding_scheme;
655 u_int8_t msg_ref;
656 char dest_addr[20+1]; /* DA LV is 12 bytes max, i.e. 10 bytes
657 * BCD == 20 bytes string */
658 u_int8_t user_data_len;
659 u_int8_t user_data[SMS_TEXT_SIZE];
Harald Weltef3efc592009-07-27 20:11:35 +0200660
Harald Welte7e310b12009-03-30 20:56:32 +0000661 char text[SMS_TEXT_SIZE];
662};
663
Harald Welte3606cc52009-12-05 15:13:22 +0530664
Harald Weltee441d9c2009-06-21 16:17:15 +0200665struct gsm_network *gsm_network_init(u_int16_t country_code, u_int16_t network_code,
Harald Welte4bfdfe72009-06-10 23:11:52 +0800666 int (*mncc_recv)(struct gsm_network *, int, void *));
Harald Weltee441d9c2009-06-21 16:17:15 +0200667struct gsm_bts *gsm_bts_alloc(struct gsm_network *net, enum gsm_bts_type type,
668 u_int8_t tsc, u_int8_t bsic);
669struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts);
Harald Welte39315c42010-01-10 18:01:52 +0100670int gsm_set_bts_type(struct gsm_bts *bts, enum gsm_bts_type type);
Harald Weltee441d9c2009-06-21 16:17:15 +0200671
672struct gsm_bts *gsm_bts_num(struct gsm_network *net, int num);
Harald Welte84874c92009-12-14 22:33:02 +0100673
674/* Get reference to a neighbor cell on a given BCCH ARFCN */
Harald Welte0b121032009-12-15 00:21:31 +0100675struct gsm_bts *gsm_bts_neighbor(const struct gsm_bts *bts,
676 u_int16_t arfcn, u_int8_t bsic);
Harald Welte84874c92009-12-14 22:33:02 +0100677
Harald Weltee441d9c2009-06-21 16:17:15 +0200678struct gsm_bts_trx *gsm_bts_trx_num(struct gsm_bts *bts, int num);
Harald Welte8470bf22008-12-25 23:28:35 +0000679
Harald Weltea72c98e2009-01-04 16:10:38 +0000680const char *gsm_pchan_name(enum gsm_phys_chan_config c);
Harald Welte65da9122009-08-07 00:32:22 +0200681enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
Harald Welte (local)ccd88452009-12-27 18:05:25 +0100682const char *gsm_lchant_name(enum gsm_chan_t c);
Harald Weltea72c98e2009-01-04 16:10:38 +0000683const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Harald Welte (local)d48f4eb2009-12-28 23:14:22 +0100684char *gsm_trx_name(struct gsm_bts_trx *trx);
Harald Welte23a68632009-02-19 17:06:42 +0000685char *gsm_ts_name(struct gsm_bts_trx_ts *ts);
Harald Welte (local)19ef62a2009-12-27 18:16:36 +0100686char *gsm_lchan_name(struct gsm_lchan *lchan);
Harald Welte1887f9d2009-12-29 10:52:38 +0100687const char *gsm_lchans_name(enum gsm_lchan_state s);
Harald Weltea72c98e2009-01-04 16:10:38 +0000688
Harald Weltead384642008-12-26 10:20:07 +0000689enum gsm_e1_event {
690 EVT_E1_NONE,
Harald Welte1fa60c82009-02-09 18:13:26 +0000691 EVT_E1_TEI_UP,
692 EVT_E1_TEI_DN,
Harald Weltead384642008-12-26 10:20:07 +0000693};
694
Harald Weltecd06bfb2009-02-10 17:33:56 +0000695void set_ts_e1link(struct gsm_bts_trx_ts *ts, u_int8_t e1_nr,
696 u_int8_t e1_ts, u_int8_t e1_ts_ss);
Harald Welte1d014a52009-08-08 15:38:29 +0200697enum gsm_bts_type parse_btstype(const char *arg);
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +0200698const char *btstype2str(enum gsm_bts_type type);
Harald Welte6e670aa2010-01-07 20:44:32 +0100699struct gsm_bts_trx *gsm_bts_trx_by_nr(struct gsm_bts *bts, int nr);
Harald Weltebe991492009-05-23 13:56:40 +0000700struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
701 struct gsm_bts *start_bts);
Harald Welte32201c12009-03-10 12:15:10 +0000702
Andreas Eversberg8226fa72009-06-29 15:19:38 +0200703extern void *tall_bsc_ctx;
Harald Weltef88c8a02009-12-20 13:48:15 +0100704extern int ipacc_rtp_direct;
Harald Welte2cf161b2009-06-20 22:36:41 +0200705
Harald Welte32201c12009-03-10 12:15:10 +0000706static inline int is_ipaccess_bts(struct gsm_bts *bts)
707{
708 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +0100709 case GSM_BTS_TYPE_NANOBTS:
Harald Welte32201c12009-03-10 12:15:10 +0000710 return 1;
711 default:
712 break;
713 }
714 return 0;
715}
716
Harald Welte5b570672009-08-10 10:08:01 +0200717static inline int is_siemens_bts(struct gsm_bts *bts)
718{
719 switch (bts->type) {
720 case GSM_BTS_TYPE_BS11:
721 return 1;
722 default:
723 break;
724 }
725
726 return 0;
727}
728
Harald Welte (local)69de3972009-08-12 14:42:23 +0200729
730enum gsm_auth_policy gsm_auth_policy_parse(const char *arg);
731const char *gsm_auth_policy_name(enum gsm_auth_policy policy);
732
Harald Welteeab84a12009-12-13 10:53:12 +0100733enum rrlp_mode rrlp_mode_parse(const char *arg);
734const char *rrlp_mode_name(enum rrlp_mode mode);
735
Harald Welte4511d892010-04-18 15:51:20 +0200736enum bts_gprs_mode bts_gprs_mode_parse(const char *arg);
737const char *bts_gprs_mode_name(enum bts_gprs_mode mode);
738
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +0100739void gsm_trx_lock_rf(struct gsm_bts_trx *trx, int locked);
740
Harald Welte97a282b2010-03-14 15:37:43 +0800741int gsm48_ra_id_by_bts(u_int8_t *buf, struct gsm_bts *bts);
742void gprs_ra_id_by_bts(struct gprs_ra_id *raid, struct gsm_bts *bts);
Harald Welted12b0fd2009-12-15 21:36:05 +0100743struct gsm_meas_rep *lchan_next_meas_rep(struct gsm_lchan *lchan);
744
Harald Weltefbda4e12010-03-04 11:04:52 +0100745int gsm_bts_model_register(struct gsm_bts_model *model);
746
Harald Welte52b1f982008-12-23 20:25:15 +0000747#endif