blob: 7184a85a588851698a1475f2ce5df70e1d59d48a [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
41
42/* Channel Request reason */
43enum gsm_chreq_reason_t {
44 GSM_CHREQ_REASON_EMERG,
45 GSM_CHREQ_REASON_PAG,
46 GSM_CHREQ_REASON_CALL,
47 GSM_CHREQ_REASON_LOCATION_UPD,
48 GSM_CHREQ_REASON_OTHER,
49};
50
Harald Welte255539c2008-12-28 02:26:27 +000051#include <openbsc/timer.h>
Holger Freyther1adb4ff2009-02-04 00:04:52 +000052#include <openbsc/gsm_04_08.h>
Harald Welte9943c5b2009-07-29 15:41:29 +020053#include <openbsc/abis_rsl.h>
Harald Welte4bfdfe72009-06-10 23:11:52 +080054#include <openbsc/mncc.h>
Harald Welte93e9d172009-06-20 19:04:31 +020055#include <openbsc/tlv.h>
Harald Welte255539c2008-12-28 02:26:27 +000056
Harald Welte8470bf22008-12-25 23:28:35 +000057#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
58
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,
74};
75
76enum gsm_paging_event {
77 GSM_PAGING_SUCCEEDED,
78 GSM_PAGING_EXPIRED,
Holger Freyther85a7b362009-04-18 13:48:55 +020079 GSM_PAGING_OOM,
Harald Welte8e1e3ee2009-02-01 13:32:45 +000080};
81
82struct msgb;
83typedef int gsm_cbfn(unsigned int hooknum,
84 unsigned int event,
85 struct msgb *msg,
86 void *data, void *param);
87
Holger Freytherc6ea9db2008-12-30 19:18:21 +000088/*
89 * Use the channel. As side effect the lchannel recycle timer
90 * will be started.
91 */
Harald Welteb9c758b2009-07-05 14:02:46 +020092#define LCHAN_RELEASE_TIMEOUT 20, 0
Holger Freytherc6ea9db2008-12-30 19:18:21 +000093#define use_lchan(lchan) \
94 do { lchan->use_count++; \
Holger Freyther4f584c32009-06-02 02:55:07 +000095 DEBUGP(DCC, "lchan (bts=%d,trx=%d,ts=%d,ch=%d) increases usage to: %d\n", \
96 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr, \
97 lchan->nr, lchan->use_count); \
Harald Welteff117a82009-05-23 05:22:08 +000098 bsc_schedule_timer(&lchan->release_timer, LCHAN_RELEASE_TIMEOUT); } while(0);
Holger Freytherc6ea9db2008-12-30 19:18:21 +000099
100#define put_lchan(lchan) \
Holger Freyther4f584c32009-06-02 02:55:07 +0000101 do { lchan->use_count--; \
102 DEBUGP(DCC, "lchan (bts=%d,trx=%d,ts=%d,ch=%d) decreases usage to: %d\n", \
103 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr, \
104 lchan->nr, lchan->use_count); \
105 } while(0);
106
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000107
Harald Welte52b1f982008-12-23 20:25:15 +0000108/* communications link with a BTS */
109struct gsm_bts_link {
110 struct gsm_bts *bts;
111};
112
Harald Welte49f48b82009-02-17 15:29:33 +0000113struct gsm_lchan;
114struct gsm_subscriber;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800115struct gsm_mncc;
Harald Welte805f6442009-07-28 18:25:29 +0200116struct rtp_socket;
Harald Welte49f48b82009-02-17 15:29:33 +0000117
Harald Weltebbcc7a52009-02-14 19:45:44 +0000118/* Network Management State */
119struct gsm_nm_state {
120 u_int8_t operational;
121 u_int8_t administrative;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000122 u_int8_t availability;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000123};
Harald Weltebbcc7a52009-02-14 19:45:44 +0000124
Holger Freyther73487a22008-12-31 18:53:57 +0000125/*
126 * LOCATION UPDATING REQUEST state
127 *
128 * Our current operation is:
129 * - Get imei/tmsi
130 * - Accept/Reject according to global policy
131 */
132struct gsm_loc_updating_operation {
133 struct timer_list updating_timer;
Holger Hans Peter Freyther251aa912009-10-27 10:42:28 +0100134 unsigned int waiting_for_imsi : 1;
135 unsigned int waiting_for_imei : 1;
Holger Freyther73487a22008-12-31 18:53:57 +0000136};
137
Harald Welte08d91a52009-08-30 15:37:11 +0900138#define MAX_A5_KEY_LEN (128/8)
139#define RSL_ENC_ALG_A5(x) (x+1)
140
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100141/* is the data link established? who established it? */
142#define LCHAN_SAPI_UNUSED 0
143#define LCHAN_SAPI_MS 1
144#define LCHAN_SAPI_NET 2
145
Harald Welte8470bf22008-12-25 23:28:35 +0000146struct gsm_lchan {
147 /* The TS that we're part of */
148 struct gsm_bts_trx_ts *ts;
149 /* The logical subslot number in the TS */
150 u_int8_t nr;
Harald Welte45b407a2009-05-23 15:51:12 +0000151 /* The logical channel type */
Harald Welte8470bf22008-12-25 23:28:35 +0000152 enum gsm_chan_t type;
Harald Welte9943c5b2009-07-29 15:41:29 +0200153 /* RSL channel mode */
154 enum rsl_cmod_spd rsl_cmode;
Harald Welte45b407a2009-05-23 15:51:12 +0000155 /* If TCH, traffic channel mode */
Harald Welte9943c5b2009-07-29 15:41:29 +0200156 enum gsm48_chan_mode tch_mode;
Harald Welted4c9bf32009-02-15 16:56:18 +0000157 /* Power levels for MS and BTS */
158 u_int8_t bs_power;
159 u_int8_t ms_power;
Harald Welte08d91a52009-08-30 15:37:11 +0900160 /* Encryption information */
161 struct {
162 u_int8_t alg_id;
163 u_int8_t key_len;
164 u_int8_t key[MAX_A5_KEY_LEN];
165 } encr;
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +0100166
167 /* AMR bits */
168 struct gsm48_multi_rate_conf mr_conf;
Harald Welted4c9bf32009-02-15 16:56:18 +0000169
Harald Welte8470bf22008-12-25 23:28:35 +0000170 /* To whom we are allocated at the moment */
171 struct gsm_subscriber *subscr;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000172
173 /* Timer started to release the channel */
174 struct timer_list release_timer;
Harald Weltea3d04382008-12-27 17:02:56 +0000175
Harald Welteb7e81162009-08-10 00:26:10 +0200176 struct timer_list T3101;
177
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100178 /* Established data link layer services */
179 u_int8_t sapis[8];
180
Holger Freyther73487a22008-12-31 18:53:57 +0000181 /*
182 * Operations that have a state and might be pending
183 */
184 struct gsm_loc_updating_operation *loc_operation;
185
Holger Freytherb7193e42008-12-29 17:44:08 +0000186 /* use count. how many users use this channel */
187 unsigned int use_count;
Harald Welte2c828992009-12-02 01:56:49 +0530188
189 struct {
190 u_int32_t bound_ip;
191 u_int16_t bound_port;
192 u_int8_t rtp_payload2;
193 u_int16_t conn_id;
194 struct rtp_socket *rtp_socket;
195 } abis_ip;
Harald Welte8470bf22008-12-25 23:28:35 +0000196};
197
Harald Welte85770c72009-01-18 17:47:32 +0000198struct gsm_e1_subslot {
199 /* Number of E1 link */
200 u_int8_t e1_nr;
201 /* Number of E1 TS inside E1 link */
202 u_int8_t e1_ts;
203 /* Sub-slot within the E1 TS, 0xff if full TS */
204 u_int8_t e1_ts_ss;
205};
206
Harald Welte52b1f982008-12-23 20:25:15 +0000207#define BTS_TRX_F_ACTIVATED 0x0001
208/* One Timeslot in a TRX */
209struct gsm_bts_trx_ts {
210 struct gsm_bts_trx *trx;
211 /* number of this timeslot at the TRX */
212 u_int8_t nr;
213
Harald Welte8470bf22008-12-25 23:28:35 +0000214 enum gsm_phys_chan_config pchan;
215
Harald Welte52b1f982008-12-23 20:25:15 +0000216 unsigned int flags;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000217 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200218 struct tlv_parsed nm_attr;
Harald Welte39c7deb2009-08-09 21:49:48 +0200219 u_int8_t nm_chan_comb;
Harald Welte8470bf22008-12-25 23:28:35 +0000220
Harald Welte85770c72009-01-18 17:47:32 +0000221 /* To which E1 subslot are we connected */
222 struct gsm_e1_subslot e1_link;
223
Harald Welte8470bf22008-12-25 23:28:35 +0000224 struct gsm_lchan lchan[TS_MAX_LCHAN];
Harald Welte52b1f982008-12-23 20:25:15 +0000225};
226
227/* One TRX in a BTS */
228struct gsm_bts_trx {
Harald Weltee441d9c2009-06-21 16:17:15 +0200229 /* list header in bts->trx_list */
230 struct llist_head list;
231
Harald Welte52b1f982008-12-23 20:25:15 +0000232 struct gsm_bts *bts;
233 /* number of this TRX in the BTS */
234 u_int8_t nr;
Harald Welte1fa60c82009-02-09 18:13:26 +0000235 /* how do we talk RSL with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200236 struct gsm_e1_subslot rsl_e1_link;
237 u_int8_t rsl_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000238 struct e1inp_sign_link *rsl_link;
Harald Welte42581822009-08-08 16:12:58 +0200239
Harald Weltebbcc7a52009-02-14 19:45:44 +0000240 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200241 struct tlv_parsed nm_attr;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000242 struct {
243 struct gsm_nm_state nm_state;
244 } bb_transc;
Harald Welte52b1f982008-12-23 20:25:15 +0000245
246 u_int16_t arfcn;
Harald Weltefcd24452009-06-20 18:15:19 +0200247 int nominal_power; /* in dBm */
248 unsigned int max_power_red; /* in actual dB */
Harald Welte8b697c72009-06-05 19:18:45 +0000249
250 union {
251 struct {
252 struct {
253 struct gsm_nm_state nm_state;
254 } bbsig;
255 struct {
256 struct gsm_nm_state nm_state;
257 } pa;
258 } bs11;
259 };
Harald Welte85770c72009-01-18 17:47:32 +0000260 struct gsm_bts_trx_ts ts[TRX_NR_TS];
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +0100261
262 /* NM state */
263 int rf_locked;
Harald Welte52b1f982008-12-23 20:25:15 +0000264};
265
Harald Welte978cb422009-01-18 17:57:27 +0000266enum gsm_bts_type {
267 GSM_BTS_TYPE_UNKNOWN,
268 GSM_BTS_TYPE_BS11,
Mike Habene2d82272009-10-02 12:19:34 +0100269 GSM_BTS_TYPE_NANOBTS,
Harald Welte978cb422009-01-18 17:57:27 +0000270};
271
Holger Freytherceb59b72009-02-06 18:54:00 +0000272/**
273 * A pending paging request
274 */
275struct gsm_paging_request {
Harald Welte0932d1e2009-02-16 22:53:52 +0000276 /* list_head for list of all paging requests */
Holger Freytherceb59b72009-02-06 18:54:00 +0000277 struct llist_head entry;
Harald Welte0932d1e2009-02-16 22:53:52 +0000278 /* the subscriber which we're paging. Later gsm_paging_request
279 * should probably become a part of the gsm_subscriber struct? */
Holger Freytherceb59b72009-02-06 18:54:00 +0000280 struct gsm_subscriber *subscr;
Harald Welte0932d1e2009-02-16 22:53:52 +0000281 /* back-pointer to the BTS on which we are paging */
Holger Freytherceb59b72009-02-06 18:54:00 +0000282 struct gsm_bts *bts;
Harald Welte0932d1e2009-02-16 22:53:52 +0000283 /* what kind of channel type do we ask the MS to establish */
Holger Freytherceb59b72009-02-06 18:54:00 +0000284 int chan_type;
Harald Weltecd06bfb2009-02-10 17:33:56 +0000285
286 /* Timer 3113: how long do we try to page? */
287 struct timer_list T3113;
Harald Welte0932d1e2009-02-16 22:53:52 +0000288
289 /* callback to be called in case paging completes */
290 gsm_cbfn *cbfn;
291 void *cbfn_param;
Holger Freytherceb59b72009-02-06 18:54:00 +0000292};
293
294/*
295 * This keeps track of the paging status of one BTS. It
296 * includes a number of pending requests, a back pointer
297 * to the gsm_bts, a timer and some more state.
298 */
299struct gsm_bts_paging_state {
Holger Freytherceb59b72009-02-06 18:54:00 +0000300 /* pending requests */
301 struct llist_head pending_requests;
302 struct gsm_paging_request *last_request;
303 struct gsm_bts *bts;
304
Harald Welte75a1fa82009-02-17 01:39:41 +0000305 struct timer_list work_timer;
306
Holger Freyther392209c2009-02-10 00:06:19 +0000307 /* load */
308 u_int16_t available_slots;
Holger Freytherceb59b72009-02-06 18:54:00 +0000309};
310
Harald Welte8b697c72009-06-05 19:18:45 +0000311struct gsm_envabtse {
312 struct gsm_nm_state nm_state;
313};
314
Harald Welte55dd4432009-10-24 10:19:14 +0200315struct gsm_bts_gprs_nsvc {
316 struct gsm_bts *bts;
317 int id;
318 struct gsm_nm_state nm_state;
319};
320
Harald Welte52b1f982008-12-23 20:25:15 +0000321/* One BTS */
322struct gsm_bts {
Harald Weltee441d9c2009-06-21 16:17:15 +0200323 /* list header in net->bts_list */
324 struct llist_head list;
325
Harald Welte52b1f982008-12-23 20:25:15 +0000326 struct gsm_network *network;
327 /* number of ths BTS in network */
328 u_int8_t nr;
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200329 /* Cell Identity */
330 u_int16_t cell_identity;
Harald Welte52b1f982008-12-23 20:25:15 +0000331 /* location area code of this BTS */
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +0200332 u_int16_t location_area_code;
Harald Welte02b0e092009-02-28 13:11:07 +0000333 /* Training Sequence Code */
334 u_int8_t tsc;
Harald Welte78f2f502009-05-23 16:56:52 +0000335 /* Base Station Identification Code (BSIC) */
336 u_int8_t bsic;
Harald Welte978cb422009-01-18 17:57:27 +0000337 /* type of BTS */
338 enum gsm_bts_type type;
Harald Weltefcd24452009-06-20 18:15:19 +0200339 enum gsm_band band;
Harald Weltefc0d9522009-08-10 13:46:55 +0200340 /* should the channel allocator allocate channels from high TRX to TRX0,
341 * rather than starting from TRX0 and go upwards? */
342 int chan_alloc_reverse;
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200343 int cell_barred;
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200344 /* maximum Tx power that the MS is permitted to use in this cell */
345 int ms_max_power;
Harald Weltefc0d9522009-08-10 13:46:55 +0200346
Harald Welte1fa60c82009-02-09 18:13:26 +0000347 /* how do we talk OML with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200348 struct gsm_e1_subslot oml_e1_link;
349 u_int8_t oml_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000350 struct e1inp_sign_link *oml_link;
Harald Welte52b1f982008-12-23 20:25:15 +0000351
352 /* Abis network management O&M handle */
353 struct abis_nm_h *nmh;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000354 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200355 struct tlv_parsed nm_attr;
Harald Welte978cb422009-01-18 17:57:27 +0000356
Harald Welte52b1f982008-12-23 20:25:15 +0000357 /* number of this BTS on given E1 link */
358 u_int8_t bts_nr;
359
Holger Freytherceb59b72009-02-06 18:54:00 +0000360 /* paging state and control */
361 struct gsm_bts_paging_state paging;
362
Harald Welte52b1f982008-12-23 20:25:15 +0000363 /* CCCH is on C0 */
364 struct gsm_bts_trx *c0;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000365
366 struct {
367 struct gsm_nm_state nm_state;
368 } site_mgr;
Harald Welteedb37782009-05-01 14:59:07 +0000369
Harald Weltea43f7892009-12-01 18:04:30 +0530370 /* parameters from which we build SYSTEM INFORMATION */
371 struct {
372 struct gsm48_rach_control rach_control;
373 u_int8_t ncc_permitted;
374 struct gsm48_cell_sel_par cell_sel_par;
375 struct gsm48_cell_options cell_options;
376 struct gsm48_control_channel_descr chan_desc;
377 } si_common;
378
Harald Welteedb37782009-05-01 14:59:07 +0000379 /* ip.accesss Unit ID's have Site/BTS/TRX layout */
Harald Welte7b26bcb2009-05-28 11:39:21 +0000380 union {
381 struct {
382 u_int16_t site_id;
383 u_int16_t bts_id;
384 } ip_access;
385 struct {
386 struct {
387 struct gsm_nm_state nm_state;
388 } cclk;
389 struct {
390 struct gsm_nm_state nm_state;
391 } rack;
Harald Welte8b697c72009-06-05 19:18:45 +0000392 struct gsm_envabtse envabtse[4];
Harald Welte7b26bcb2009-05-28 11:39:21 +0000393 } bs11;
394 };
Harald Welte55dd4432009-10-24 10:19:14 +0200395
396 /* Not entirely sure how ip.access specific this is */
397 struct {
398 struct {
399 struct gsm_nm_state nm_state;
400 } nse;
401 struct {
402 struct gsm_nm_state nm_state;
403 } cell;
404 struct gsm_bts_gprs_nsvc nsvc[2];
405 } gprs;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000406
Harald Welte52b1f982008-12-23 20:25:15 +0000407 /* transceivers */
408 int num_trx;
Harald Weltee441d9c2009-06-21 16:17:15 +0200409 struct llist_head trx_list;
Harald Welte52b1f982008-12-23 20:25:15 +0000410};
411
Harald Welte (local)69de3972009-08-12 14:42:23 +0200412enum gsm_auth_policy {
413 GSM_AUTH_POLICY_CLOSED, /* only subscribers authorized in DB */
414 GSM_AUTH_POLICY_ACCEPT_ALL, /* accept everyone, even if not authorized in DB */
415 GSM_AUTH_POLICY_TOKEN, /* accept first, send token per sms, then revoke authorization */
416};
417
Harald Welteb84ddfc2009-12-01 17:36:54 +0530418#define GSM_T3101_DEFAULT 10
419#define GSM_T3113_DEFAULT 60
420
Harald Welte52b1f982008-12-23 20:25:15 +0000421struct gsm_network {
422 /* global parameters */
Harald Welteb84e2f42008-12-28 23:42:04 +0000423 u_int16_t country_code;
424 u_int16_t network_code;
Harald Weltec6ba9c22008-12-30 18:01:02 +0000425 char *name_long;
426 char *name_short;
Harald Welte (local)69de3972009-08-12 14:42:23 +0200427 enum gsm_auth_policy auth_policy;
Harald Welte1085c092009-11-18 20:33:19 +0100428 enum gsm48_reject_value reject_cause;
Harald Welte4381cfe2009-08-30 15:47:06 +0900429 int a5_encryption;
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100430 int neci;
Harald Welte52b1f982008-12-23 20:25:15 +0000431
Harald Welte4bfdfe72009-06-10 23:11:52 +0800432 /* layer 4 */
433 int (*mncc_recv) (struct gsm_network *net, int msg_type, void *arg);
434 struct llist_head upqueue;
435 struct llist_head trans_list;
436
Harald Welte52b1f982008-12-23 20:25:15 +0000437 unsigned int num_bts;
Harald Weltee441d9c2009-06-21 16:17:15 +0200438 struct llist_head bts_list;
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100439
440 /* timer values */
441 int T3101;
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100442 int T3103;
443 int T3105;
444 int T3107;
445 int T3109;
446 int T3111;
447 int T3113;
448 int T3115;
449 int T3117;
450 int T3119;
451 int T3141;
Harald Welte52b1f982008-12-23 20:25:15 +0000452};
453
Harald Welte7e310b12009-03-30 20:56:32 +0000454#define SMS_HDR_SIZE 128
455#define SMS_TEXT_SIZE 256
456struct gsm_sms {
Harald Welted409be72009-11-07 00:06:19 +0900457 unsigned long long id;
Harald Welte7e310b12009-03-30 20:56:32 +0000458 struct gsm_subscriber *sender;
459 struct gsm_subscriber *receiver;
460
Harald Welteb9c758b2009-07-05 14:02:46 +0200461 unsigned long validity_minutes;
Harald Welte76042182009-08-08 16:03:15 +0200462 u_int8_t reply_path_req;
463 u_int8_t status_rep_req;
464 u_int8_t ud_hdr_ind;
465 u_int8_t protocol_id;
466 u_int8_t data_coding_scheme;
467 u_int8_t msg_ref;
468 char dest_addr[20+1]; /* DA LV is 12 bytes max, i.e. 10 bytes
469 * BCD == 20 bytes string */
470 u_int8_t user_data_len;
471 u_int8_t user_data[SMS_TEXT_SIZE];
Harald Weltef3efc592009-07-27 20:11:35 +0200472
Harald Welte7e310b12009-03-30 20:56:32 +0000473 char text[SMS_TEXT_SIZE];
474};
475
Harald Weltee441d9c2009-06-21 16:17:15 +0200476struct gsm_network *gsm_network_init(u_int16_t country_code, u_int16_t network_code,
Harald Welte4bfdfe72009-06-10 23:11:52 +0800477 int (*mncc_recv)(struct gsm_network *, int, void *));
Harald Weltee441d9c2009-06-21 16:17:15 +0200478struct gsm_bts *gsm_bts_alloc(struct gsm_network *net, enum gsm_bts_type type,
479 u_int8_t tsc, u_int8_t bsic);
480struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts);
481
482struct gsm_bts *gsm_bts_num(struct gsm_network *net, int num);
483struct gsm_bts_trx *gsm_bts_trx_num(struct gsm_bts *bts, int num);
Harald Welte8470bf22008-12-25 23:28:35 +0000484
Harald Weltea72c98e2009-01-04 16:10:38 +0000485const char *gsm_pchan_name(enum gsm_phys_chan_config c);
Harald Welte65da9122009-08-07 00:32:22 +0200486enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
Harald Weltea72c98e2009-01-04 16:10:38 +0000487const char *gsm_lchan_name(enum gsm_chan_t c);
488const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Harald Welte23a68632009-02-19 17:06:42 +0000489char *gsm_ts_name(struct gsm_bts_trx_ts *ts);
Harald Weltea72c98e2009-01-04 16:10:38 +0000490
Harald Weltead384642008-12-26 10:20:07 +0000491enum gsm_e1_event {
492 EVT_E1_NONE,
Harald Welte1fa60c82009-02-09 18:13:26 +0000493 EVT_E1_TEI_UP,
494 EVT_E1_TEI_DN,
Harald Weltead384642008-12-26 10:20:07 +0000495};
496
Harald Weltecd06bfb2009-02-10 17:33:56 +0000497void set_ts_e1link(struct gsm_bts_trx_ts *ts, u_int8_t e1_nr,
498 u_int8_t e1_ts, u_int8_t e1_ts_ss);
Harald Welte1d014a52009-08-08 15:38:29 +0200499enum gsm_bts_type parse_btstype(const char *arg);
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +0200500const char *btstype2str(enum gsm_bts_type type);
Harald Weltebe991492009-05-23 13:56:40 +0000501struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
502 struct gsm_bts *start_bts);
Harald Welte32201c12009-03-10 12:15:10 +0000503
Harald Weltefcd24452009-06-20 18:15:19 +0200504char *gsm_band_name(enum gsm_band band);
Harald Welte42581822009-08-08 16:12:58 +0200505enum gsm_band gsm_band_parse(const char *mhz);
Harald Weltefcd24452009-06-20 18:15:19 +0200506
Andreas Eversberg8226fa72009-06-29 15:19:38 +0200507extern void *tall_bsc_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +0200508
Harald Welte32201c12009-03-10 12:15:10 +0000509static inline int is_ipaccess_bts(struct gsm_bts *bts)
510{
511 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +0100512 case GSM_BTS_TYPE_NANOBTS:
Harald Welte32201c12009-03-10 12:15:10 +0000513 return 1;
514 default:
515 break;
516 }
517 return 0;
518}
519
Harald Welte5b570672009-08-10 10:08:01 +0200520static inline int is_siemens_bts(struct gsm_bts *bts)
521{
522 switch (bts->type) {
523 case GSM_BTS_TYPE_BS11:
524 return 1;
525 default:
526 break;
527 }
528
529 return 0;
530}
531
Harald Welte (local)69de3972009-08-12 14:42:23 +0200532
533enum gsm_auth_policy gsm_auth_policy_parse(const char *arg);
534const char *gsm_auth_policy_name(enum gsm_auth_policy policy);
535
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +0100536void gsm_trx_lock_rf(struct gsm_bts_trx *trx, int locked);
537
Harald Welte52b1f982008-12-23 20:25:15 +0000538#endif