blob: f4e4d21728942b2b2348702cabe6d3740ccf3523 [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 Welteccda9652009-11-12 22:28:18 +09006struct value_string {
7 unsigned int value;
8 const char *str;
9};
10
11const char *get_value_string(const struct value_string *vs, u_int32_t val);
12
Harald Weltefcd24452009-06-20 18:15:19 +020013enum gsm_band {
14 GSM_BAND_400,
15 GSM_BAND_850,
16 GSM_BAND_900,
17 GSM_BAND_1800,
18 GSM_BAND_1900,
19};
20
Harald Welte4bfdfe72009-06-10 23:11:52 +080021enum gsm_phys_chan_config {
22 GSM_PCHAN_NONE,
23 GSM_PCHAN_CCCH,
24 GSM_PCHAN_CCCH_SDCCH4,
25 GSM_PCHAN_TCH_F,
26 GSM_PCHAN_TCH_H,
27 GSM_PCHAN_SDCCH8_SACCH8C,
Harald Weltea1499d02009-10-24 10:25:50 +020028 GSM_PCHAN_PDCH, /* GPRS PDCH */
29 GSM_PCHAN_TCH_F_PDCH, /* TCH/F if used, PDCH otherwise */
Harald Welte4bfdfe72009-06-10 23:11:52 +080030 GSM_PCHAN_UNKNOWN,
31};
32
33enum gsm_chan_t {
34 GSM_LCHAN_NONE,
35 GSM_LCHAN_SDCCH,
36 GSM_LCHAN_TCH_F,
37 GSM_LCHAN_TCH_H,
38 GSM_LCHAN_UNKNOWN,
39};
40
Harald Welteeab84a12009-12-13 10:53:12 +010041/* RRLP mode of operation */
42enum rrlp_mode {
43 RRLP_MODE_NONE,
44 RRLP_MODE_MS_BASED,
45 RRLP_MODE_MS_PREF,
46 RRLP_MODE_ASS_PREF,
47};
Harald Welte4bfdfe72009-06-10 23:11:52 +080048
49/* Channel Request reason */
50enum gsm_chreq_reason_t {
51 GSM_CHREQ_REASON_EMERG,
52 GSM_CHREQ_REASON_PAG,
53 GSM_CHREQ_REASON_CALL,
54 GSM_CHREQ_REASON_LOCATION_UPD,
55 GSM_CHREQ_REASON_OTHER,
56};
57
Harald Welte255539c2008-12-28 02:26:27 +000058#include <openbsc/timer.h>
Holger Freyther1adb4ff2009-02-04 00:04:52 +000059#include <openbsc/gsm_04_08.h>
Harald Welte9943c5b2009-07-29 15:41:29 +020060#include <openbsc/abis_rsl.h>
Harald Welte4bfdfe72009-06-10 23:11:52 +080061#include <openbsc/mncc.h>
Harald Welte93e9d172009-06-20 19:04:31 +020062#include <openbsc/tlv.h>
Harald Welte6c40def2009-12-14 22:07:14 +010063#include <openbsc/bitvec.h>
Harald Welte255539c2008-12-28 02:26:27 +000064
Harald Welte8470bf22008-12-25 23:28:35 +000065#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
66
Harald Welte85770c72009-01-18 17:47:32 +000067#define TRX_NR_TS 8
Harald Welte8470bf22008-12-25 23:28:35 +000068#define TS_MAX_LCHAN 8
Harald Welte52b1f982008-12-23 20:25:15 +000069
70#define HARDCODED_ARFCN 123
Harald Welte02b0e092009-02-28 13:11:07 +000071#define HARDCODED_TSC 7
Harald Welte78f2f502009-05-23 16:56:52 +000072#define HARDCODED_BSIC 0x3f /* NCC = 7 / BCC = 7 */
Harald Welte52b1f982008-12-23 20:25:15 +000073
Harald Welte63589be2009-08-06 17:38:10 +020074/* for multi-drop config */
75#define HARDCODED_BTS0_TS 1
76#define HARDCODED_BTS1_TS 6
77#define HARDCODED_BTS2_TS 11
78
Harald Welte8e1e3ee2009-02-01 13:32:45 +000079enum gsm_hooks {
80 GSM_HOOK_NM_SWLOAD,
Harald Welte0932d1e2009-02-16 22:53:52 +000081 GSM_HOOK_RR_PAGING,
82};
83
84enum gsm_paging_event {
85 GSM_PAGING_SUCCEEDED,
86 GSM_PAGING_EXPIRED,
Holger Freyther85a7b362009-04-18 13:48:55 +020087 GSM_PAGING_OOM,
Harald Welte8e1e3ee2009-02-01 13:32:45 +000088};
89
90struct msgb;
91typedef int gsm_cbfn(unsigned int hooknum,
92 unsigned int event,
93 struct msgb *msg,
94 void *data, void *param);
95
Holger Freytherc6ea9db2008-12-30 19:18:21 +000096/*
97 * Use the channel. As side effect the lchannel recycle timer
98 * will be started.
99 */
Harald Welteb9c758b2009-07-05 14:02:46 +0200100#define LCHAN_RELEASE_TIMEOUT 20, 0
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000101#define use_lchan(lchan) \
102 do { lchan->use_count++; \
Holger Freyther4f584c32009-06-02 02:55:07 +0000103 DEBUGP(DCC, "lchan (bts=%d,trx=%d,ts=%d,ch=%d) increases usage to: %d\n", \
104 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr, \
105 lchan->nr, lchan->use_count); \
Harald Welteff117a82009-05-23 05:22:08 +0000106 bsc_schedule_timer(&lchan->release_timer, LCHAN_RELEASE_TIMEOUT); } while(0);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000107
108#define put_lchan(lchan) \
Holger Freyther4f584c32009-06-02 02:55:07 +0000109 do { lchan->use_count--; \
110 DEBUGP(DCC, "lchan (bts=%d,trx=%d,ts=%d,ch=%d) decreases usage to: %d\n", \
111 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr, \
112 lchan->nr, lchan->use_count); \
113 } while(0);
114
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000115
Harald Welte52b1f982008-12-23 20:25:15 +0000116/* communications link with a BTS */
117struct gsm_bts_link {
118 struct gsm_bts *bts;
119};
120
Harald Welte49f48b82009-02-17 15:29:33 +0000121struct gsm_lchan;
122struct gsm_subscriber;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800123struct gsm_mncc;
Harald Welte805f6442009-07-28 18:25:29 +0200124struct rtp_socket;
Harald Welte49f48b82009-02-17 15:29:33 +0000125
Harald Weltebbcc7a52009-02-14 19:45:44 +0000126/* Network Management State */
127struct gsm_nm_state {
128 u_int8_t operational;
129 u_int8_t administrative;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000130 u_int8_t availability;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000131};
Harald Weltebbcc7a52009-02-14 19:45:44 +0000132
Holger Freyther73487a22008-12-31 18:53:57 +0000133/*
134 * LOCATION UPDATING REQUEST state
135 *
136 * Our current operation is:
137 * - Get imei/tmsi
138 * - Accept/Reject according to global policy
139 */
140struct gsm_loc_updating_operation {
141 struct timer_list updating_timer;
Holger Hans Peter Freyther251aa912009-10-27 10:42:28 +0100142 unsigned int waiting_for_imsi : 1;
143 unsigned int waiting_for_imei : 1;
Holger Freyther73487a22008-12-31 18:53:57 +0000144};
145
Harald Welte08d91a52009-08-30 15:37:11 +0900146#define MAX_A5_KEY_LEN (128/8)
147#define RSL_ENC_ALG_A5(x) (x+1)
148
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100149/* is the data link established? who established it? */
150#define LCHAN_SAPI_UNUSED 0
151#define LCHAN_SAPI_MS 1
152#define LCHAN_SAPI_NET 2
153
Harald Welte8470bf22008-12-25 23:28:35 +0000154struct gsm_lchan {
155 /* The TS that we're part of */
156 struct gsm_bts_trx_ts *ts;
157 /* The logical subslot number in the TS */
158 u_int8_t nr;
Harald Welte45b407a2009-05-23 15:51:12 +0000159 /* The logical channel type */
Harald Welte8470bf22008-12-25 23:28:35 +0000160 enum gsm_chan_t type;
Harald Welte9943c5b2009-07-29 15:41:29 +0200161 /* RSL channel mode */
162 enum rsl_cmod_spd rsl_cmode;
Harald Welte45b407a2009-05-23 15:51:12 +0000163 /* If TCH, traffic channel mode */
Harald Welte9943c5b2009-07-29 15:41:29 +0200164 enum gsm48_chan_mode tch_mode;
Harald Welted4c9bf32009-02-15 16:56:18 +0000165 /* Power levels for MS and BTS */
166 u_int8_t bs_power;
167 u_int8_t ms_power;
Harald Welte08d91a52009-08-30 15:37:11 +0900168 /* Encryption information */
169 struct {
170 u_int8_t alg_id;
171 u_int8_t key_len;
172 u_int8_t key[MAX_A5_KEY_LEN];
173 } encr;
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +0100174
175 /* AMR bits */
176 struct gsm48_multi_rate_conf mr_conf;
Harald Welted4c9bf32009-02-15 16:56:18 +0000177
Harald Welte8470bf22008-12-25 23:28:35 +0000178 /* To whom we are allocated at the moment */
179 struct gsm_subscriber *subscr;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000180
181 /* Timer started to release the channel */
182 struct timer_list release_timer;
Harald Weltea3d04382008-12-27 17:02:56 +0000183
Harald Welteb7e81162009-08-10 00:26:10 +0200184 struct timer_list T3101;
185
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100186 /* Established data link layer services */
187 u_int8_t sapis[8];
188
Holger Freyther73487a22008-12-31 18:53:57 +0000189 /*
190 * Operations that have a state and might be pending
191 */
192 struct gsm_loc_updating_operation *loc_operation;
193
Holger Freytherb7193e42008-12-29 17:44:08 +0000194 /* use count. how many users use this channel */
195 unsigned int use_count;
Harald Welte2c828992009-12-02 01:56:49 +0530196
Harald Welted12b0fd2009-12-15 21:36:05 +0100197 /* cache of last measurement reports on this lchan */
198 struct gsm_meas_rep meas_rep[6];
199 int meas_rep_idx;
200
Harald Welte2c828992009-12-02 01:56:49 +0530201 struct {
202 u_int32_t bound_ip;
Harald Welte5e3d91b2009-12-19 16:42:06 +0100203 u_int32_t connect_ip;
Harald Welte2c828992009-12-02 01:56:49 +0530204 u_int16_t bound_port;
Harald Welte5e3d91b2009-12-19 16:42:06 +0100205 u_int16_t connect_port;
Harald Welte2c828992009-12-02 01:56:49 +0530206 u_int16_t conn_id;
Harald Welte5e3d91b2009-12-19 16:42:06 +0100207 u_int8_t rtp_payload2;
208 u_int8_t speech_mode;
Harald Welte2c828992009-12-02 01:56:49 +0530209 struct rtp_socket *rtp_socket;
210 } abis_ip;
Harald Welte8470bf22008-12-25 23:28:35 +0000211};
212
Harald Welte85770c72009-01-18 17:47:32 +0000213struct gsm_e1_subslot {
214 /* Number of E1 link */
215 u_int8_t e1_nr;
216 /* Number of E1 TS inside E1 link */
217 u_int8_t e1_ts;
218 /* Sub-slot within the E1 TS, 0xff if full TS */
219 u_int8_t e1_ts_ss;
220};
221
Harald Welte52b1f982008-12-23 20:25:15 +0000222#define BTS_TRX_F_ACTIVATED 0x0001
223/* One Timeslot in a TRX */
224struct gsm_bts_trx_ts {
225 struct gsm_bts_trx *trx;
226 /* number of this timeslot at the TRX */
227 u_int8_t nr;
228
Harald Welte8470bf22008-12-25 23:28:35 +0000229 enum gsm_phys_chan_config pchan;
230
Harald Welte52b1f982008-12-23 20:25:15 +0000231 unsigned int flags;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000232 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200233 struct tlv_parsed nm_attr;
Harald Welte39c7deb2009-08-09 21:49:48 +0200234 u_int8_t nm_chan_comb;
Harald Welte8470bf22008-12-25 23:28:35 +0000235
Harald Welte85770c72009-01-18 17:47:32 +0000236 /* To which E1 subslot are we connected */
237 struct gsm_e1_subslot e1_link;
238
Harald Welte8470bf22008-12-25 23:28:35 +0000239 struct gsm_lchan lchan[TS_MAX_LCHAN];
Harald Welte52b1f982008-12-23 20:25:15 +0000240};
241
242/* One TRX in a BTS */
243struct gsm_bts_trx {
Harald Weltee441d9c2009-06-21 16:17:15 +0200244 /* list header in bts->trx_list */
245 struct llist_head list;
246
Harald Welte52b1f982008-12-23 20:25:15 +0000247 struct gsm_bts *bts;
248 /* number of this TRX in the BTS */
249 u_int8_t nr;
Harald Welte1fa60c82009-02-09 18:13:26 +0000250 /* how do we talk RSL with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200251 struct gsm_e1_subslot rsl_e1_link;
252 u_int8_t rsl_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000253 struct e1inp_sign_link *rsl_link;
Harald Welte42581822009-08-08 16:12:58 +0200254
Harald Weltebbcc7a52009-02-14 19:45:44 +0000255 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200256 struct tlv_parsed nm_attr;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000257 struct {
258 struct gsm_nm_state nm_state;
259 } bb_transc;
Harald Welte52b1f982008-12-23 20:25:15 +0000260
261 u_int16_t arfcn;
Harald Weltefcd24452009-06-20 18:15:19 +0200262 int nominal_power; /* in dBm */
263 unsigned int max_power_red; /* in actual dB */
Harald Welte8b697c72009-06-05 19:18:45 +0000264
265 union {
266 struct {
267 struct {
268 struct gsm_nm_state nm_state;
269 } bbsig;
270 struct {
271 struct gsm_nm_state nm_state;
272 } pa;
273 } bs11;
274 };
Harald Welte85770c72009-01-18 17:47:32 +0000275 struct gsm_bts_trx_ts ts[TRX_NR_TS];
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +0100276
277 /* NM state */
278 int rf_locked;
Harald Welte52b1f982008-12-23 20:25:15 +0000279};
280
Harald Welte978cb422009-01-18 17:57:27 +0000281enum gsm_bts_type {
282 GSM_BTS_TYPE_UNKNOWN,
283 GSM_BTS_TYPE_BS11,
Mike Habene2d82272009-10-02 12:19:34 +0100284 GSM_BTS_TYPE_NANOBTS,
Harald Welte978cb422009-01-18 17:57:27 +0000285};
286
Holger Freytherceb59b72009-02-06 18:54:00 +0000287/**
288 * A pending paging request
289 */
290struct gsm_paging_request {
Harald Welte0932d1e2009-02-16 22:53:52 +0000291 /* list_head for list of all paging requests */
Holger Freytherceb59b72009-02-06 18:54:00 +0000292 struct llist_head entry;
Harald Welte0932d1e2009-02-16 22:53:52 +0000293 /* the subscriber which we're paging. Later gsm_paging_request
294 * should probably become a part of the gsm_subscriber struct? */
Holger Freytherceb59b72009-02-06 18:54:00 +0000295 struct gsm_subscriber *subscr;
Harald Welte0932d1e2009-02-16 22:53:52 +0000296 /* back-pointer to the BTS on which we are paging */
Holger Freytherceb59b72009-02-06 18:54:00 +0000297 struct gsm_bts *bts;
Harald Welte0932d1e2009-02-16 22:53:52 +0000298 /* what kind of channel type do we ask the MS to establish */
Holger Freytherceb59b72009-02-06 18:54:00 +0000299 int chan_type;
Harald Weltecd06bfb2009-02-10 17:33:56 +0000300
301 /* Timer 3113: how long do we try to page? */
302 struct timer_list T3113;
Harald Welte0932d1e2009-02-16 22:53:52 +0000303
304 /* callback to be called in case paging completes */
305 gsm_cbfn *cbfn;
306 void *cbfn_param;
Holger Freytherceb59b72009-02-06 18:54:00 +0000307};
308
309/*
310 * This keeps track of the paging status of one BTS. It
311 * includes a number of pending requests, a back pointer
312 * to the gsm_bts, a timer and some more state.
313 */
314struct gsm_bts_paging_state {
Holger Freytherceb59b72009-02-06 18:54:00 +0000315 /* pending requests */
316 struct llist_head pending_requests;
317 struct gsm_paging_request *last_request;
318 struct gsm_bts *bts;
319
Harald Welte75a1fa82009-02-17 01:39:41 +0000320 struct timer_list work_timer;
321
Holger Freyther392209c2009-02-10 00:06:19 +0000322 /* load */
323 u_int16_t available_slots;
Holger Freytherceb59b72009-02-06 18:54:00 +0000324};
325
Harald Welte8b697c72009-06-05 19:18:45 +0000326struct gsm_envabtse {
327 struct gsm_nm_state nm_state;
328};
329
Harald Welte55dd4432009-10-24 10:19:14 +0200330struct gsm_bts_gprs_nsvc {
331 struct gsm_bts *bts;
332 int id;
333 struct gsm_nm_state nm_state;
334};
335
Harald Welte52b1f982008-12-23 20:25:15 +0000336/* One BTS */
337struct gsm_bts {
Harald Weltee441d9c2009-06-21 16:17:15 +0200338 /* list header in net->bts_list */
339 struct llist_head list;
340
Harald Welte52b1f982008-12-23 20:25:15 +0000341 struct gsm_network *network;
342 /* number of ths BTS in network */
343 u_int8_t nr;
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200344 /* Cell Identity */
345 u_int16_t cell_identity;
Harald Welte52b1f982008-12-23 20:25:15 +0000346 /* location area code of this BTS */
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +0200347 u_int16_t location_area_code;
Harald Welte02b0e092009-02-28 13:11:07 +0000348 /* Training Sequence Code */
349 u_int8_t tsc;
Harald Welte78f2f502009-05-23 16:56:52 +0000350 /* Base Station Identification Code (BSIC) */
351 u_int8_t bsic;
Harald Welte978cb422009-01-18 17:57:27 +0000352 /* type of BTS */
353 enum gsm_bts_type type;
Harald Weltefcd24452009-06-20 18:15:19 +0200354 enum gsm_band band;
Harald Weltefc0d9522009-08-10 13:46:55 +0200355 /* should the channel allocator allocate channels from high TRX to TRX0,
356 * rather than starting from TRX0 and go upwards? */
357 int chan_alloc_reverse;
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200358 int cell_barred;
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200359 /* maximum Tx power that the MS is permitted to use in this cell */
360 int ms_max_power;
Harald Weltefc0d9522009-08-10 13:46:55 +0200361
Harald Welte1fa60c82009-02-09 18:13:26 +0000362 /* how do we talk OML with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200363 struct gsm_e1_subslot oml_e1_link;
364 u_int8_t oml_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000365 struct e1inp_sign_link *oml_link;
Harald Welte52b1f982008-12-23 20:25:15 +0000366
367 /* Abis network management O&M handle */
368 struct abis_nm_h *nmh;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000369 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200370 struct tlv_parsed nm_attr;
Harald Welte978cb422009-01-18 17:57:27 +0000371
Harald Welte52b1f982008-12-23 20:25:15 +0000372 /* number of this BTS on given E1 link */
373 u_int8_t bts_nr;
374
Holger Freytherceb59b72009-02-06 18:54:00 +0000375 /* paging state and control */
376 struct gsm_bts_paging_state paging;
377
Harald Welte52b1f982008-12-23 20:25:15 +0000378 /* CCCH is on C0 */
379 struct gsm_bts_trx *c0;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000380
381 struct {
382 struct gsm_nm_state nm_state;
383 } site_mgr;
Harald Welteedb37782009-05-01 14:59:07 +0000384
Harald Weltea43f7892009-12-01 18:04:30 +0530385 /* parameters from which we build SYSTEM INFORMATION */
386 struct {
387 struct gsm48_rach_control rach_control;
388 u_int8_t ncc_permitted;
389 struct gsm48_cell_sel_par cell_sel_par;
390 struct gsm48_cell_options cell_options;
391 struct gsm48_control_channel_descr chan_desc;
Harald Welte6c40def2009-12-14 22:07:14 +0100392 struct bitvec neigh_list;
393 struct bitvec cell_alloc;
394 struct {
395 /* bitmask large enough for all possible ARFCN's */
396 u_int8_t neigh_list[1024/8];
397 u_int8_t cell_alloc[1024/8];
398 } data;
Harald Weltea43f7892009-12-01 18:04:30 +0530399 } si_common;
400
Harald Welteedb37782009-05-01 14:59:07 +0000401 /* ip.accesss Unit ID's have Site/BTS/TRX layout */
Harald Welte7b26bcb2009-05-28 11:39:21 +0000402 union {
403 struct {
404 u_int16_t site_id;
405 u_int16_t bts_id;
Harald Welte88a412a2009-12-16 17:32:37 +0100406 u_int32_t flags;
Harald Welte7b26bcb2009-05-28 11:39:21 +0000407 } ip_access;
408 struct {
409 struct {
410 struct gsm_nm_state nm_state;
411 } cclk;
412 struct {
413 struct gsm_nm_state nm_state;
414 } rack;
Harald Welte8b697c72009-06-05 19:18:45 +0000415 struct gsm_envabtse envabtse[4];
Harald Welte7b26bcb2009-05-28 11:39:21 +0000416 } bs11;
417 };
Harald Welte55dd4432009-10-24 10:19:14 +0200418
419 /* Not entirely sure how ip.access specific this is */
420 struct {
421 struct {
422 struct gsm_nm_state nm_state;
423 } nse;
424 struct {
425 struct gsm_nm_state nm_state;
426 } cell;
427 struct gsm_bts_gprs_nsvc nsvc[2];
428 } gprs;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000429
Harald Welte52b1f982008-12-23 20:25:15 +0000430 /* transceivers */
431 int num_trx;
Harald Weltee441d9c2009-06-21 16:17:15 +0200432 struct llist_head trx_list;
Harald Welte52b1f982008-12-23 20:25:15 +0000433};
434
Harald Welte (local)69de3972009-08-12 14:42:23 +0200435enum gsm_auth_policy {
436 GSM_AUTH_POLICY_CLOSED, /* only subscribers authorized in DB */
437 GSM_AUTH_POLICY_ACCEPT_ALL, /* accept everyone, even if not authorized in DB */
438 GSM_AUTH_POLICY_TOKEN, /* accept first, send token per sms, then revoke authorization */
439};
440
Harald Welteb84ddfc2009-12-01 17:36:54 +0530441#define GSM_T3101_DEFAULT 10
442#define GSM_T3113_DEFAULT 60
443
Harald Welte52b1f982008-12-23 20:25:15 +0000444struct gsm_network {
445 /* global parameters */
Harald Welteb84e2f42008-12-28 23:42:04 +0000446 u_int16_t country_code;
447 u_int16_t network_code;
Harald Weltec6ba9c22008-12-30 18:01:02 +0000448 char *name_long;
449 char *name_short;
Harald Welte (local)69de3972009-08-12 14:42:23 +0200450 enum gsm_auth_policy auth_policy;
Harald Welte1085c092009-11-18 20:33:19 +0100451 enum gsm48_reject_value reject_cause;
Harald Welte4381cfe2009-08-30 15:47:06 +0900452 int a5_encryption;
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100453 int neci;
Harald Welte648b6ce2009-12-14 09:00:24 +0100454 int send_mm_info;
Harald Weltebc814502009-12-19 21:41:52 +0100455 struct {
456 int active;
457 } handover;
Harald Welte52b1f982008-12-23 20:25:15 +0000458
Harald Welte4bfdfe72009-06-10 23:11:52 +0800459 /* layer 4 */
460 int (*mncc_recv) (struct gsm_network *net, int msg_type, void *arg);
461 struct llist_head upqueue;
462 struct llist_head trans_list;
463
Harald Welte52b1f982008-12-23 20:25:15 +0000464 unsigned int num_bts;
Harald Weltee441d9c2009-06-21 16:17:15 +0200465 struct llist_head bts_list;
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100466
467 /* timer values */
468 int T3101;
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100469 int T3103;
470 int T3105;
471 int T3107;
472 int T3109;
473 int T3111;
474 int T3113;
475 int T3115;
476 int T3117;
477 int T3119;
478 int T3141;
Harald Welteeab84a12009-12-13 10:53:12 +0100479
480 /* Radio Resource Location Protocol (TS 04.31) */
481 struct {
482 enum rrlp_mode mode;
483 } rrlp;
Harald Welte52b1f982008-12-23 20:25:15 +0000484};
485
Harald Welte7e310b12009-03-30 20:56:32 +0000486#define SMS_HDR_SIZE 128
487#define SMS_TEXT_SIZE 256
488struct gsm_sms {
Harald Welted409be72009-11-07 00:06:19 +0900489 unsigned long long id;
Harald Welte7e310b12009-03-30 20:56:32 +0000490 struct gsm_subscriber *sender;
491 struct gsm_subscriber *receiver;
492
Harald Welteb9c758b2009-07-05 14:02:46 +0200493 unsigned long validity_minutes;
Harald Welte76042182009-08-08 16:03:15 +0200494 u_int8_t reply_path_req;
495 u_int8_t status_rep_req;
496 u_int8_t ud_hdr_ind;
497 u_int8_t protocol_id;
498 u_int8_t data_coding_scheme;
499 u_int8_t msg_ref;
500 char dest_addr[20+1]; /* DA LV is 12 bytes max, i.e. 10 bytes
501 * BCD == 20 bytes string */
502 u_int8_t user_data_len;
503 u_int8_t user_data[SMS_TEXT_SIZE];
Harald Weltef3efc592009-07-27 20:11:35 +0200504
Harald Welte7e310b12009-03-30 20:56:32 +0000505 char text[SMS_TEXT_SIZE];
506};
507
Harald Weltee441d9c2009-06-21 16:17:15 +0200508struct gsm_network *gsm_network_init(u_int16_t country_code, u_int16_t network_code,
Harald Welte4bfdfe72009-06-10 23:11:52 +0800509 int (*mncc_recv)(struct gsm_network *, int, void *));
Harald Weltee441d9c2009-06-21 16:17:15 +0200510struct gsm_bts *gsm_bts_alloc(struct gsm_network *net, enum gsm_bts_type type,
511 u_int8_t tsc, u_int8_t bsic);
512struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts);
513
514struct gsm_bts *gsm_bts_num(struct gsm_network *net, int num);
Harald Welte84874c92009-12-14 22:33:02 +0100515
516/* Get reference to a neighbor cell on a given BCCH ARFCN */
Harald Welte0b121032009-12-15 00:21:31 +0100517struct gsm_bts *gsm_bts_neighbor(const struct gsm_bts *bts,
518 u_int16_t arfcn, u_int8_t bsic);
Harald Welte84874c92009-12-14 22:33:02 +0100519
Harald Weltee441d9c2009-06-21 16:17:15 +0200520struct gsm_bts_trx *gsm_bts_trx_num(struct gsm_bts *bts, int num);
Harald Welte8470bf22008-12-25 23:28:35 +0000521
Harald Weltea72c98e2009-01-04 16:10:38 +0000522const char *gsm_pchan_name(enum gsm_phys_chan_config c);
Harald Welte65da9122009-08-07 00:32:22 +0200523enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
Harald Weltea72c98e2009-01-04 16:10:38 +0000524const char *gsm_lchan_name(enum gsm_chan_t c);
525const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Harald Welte23a68632009-02-19 17:06:42 +0000526char *gsm_ts_name(struct gsm_bts_trx_ts *ts);
Harald Weltea72c98e2009-01-04 16:10:38 +0000527
Harald Weltead384642008-12-26 10:20:07 +0000528enum gsm_e1_event {
529 EVT_E1_NONE,
Harald Welte1fa60c82009-02-09 18:13:26 +0000530 EVT_E1_TEI_UP,
531 EVT_E1_TEI_DN,
Harald Weltead384642008-12-26 10:20:07 +0000532};
533
Harald Weltecd06bfb2009-02-10 17:33:56 +0000534void set_ts_e1link(struct gsm_bts_trx_ts *ts, u_int8_t e1_nr,
535 u_int8_t e1_ts, u_int8_t e1_ts_ss);
Harald Welte1d014a52009-08-08 15:38:29 +0200536enum gsm_bts_type parse_btstype(const char *arg);
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +0200537const char *btstype2str(enum gsm_bts_type type);
Harald Weltebe991492009-05-23 13:56:40 +0000538struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
539 struct gsm_bts *start_bts);
Harald Welte32201c12009-03-10 12:15:10 +0000540
Harald Weltefcd24452009-06-20 18:15:19 +0200541char *gsm_band_name(enum gsm_band band);
Harald Welte42581822009-08-08 16:12:58 +0200542enum gsm_band gsm_band_parse(const char *mhz);
Harald Weltefcd24452009-06-20 18:15:19 +0200543
Andreas Eversberg8226fa72009-06-29 15:19:38 +0200544extern void *tall_bsc_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +0200545
Harald Welte32201c12009-03-10 12:15:10 +0000546static inline int is_ipaccess_bts(struct gsm_bts *bts)
547{
548 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +0100549 case GSM_BTS_TYPE_NANOBTS:
Harald Welte32201c12009-03-10 12:15:10 +0000550 return 1;
551 default:
552 break;
553 }
554 return 0;
555}
556
Harald Welte5b570672009-08-10 10:08:01 +0200557static inline int is_siemens_bts(struct gsm_bts *bts)
558{
559 switch (bts->type) {
560 case GSM_BTS_TYPE_BS11:
561 return 1;
562 default:
563 break;
564 }
565
566 return 0;
567}
568
Harald Welte (local)69de3972009-08-12 14:42:23 +0200569
570enum gsm_auth_policy gsm_auth_policy_parse(const char *arg);
571const char *gsm_auth_policy_name(enum gsm_auth_policy policy);
572
Harald Welteeab84a12009-12-13 10:53:12 +0100573enum rrlp_mode rrlp_mode_parse(const char *arg);
574const char *rrlp_mode_name(enum rrlp_mode mode);
575
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +0100576void gsm_trx_lock_rf(struct gsm_bts_trx *trx, int locked);
577
Harald Welted12b0fd2009-12-15 21:36:05 +0100578struct gsm_meas_rep *lchan_next_meas_rep(struct gsm_lchan *lchan);
579
Harald Welte52b1f982008-12-23 20:25:15 +0000580#endif