blob: 5ec4441be07a2e38d8551f456b46879aa281eee6 [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 Welte7401ae62010-06-15 16:44:12 +020046#include <openbsc/system_information.h>
Harald Welte4bfdfe72009-06-10 23:11:52 +080047#include <openbsc/mncc.h>
Harald Weltedfe6c7d2010-02-20 16:24:02 +010048#include <osmocore/tlv.h>
49#include <osmocore/bitvec.h>
50#include <osmocore/statistics.h>
51#include <osmocore/gsm_utils.h>
52#include <osmocore/utils.h>
Harald Welte8470bf22008-12-25 23:28:35 +000053
Harald Welte85770c72009-01-18 17:47:32 +000054#define TRX_NR_TS 8
Harald Welte8470bf22008-12-25 23:28:35 +000055#define TS_MAX_LCHAN 8
Harald Welte52b1f982008-12-23 20:25:15 +000056
57#define HARDCODED_ARFCN 123
Harald Welte02b0e092009-02-28 13:11:07 +000058#define HARDCODED_TSC 7
Harald Welte78f2f502009-05-23 16:56:52 +000059#define HARDCODED_BSIC 0x3f /* NCC = 7 / BCC = 7 */
Harald Welte52b1f982008-12-23 20:25:15 +000060
Harald Welte63589be2009-08-06 17:38:10 +020061/* for multi-drop config */
62#define HARDCODED_BTS0_TS 1
63#define HARDCODED_BTS1_TS 6
64#define HARDCODED_BTS2_TS 11
65
Harald Welte8e1e3ee2009-02-01 13:32:45 +000066enum gsm_hooks {
67 GSM_HOOK_NM_SWLOAD,
Harald Welte0932d1e2009-02-16 22:53:52 +000068 GSM_HOOK_RR_PAGING,
Sylvain Munaut30a15382009-12-24 00:27:26 +010069 GSM_HOOK_RR_SECURITY,
Harald Welte0932d1e2009-02-16 22:53:52 +000070};
71
72enum gsm_paging_event {
73 GSM_PAGING_SUCCEEDED,
74 GSM_PAGING_EXPIRED,
Holger Freyther85a7b362009-04-18 13:48:55 +020075 GSM_PAGING_OOM,
Harald Welte8e1e3ee2009-02-01 13:32:45 +000076};
77
Harald Welte4511d892010-04-18 15:51:20 +020078enum bts_gprs_mode {
79 BTS_GPRS_NONE = 0,
80 BTS_GPRS_GPRS = 1,
81 BTS_GPRS_EGPRS = 2,
82};
83
Harald Welte0809d792010-04-30 14:36:25 +020084/* the data structure stored in msgb->cb for openbsc apps */
85struct openbsc_msgb_cb {
Harald Weltefd3fa1d2010-05-02 09:50:42 +020086 unsigned char *bssgph;
87 unsigned char *llch;
Harald Welte44f1c272010-04-30 19:54:29 +020088
Harald Welte11d7c102010-05-02 11:54:55 +020089 /* Cell Identifier */
90 unsigned char *bssgp_cell_id;
91
Harald Weltee6afd602010-05-02 11:19:37 +020092 /* Identifiers of a BTS, equal to 'struct bssgp_bts_ctx' */
Harald Welte44f1c272010-04-30 19:54:29 +020093 u_int16_t nsei;
94 u_int16_t bvci;
95
Harald Weltee6afd602010-05-02 11:19:37 +020096 /* Identifier of a MS (inside BTS), equal to 'struct sgsn_mm_ctx' */
Harald Welte0809d792010-04-30 14:36:25 +020097 u_int32_t tlli;
Harald Welte44f1c272010-04-30 19:54:29 +020098} __attribute__((packed));
Harald Welte0809d792010-04-30 14:36:25 +020099#define OBSC_MSGB_CB(__msgb) ((struct openbsc_msgb_cb *)&((__msgb)->cb[0]))
Harald Welte943c5bc2010-04-30 16:33:12 +0200100#define msgb_tlli(__x) OBSC_MSGB_CB(__x)->tlli
Harald Welte44f1c272010-04-30 19:54:29 +0200101#define msgb_nsei(__x) OBSC_MSGB_CB(__x)->nsei
102#define msgb_bvci(__x) OBSC_MSGB_CB(__x)->bvci
Harald Weltefd3fa1d2010-05-02 09:50:42 +0200103#define msgb_gmmh(__x) (__x)->l3h
104#define msgb_bssgph(__x) OBSC_MSGB_CB(__x)->bssgph
Harald Welte721961c2010-05-02 21:29:36 +0200105#define msgb_bssgp_len(__x) ((__x)->tail - (uint8_t *)msgb_bssgph(__x))
Harald Welte11d7c102010-05-02 11:54:55 +0200106#define msgb_bcid(__x) OBSC_MSGB_CB(__x)->bssgp_cell_id
Harald Weltefd3fa1d2010-05-02 09:50:42 +0200107#define msgb_llch(__x) OBSC_MSGB_CB(__x)->llch
Harald Welte0809d792010-04-30 14:36:25 +0200108
Holger Hans Peter Freyther9c595b72010-06-15 11:20:52 +0800109#define OBSC_LINKID_CB(__msgb) (__msgb)->cb[3]
110
Sylvain Munaut30a15382009-12-24 00:27:26 +0100111enum gsm_security_event {
112 GSM_SECURITY_NOAVAIL,
113 GSM_SECURITY_AUTH_FAILED,
114 GSM_SECURITY_SUCCEEDED,
115};
116
Harald Welte8e1e3ee2009-02-01 13:32:45 +0000117struct msgb;
118typedef int gsm_cbfn(unsigned int hooknum,
119 unsigned int event,
120 struct msgb *msg,
121 void *data, void *param);
122
Sylvain Munaut47193072009-12-27 21:56:14 +0100123/* Real authentication information containing Ki */
124enum gsm_auth_algo {
125 AUTH_ALGO_NONE,
126 AUTH_ALGO_XOR,
127 AUTH_ALGO_COMP128v1,
128};
129
130struct gsm_auth_info {
131 enum gsm_auth_algo auth_algo;
132 unsigned int a3a8_ki_len;
133 u_int8_t a3a8_ki[16];
134};
135
136struct gsm_auth_tuple {
137 int use_count;
138 int key_seq;
139 u_int8_t rand[16];
140 u_int8_t sres[4];
141 u_int8_t kc[8];
142};
Sylvain Munautb48216f2010-06-09 12:45:37 +0200143#define GSM_KEY_SEQ_INVAL 7 /* GSM 04.08 - 10.5.1.2 */
Sylvain Munaut47193072009-12-27 21:56:14 +0100144
145
Harald Welte49f48b82009-02-17 15:29:33 +0000146struct gsm_lchan;
147struct gsm_subscriber;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800148struct gsm_mncc;
Harald Welte805f6442009-07-28 18:25:29 +0200149struct rtp_socket;
Holger Hans Peter Freytherabcddf12010-06-14 18:20:15 +0800150struct bsc_api;
Harald Welte49f48b82009-02-17 15:29:33 +0000151
Harald Weltebbcc7a52009-02-14 19:45:44 +0000152/* Network Management State */
153struct gsm_nm_state {
154 u_int8_t operational;
155 u_int8_t administrative;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000156 u_int8_t availability;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000157};
Harald Weltebbcc7a52009-02-14 19:45:44 +0000158
Holger Freyther73487a22008-12-31 18:53:57 +0000159/*
160 * LOCATION UPDATING REQUEST state
161 *
162 * Our current operation is:
163 * - Get imei/tmsi
164 * - Accept/Reject according to global policy
165 */
166struct gsm_loc_updating_operation {
167 struct timer_list updating_timer;
Holger Hans Peter Freyther251aa912009-10-27 10:42:28 +0100168 unsigned int waiting_for_imsi : 1;
169 unsigned int waiting_for_imei : 1;
Sylvain Munaut2030a2a2010-06-10 13:36:59 +0200170 unsigned int key_seq : 4;
Holger Freyther73487a22008-12-31 18:53:57 +0000171};
172
Sylvain Munaut30a15382009-12-24 00:27:26 +0100173/*
174 * AUTHENTICATION/CIPHERING state
175 */
176struct gsm_security_operation {
177 struct gsm_auth_tuple atuple;
178 gsm_cbfn *cb;
179 void *cb_data;
180};
181
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800182/*
183 * A dummy to keep a connection up for at least
184 * a couple of seconds to work around MSC issues.
185 */
186struct gsm_anchor_operation {
187 struct timer_list timeout;
188};
189
Harald Weltef7c28b02009-12-21 13:30:17 +0100190/* Maximum number of neighbor cells whose average we track */
191#define MAX_NEIGH_MEAS 10
192/* Maximum size of the averaging window for neighbor cells */
193#define MAX_WIN_NEIGH_AVG 10
194
195/* processed neighbor measurements for one cell */
196struct neigh_meas_proc {
197 u_int16_t arfcn;
198 u_int8_t bsic;
199 u_int8_t rxlev[MAX_WIN_NEIGH_AVG];
200 unsigned int rxlev_cnt;
201 u_int8_t last_seen_nr;
202};
203
Harald Welte08d91a52009-08-30 15:37:11 +0900204#define MAX_A5_KEY_LEN (128/8)
Sylvain Munaute824d9c2010-06-11 00:19:42 +0200205#define A38_XOR_MIN_KEY_LEN 12
206#define A38_XOR_MAX_KEY_LEN 16
Sylvain Munaut30a15382009-12-24 00:27:26 +0100207#define A38_COMP128_KEY_LEN 16
Harald Welte08d91a52009-08-30 15:37:11 +0900208#define RSL_ENC_ALG_A5(x) (x+1)
209
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100210/* is the data link established? who established it? */
211#define LCHAN_SAPI_UNUSED 0
212#define LCHAN_SAPI_MS 1
213#define LCHAN_SAPI_NET 2
214
Harald Welteb8bfc562009-12-21 13:27:11 +0100215/* state of a logical channel */
216enum gsm_lchan_state {
217 LCHAN_S_NONE, /* channel is not active */
Harald Welte (local)3e460312009-12-27 18:12:29 +0100218 LCHAN_S_ACT_REQ, /* channel activatin requested */
Harald Welteb8bfc562009-12-21 13:27:11 +0100219 LCHAN_S_ACTIVE, /* channel is active and operational */
Harald Welte8e93b792009-12-29 10:44:17 +0100220 LCHAN_S_REL_REQ, /* channel release has been requested */
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +0800221 LCHAN_S_REL_ERR, /* channel is in an error state */
Harald Welteb8bfc562009-12-21 13:27:11 +0100222 LCHAN_S_INACTIVE, /* channel is set inactive */
223};
224
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100225/* the per subscriber data for lchan */
226struct gsm_subscriber_connection {
227 /* To whom we are allocated at the moment */
228 struct gsm_subscriber *subscr;
229
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100230 /*
231 * Operations that have a state and might be pending
232 */
233 struct gsm_loc_updating_operation *loc_operation;
Sylvain Munaut30a15382009-12-24 00:27:26 +0100234 struct gsm_security_operation *sec_operation;
Holger Hans Peter Freyther02d39b22010-07-05 15:34:16 +0800235 struct gsm_anchor_operation *anch_operation;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100236
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100237 /* Are we part of a special "silent" call */
238 int silent_call;
239
Holger Hans Peter Freyther18b63f42010-03-23 07:52:17 +0100240 /* back pointers */
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800241 int in_release;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100242 struct gsm_lchan *lchan;
Holger Hans Peter Freythere071ab72010-06-30 12:40:10 +0800243 struct gsm_lchan *ho_lchan;
Holger Hans Peter Freyther18b63f42010-03-23 07:52:17 +0100244 struct gsm_bts *bts;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100245};
246
Harald Welte8470bf22008-12-25 23:28:35 +0000247struct gsm_lchan {
248 /* The TS that we're part of */
249 struct gsm_bts_trx_ts *ts;
250 /* The logical subslot number in the TS */
251 u_int8_t nr;
Harald Welte45b407a2009-05-23 15:51:12 +0000252 /* The logical channel type */
Harald Welte8470bf22008-12-25 23:28:35 +0000253 enum gsm_chan_t type;
Harald Welte9943c5b2009-07-29 15:41:29 +0200254 /* RSL channel mode */
255 enum rsl_cmod_spd rsl_cmode;
Harald Welte45b407a2009-05-23 15:51:12 +0000256 /* If TCH, traffic channel mode */
Harald Welte9943c5b2009-07-29 15:41:29 +0200257 enum gsm48_chan_mode tch_mode;
Harald Welteb8bfc562009-12-21 13:27:11 +0100258 /* State */
259 enum gsm_lchan_state state;
Harald Welted4c9bf32009-02-15 16:56:18 +0000260 /* Power levels for MS and BTS */
261 u_int8_t bs_power;
262 u_int8_t ms_power;
Harald Welte08d91a52009-08-30 15:37:11 +0900263 /* Encryption information */
264 struct {
265 u_int8_t alg_id;
266 u_int8_t key_len;
267 u_int8_t key[MAX_A5_KEY_LEN];
268 } encr;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100269
270 struct timer_list T3101;
Holger Hans Peter Freytherf30c0dc2010-05-31 21:33:15 +0800271 struct timer_list T3111;
Holger Hans Peter Freyther4b4dd102010-05-31 21:38:24 +0800272 struct timer_list error_timer;
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +0100273
274 /* AMR bits */
275 struct gsm48_multi_rate_conf mr_conf;
Harald Welted4c9bf32009-02-15 16:56:18 +0000276
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100277 /* Established data link layer services */
278 u_int8_t sapis[8];
279
Holger Hans Peter Freyther5ba05f42010-06-22 12:11:59 +0800280 /* GSM Random Access data */
281 struct gsm48_req_ref *rqd_ref;
282 uint8_t rqd_ta;
283
Harald Welted12b0fd2009-12-15 21:36:05 +0100284 /* cache of last measurement reports on this lchan */
285 struct gsm_meas_rep meas_rep[6];
286 int meas_rep_idx;
287
Harald Weltef7c28b02009-12-21 13:30:17 +0100288 /* table of neighbor cell measurements */
289 struct neigh_meas_proc neigh_meas[MAX_NEIGH_MEAS];
290
Harald Welte2c828992009-12-02 01:56:49 +0530291 struct {
292 u_int32_t bound_ip;
Harald Welte5e3d91b2009-12-19 16:42:06 +0100293 u_int32_t connect_ip;
Harald Welte2c828992009-12-02 01:56:49 +0530294 u_int16_t bound_port;
Harald Welte5e3d91b2009-12-19 16:42:06 +0100295 u_int16_t connect_port;
Harald Welte2c828992009-12-02 01:56:49 +0530296 u_int16_t conn_id;
Sylvain Munautb54dda42009-12-20 22:06:40 +0100297 u_int8_t rtp_payload;
Harald Welte5e3d91b2009-12-19 16:42:06 +0100298 u_int8_t rtp_payload2;
299 u_int8_t speech_mode;
Harald Welte2c828992009-12-02 01:56:49 +0530300 struct rtp_socket *rtp_socket;
301 } abis_ip;
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100302
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800303 struct gsm_subscriber_connection *conn;
Harald Welte8470bf22008-12-25 23:28:35 +0000304};
305
Harald Welte85770c72009-01-18 17:47:32 +0000306struct gsm_e1_subslot {
307 /* Number of E1 link */
308 u_int8_t e1_nr;
309 /* Number of E1 TS inside E1 link */
310 u_int8_t e1_ts;
311 /* Sub-slot within the E1 TS, 0xff if full TS */
312 u_int8_t e1_ts_ss;
313};
314
Harald Welte4563eab2010-03-28 14:42:09 +0800315#define TS_F_PDCH_MODE 0x1000
Harald Welte52b1f982008-12-23 20:25:15 +0000316/* One Timeslot in a TRX */
317struct gsm_bts_trx_ts {
318 struct gsm_bts_trx *trx;
319 /* number of this timeslot at the TRX */
320 u_int8_t nr;
321
Harald Welte8470bf22008-12-25 23:28:35 +0000322 enum gsm_phys_chan_config pchan;
323
Harald Welte52b1f982008-12-23 20:25:15 +0000324 unsigned int flags;
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 Welte39c7deb2009-08-09 21:49:48 +0200327 u_int8_t nm_chan_comb;
Harald Welte8470bf22008-12-25 23:28:35 +0000328
Harald Welte6e0cd042009-09-12 13:05:33 +0200329 struct {
Harald Weltefd370892010-06-15 08:52:12 +0200330 /* Parameters below are configured by VTY */
Harald Weltea39b0f22010-06-14 22:26:10 +0200331 int enabled;
Harald Welte6e0cd042009-09-12 13:05:33 +0200332 u_int8_t maio;
333 u_int8_t hsn;
Harald Weltea39b0f22010-06-14 22:26:10 +0200334 struct bitvec arfcns;
335 u_int8_t arfcns_data[1024/8];
Harald Weltefd370892010-06-15 08:52:12 +0200336 /* This is the pre-computed MA for channel assignments */
337 struct bitvec ma;
Harald Welte29aca172010-06-15 16:45:51 +0200338 u_int8_t ma_len; /* part of ma_data that is used */
Harald Weltefd370892010-06-15 08:52:12 +0200339 u_int8_t ma_data[8]; /* 10.5.2.21: max 8 bytes value part */
Harald Welte6e0cd042009-09-12 13:05:33 +0200340 } hopping;
341
Harald Welte85770c72009-01-18 17:47:32 +0000342 /* To which E1 subslot are we connected */
343 struct gsm_e1_subslot e1_link;
344
Harald Welte8470bf22008-12-25 23:28:35 +0000345 struct gsm_lchan lchan[TS_MAX_LCHAN];
Harald Welte52b1f982008-12-23 20:25:15 +0000346};
347
348/* One TRX in a BTS */
349struct gsm_bts_trx {
Harald Weltee441d9c2009-06-21 16:17:15 +0200350 /* list header in bts->trx_list */
351 struct llist_head list;
352
Harald Welte52b1f982008-12-23 20:25:15 +0000353 struct gsm_bts *bts;
354 /* number of this TRX in the BTS */
355 u_int8_t nr;
Harald Welte197dea92010-05-14 17:59:53 +0200356 /* human readable name / description */
357 char *description;
Harald Welte1fa60c82009-02-09 18:13:26 +0000358 /* how do we talk RSL with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200359 struct gsm_e1_subslot rsl_e1_link;
360 u_int8_t rsl_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000361 struct e1inp_sign_link *rsl_link;
Harald Welte42581822009-08-08 16:12:58 +0200362
Harald Weltebbcc7a52009-02-14 19:45:44 +0000363 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200364 struct tlv_parsed nm_attr;
Harald Welte8c1d0e42009-02-15 03:38:12 +0000365 struct {
366 struct gsm_nm_state nm_state;
367 } bb_transc;
Harald Welte52b1f982008-12-23 20:25:15 +0000368
369 u_int16_t arfcn;
Harald Weltefcd24452009-06-20 18:15:19 +0200370 int nominal_power; /* in dBm */
371 unsigned int max_power_red; /* in actual dB */
Harald Welte8b697c72009-06-05 19:18:45 +0000372
373 union {
374 struct {
375 struct {
376 struct gsm_nm_state nm_state;
377 } bbsig;
378 struct {
379 struct gsm_nm_state nm_state;
380 } pa;
381 } bs11;
Harald Welte549faad2010-03-05 19:36:20 +0100382 struct {
383 unsigned int test_state;
384 } ipaccess;
Harald Welte8b697c72009-06-05 19:18:45 +0000385 };
Harald Welte85770c72009-01-18 17:47:32 +0000386 struct gsm_bts_trx_ts ts[TRX_NR_TS];
Harald Welte52b1f982008-12-23 20:25:15 +0000387};
388
Harald Welte7401ae62010-06-15 16:44:12 +0200389#define GSM_BTS_SI(bts, i) (void *)(bts->si_buf[i])
390
Harald Welte978cb422009-01-18 17:57:27 +0000391enum gsm_bts_type {
392 GSM_BTS_TYPE_UNKNOWN,
393 GSM_BTS_TYPE_BS11,
Mike Habene2d82272009-10-02 12:19:34 +0100394 GSM_BTS_TYPE_NANOBTS,
Harald Welte978cb422009-01-18 17:57:27 +0000395};
396
Harald Welte39315c42010-01-10 18:01:52 +0100397struct gsm_bts_model {
398 struct llist_head list;
399
400 enum gsm_bts_type type;
401 const char *name;
402
403 struct tlv_definition nm_att_tlvdef;
Harald Weltef3d8e922010-06-14 22:44:42 +0200404
405 struct bitvec features;
406 uint8_t _features_data[128/8];
407};
408
409enum gsm_bts_features {
410 BTS_FEAT_HSCSD,
411 BTS_FEAT_GPRS,
412 BTS_FEAT_EGPRS,
413 BTS_FEAT_ECSD,
414 BTS_FEAT_HOPPING,
Harald Welte39315c42010-01-10 18:01:52 +0100415};
416
Holger Freytherceb59b72009-02-06 18:54:00 +0000417/**
418 * A pending paging request
419 */
420struct gsm_paging_request {
Harald Welte0932d1e2009-02-16 22:53:52 +0000421 /* list_head for list of all paging requests */
Holger Freytherceb59b72009-02-06 18:54:00 +0000422 struct llist_head entry;
Harald Welte0932d1e2009-02-16 22:53:52 +0000423 /* the subscriber which we're paging. Later gsm_paging_request
424 * should probably become a part of the gsm_subscriber struct? */
Holger Freytherceb59b72009-02-06 18:54:00 +0000425 struct gsm_subscriber *subscr;
Harald Welte0932d1e2009-02-16 22:53:52 +0000426 /* back-pointer to the BTS on which we are paging */
Holger Freytherceb59b72009-02-06 18:54:00 +0000427 struct gsm_bts *bts;
Harald Welte0932d1e2009-02-16 22:53:52 +0000428 /* what kind of channel type do we ask the MS to establish */
Holger Freytherceb59b72009-02-06 18:54:00 +0000429 int chan_type;
Harald Weltecd06bfb2009-02-10 17:33:56 +0000430
431 /* Timer 3113: how long do we try to page? */
432 struct timer_list T3113;
Harald Welte0932d1e2009-02-16 22:53:52 +0000433
434 /* callback to be called in case paging completes */
435 gsm_cbfn *cbfn;
436 void *cbfn_param;
Holger Freytherceb59b72009-02-06 18:54:00 +0000437};
438
439/*
440 * This keeps track of the paging status of one BTS. It
441 * includes a number of pending requests, a back pointer
442 * to the gsm_bts, a timer and some more state.
443 */
444struct gsm_bts_paging_state {
Holger Freytherceb59b72009-02-06 18:54:00 +0000445 /* pending requests */
446 struct llist_head pending_requests;
Holger Freytherceb59b72009-02-06 18:54:00 +0000447 struct gsm_bts *bts;
448
Harald Welte75a1fa82009-02-17 01:39:41 +0000449 struct timer_list work_timer;
450
Holger Freyther392209c2009-02-10 00:06:19 +0000451 /* load */
452 u_int16_t available_slots;
Holger Freytherceb59b72009-02-06 18:54:00 +0000453};
454
Harald Welte8b697c72009-06-05 19:18:45 +0000455struct gsm_envabtse {
456 struct gsm_nm_state nm_state;
457};
458
Harald Welte55dd4432009-10-24 10:19:14 +0200459struct gsm_bts_gprs_nsvc {
460 struct gsm_bts *bts;
Harald Welteab88a622010-03-18 00:01:23 +0800461 /* data read via VTY config file, to configure the BTS
462 * via OML from BSC */
Harald Welte55dd4432009-10-24 10:19:14 +0200463 int id;
Harald Welte97a282b2010-03-14 15:37:43 +0800464 u_int16_t nsvci;
Harald Welteab88a622010-03-18 00:01:23 +0800465 u_int16_t local_port; /* on the BTS */
466 u_int16_t remote_port; /* on the SGSN */
467 u_int32_t remote_ip; /* on the SGSN */
468
Harald Welte55dd4432009-10-24 10:19:14 +0200469 struct gsm_nm_state nm_state;
470};
471
Harald Welte52b1f982008-12-23 20:25:15 +0000472/* One BTS */
473struct gsm_bts {
Harald Weltee441d9c2009-06-21 16:17:15 +0200474 /* list header in net->bts_list */
475 struct llist_head list;
476
Harald Welte52b1f982008-12-23 20:25:15 +0000477 struct gsm_network *network;
478 /* number of ths BTS in network */
479 u_int8_t nr;
Harald Welte197dea92010-05-14 17:59:53 +0200480 /* human readable name / description */
481 char *description;
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200482 /* Cell Identity */
483 u_int16_t cell_identity;
Harald Welte52b1f982008-12-23 20:25:15 +0000484 /* location area code of this BTS */
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +0200485 u_int16_t location_area_code;
Harald Welte02b0e092009-02-28 13:11:07 +0000486 /* Training Sequence Code */
487 u_int8_t tsc;
Harald Welte78f2f502009-05-23 16:56:52 +0000488 /* Base Station Identification Code (BSIC) */
489 u_int8_t bsic;
Harald Welte978cb422009-01-18 17:57:27 +0000490 /* type of BTS */
491 enum gsm_bts_type type;
Harald Welte39315c42010-01-10 18:01:52 +0100492 struct gsm_bts_model *model;
Harald Weltefcd24452009-06-20 18:15:19 +0200493 enum gsm_band band;
Harald Weltefc0d9522009-08-10 13:46:55 +0200494 /* should the channel allocator allocate channels from high TRX to TRX0,
495 * rather than starting from TRX0 and go upwards? */
496 int chan_alloc_reverse;
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200497 /* maximum Tx power that the MS is permitted to use in this cell */
498 int ms_max_power;
Harald Weltefc0d9522009-08-10 13:46:55 +0200499
Harald Welte1fa60c82009-02-09 18:13:26 +0000500 /* how do we talk OML with this TRX? */
Harald Welte42581822009-08-08 16:12:58 +0200501 struct gsm_e1_subslot oml_e1_link;
502 u_int8_t oml_tei;
Harald Welte1fa60c82009-02-09 18:13:26 +0000503 struct e1inp_sign_link *oml_link;
Harald Welte52b1f982008-12-23 20:25:15 +0000504
505 /* Abis network management O&M handle */
506 struct abis_nm_h *nmh;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000507 struct gsm_nm_state nm_state;
Harald Welte93e9d172009-06-20 19:04:31 +0200508 struct tlv_parsed nm_attr;
Harald Welte978cb422009-01-18 17:57:27 +0000509
Harald Welte52b1f982008-12-23 20:25:15 +0000510 /* number of this BTS on given E1 link */
511 u_int8_t bts_nr;
512
Holger Freytherceb59b72009-02-06 18:54:00 +0000513 /* paging state and control */
514 struct gsm_bts_paging_state paging;
515
Harald Welte52b1f982008-12-23 20:25:15 +0000516 /* CCCH is on C0 */
517 struct gsm_bts_trx *c0;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000518
519 struct {
520 struct gsm_nm_state nm_state;
521 } site_mgr;
Harald Welteedb37782009-05-01 14:59:07 +0000522
Harald Weltea43f7892009-12-01 18:04:30 +0530523 /* parameters from which we build SYSTEM INFORMATION */
524 struct {
525 struct gsm48_rach_control rach_control;
526 u_int8_t ncc_permitted;
527 struct gsm48_cell_sel_par cell_sel_par;
528 struct gsm48_cell_options cell_options;
529 struct gsm48_control_channel_descr chan_desc;
Harald Welte6c40def2009-12-14 22:07:14 +0100530 struct bitvec neigh_list;
531 struct bitvec cell_alloc;
532 struct {
533 /* bitmask large enough for all possible ARFCN's */
534 u_int8_t neigh_list[1024/8];
535 u_int8_t cell_alloc[1024/8];
536 } data;
Harald Weltea43f7892009-12-01 18:04:30 +0530537 } si_common;
538
Harald Welte7401ae62010-06-15 16:44:12 +0200539 /* buffers where we put the pre-computed SI */
540 sysinfo_buf_t si_buf[_MAX_SYSINFO_TYPE];
541
Harald Welteedb37782009-05-01 14:59:07 +0000542 /* ip.accesss Unit ID's have Site/BTS/TRX layout */
Harald Welte7b26bcb2009-05-28 11:39:21 +0000543 union {
544 struct {
545 u_int16_t site_id;
546 u_int16_t bts_id;
Harald Welte88a412a2009-12-16 17:32:37 +0100547 u_int32_t flags;
Harald Welte7b26bcb2009-05-28 11:39:21 +0000548 } ip_access;
549 struct {
550 struct {
551 struct gsm_nm_state nm_state;
552 } cclk;
553 struct {
554 struct gsm_nm_state nm_state;
555 } rack;
Harald Welte8b697c72009-06-05 19:18:45 +0000556 struct gsm_envabtse envabtse[4];
Harald Welte7b26bcb2009-05-28 11:39:21 +0000557 } bs11;
558 };
Harald Welte55dd4432009-10-24 10:19:14 +0200559
560 /* Not entirely sure how ip.access specific this is */
561 struct {
Harald Welte4511d892010-04-18 15:51:20 +0200562 enum bts_gprs_mode mode;
Harald Welte55dd4432009-10-24 10:19:14 +0200563 struct {
564 struct gsm_nm_state nm_state;
Harald Weltea5731cf2010-03-22 11:48:36 +0800565 u_int16_t nsei;
Harald Welte615e9562010-05-11 23:50:21 +0200566 uint8_t timer[7];
Harald Welte55dd4432009-10-24 10:19:14 +0200567 } nse;
568 struct {
569 struct gsm_nm_state nm_state;
Harald Welte97a282b2010-03-14 15:37:43 +0800570 u_int16_t bvci;
Harald Welte615e9562010-05-11 23:50:21 +0200571 uint8_t timer[11];
Harald Welte55dd4432009-10-24 10:19:14 +0200572 } cell;
573 struct gsm_bts_gprs_nsvc nsvc[2];
Harald Welte97a282b2010-03-14 15:37:43 +0800574 u_int8_t rac;
Harald Welte55dd4432009-10-24 10:19:14 +0200575 } gprs;
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800576
577 /* RACH NM values */
578 int rach_b_thresh;
579 int rach_ldavg_slots;
Harald Weltebbcc7a52009-02-14 19:45:44 +0000580
Harald Welte52b1f982008-12-23 20:25:15 +0000581 /* transceivers */
582 int num_trx;
Harald Weltee441d9c2009-06-21 16:17:15 +0200583 struct llist_head trx_list;
Harald Welte52b1f982008-12-23 20:25:15 +0000584};
585
Harald Welte24ff6ee2009-12-22 00:41:05 +0100586/* Some statistics of our network */
587struct gsmnet_stats {
588 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100589 struct counter *total;
590 struct counter *no_channel;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100591 } chreq;
592 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100593 struct counter *attempted;
594 struct counter *no_channel; /* no channel available */
595 struct counter *timeout; /* T3103 timeout */
596 struct counter *completed; /* HO COMPL received */
597 struct counter *failed; /* HO FAIL received */
Harald Welte24ff6ee2009-12-22 00:41:05 +0100598 } handover;
599 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100600 struct counter *attach;
601 struct counter *normal;
602 struct counter *periodic;
603 struct counter *detach;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100604 } loc_upd_type;
605 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100606 struct counter *reject;
607 struct counter *accept;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100608 } loc_upd_resp;
609 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100610 struct counter *attempted;
611 struct counter *detached;
612 struct counter *completed;
613 struct counter *expired;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100614 } paging;
615 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100616 struct counter *submitted; /* MO SMS submissions */
617 struct counter *no_receiver;
618 struct counter *delivered; /* MT SMS deliveries */
619 struct counter *rp_err_mem;
620 struct counter *rp_err_other;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100621 } sms;
622 struct {
Harald Welteffa55a42009-12-22 19:07:32 +0100623 struct counter *dialled; /* total number of dialled calls */
624 struct counter *alerted; /* we alerted the other end */
625 struct counter *connected;/* how many calls were accepted */
Harald Welte24ff6ee2009-12-22 00:41:05 +0100626 } call;
Holger Hans Peter Freyther3ba36d52010-04-17 06:48:29 +0200627 struct {
628 struct counter *rf_fail;
629 struct counter *rll_err;
630 } chan;
Holger Hans Peter Freytherbb110f92010-04-12 10:45:52 +0200631 struct {
632 struct counter *oml_fail;
633 struct counter *rsl_fail;
634 } bts;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100635};
636
Harald Welte (local)69de3972009-08-12 14:42:23 +0200637enum gsm_auth_policy {
638 GSM_AUTH_POLICY_CLOSED, /* only subscribers authorized in DB */
639 GSM_AUTH_POLICY_ACCEPT_ALL, /* accept everyone, even if not authorized in DB */
640 GSM_AUTH_POLICY_TOKEN, /* accept first, send token per sms, then revoke authorization */
641};
642
Harald Welteb84ddfc2009-12-01 17:36:54 +0530643#define GSM_T3101_DEFAULT 10
644#define GSM_T3113_DEFAULT 60
645
Harald Welte52b1f982008-12-23 20:25:15 +0000646struct gsm_network {
647 /* global parameters */
Harald Welteb84e2f42008-12-28 23:42:04 +0000648 u_int16_t country_code;
649 u_int16_t network_code;
Harald Weltec6ba9c22008-12-30 18:01:02 +0000650 char *name_long;
651 char *name_short;
Harald Welte (local)69de3972009-08-12 14:42:23 +0200652 enum gsm_auth_policy auth_policy;
Harald Welte1085c092009-11-18 20:33:19 +0100653 enum gsm48_reject_value reject_cause;
Harald Welte4381cfe2009-08-30 15:47:06 +0900654 int a5_encryption;
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100655 int neci;
Harald Welte648b6ce2009-12-14 09:00:24 +0100656 int send_mm_info;
Harald Weltebc814502009-12-19 21:41:52 +0100657 struct {
658 int active;
Harald Weltef7c28b02009-12-21 13:30:17 +0100659 /* Window RXLEV averaging */
660 unsigned int win_rxlev_avg; /* number of SACCH frames */
661 /* Window RXQUAL averaging */
662 unsigned int win_rxqual_avg; /* number of SACCH frames */
663 /* Window RXLEV neighbouring cells averaging */
664 unsigned int win_rxlev_avg_neigh; /* number of SACCH frames */
665
666 /* how often should we check for power budget HO */
667 unsigned int pwr_interval; /* SACCH frames */
668 /* how much better does a neighbor cell have to be ? */
669 unsigned int pwr_hysteresis; /* dBm */
670 /* maximum distacne before we try a handover */
671 unsigned int max_distance; /* TA values */
Harald Weltebc814502009-12-19 21:41:52 +0100672 } handover;
Harald Welte52b1f982008-12-23 20:25:15 +0000673
Harald Welte24ff6ee2009-12-22 00:41:05 +0100674 struct gsmnet_stats stats;
675
Harald Welte4bfdfe72009-06-10 23:11:52 +0800676 /* layer 4 */
677 int (*mncc_recv) (struct gsm_network *net, int msg_type, void *arg);
678 struct llist_head upqueue;
679 struct llist_head trans_list;
Holger Hans Peter Freytherabcddf12010-06-14 18:20:15 +0800680 struct bsc_api *bsc_api;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800681
Harald Welte52b1f982008-12-23 20:25:15 +0000682 unsigned int num_bts;
Harald Weltee441d9c2009-06-21 16:17:15 +0200683 struct llist_head bts_list;
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100684
685 /* timer values */
686 int T3101;
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100687 int T3103;
688 int T3105;
689 int T3107;
690 int T3109;
691 int T3111;
692 int T3113;
693 int T3115;
694 int T3117;
695 int T3119;
696 int T3141;
Harald Welteeab84a12009-12-13 10:53:12 +0100697
698 /* Radio Resource Location Protocol (TS 04.31) */
699 struct {
700 enum rrlp_mode mode;
701 } rrlp;
Holger Hans Peter Freytherca999a92010-06-15 18:52:38 +0800702 int msc_prio;
Harald Welte52b1f982008-12-23 20:25:15 +0000703};
704
Harald Welte7e310b12009-03-30 20:56:32 +0000705#define SMS_HDR_SIZE 128
706#define SMS_TEXT_SIZE 256
707struct gsm_sms {
Harald Welted409be72009-11-07 00:06:19 +0900708 unsigned long long id;
Harald Welte7e310b12009-03-30 20:56:32 +0000709 struct gsm_subscriber *sender;
710 struct gsm_subscriber *receiver;
711
Harald Welteb9c758b2009-07-05 14:02:46 +0200712 unsigned long validity_minutes;
Harald Welte76042182009-08-08 16:03:15 +0200713 u_int8_t reply_path_req;
714 u_int8_t status_rep_req;
715 u_int8_t ud_hdr_ind;
716 u_int8_t protocol_id;
717 u_int8_t data_coding_scheme;
718 u_int8_t msg_ref;
719 char dest_addr[20+1]; /* DA LV is 12 bytes max, i.e. 10 bytes
720 * BCD == 20 bytes string */
721 u_int8_t user_data_len;
722 u_int8_t user_data[SMS_TEXT_SIZE];
Harald Weltef3efc592009-07-27 20:11:35 +0200723
Harald Welte7e310b12009-03-30 20:56:32 +0000724 char text[SMS_TEXT_SIZE];
725};
726
Harald Welte3606cc52009-12-05 15:13:22 +0530727
Harald Weltee441d9c2009-06-21 16:17:15 +0200728struct gsm_network *gsm_network_init(u_int16_t country_code, u_int16_t network_code,
Harald Welte4bfdfe72009-06-10 23:11:52 +0800729 int (*mncc_recv)(struct gsm_network *, int, void *));
Harald Weltee441d9c2009-06-21 16:17:15 +0200730struct gsm_bts *gsm_bts_alloc(struct gsm_network *net, enum gsm_bts_type type,
731 u_int8_t tsc, u_int8_t bsic);
732struct gsm_bts_trx *gsm_bts_trx_alloc(struct gsm_bts *bts);
Harald Welte39315c42010-01-10 18:01:52 +0100733int gsm_set_bts_type(struct gsm_bts *bts, enum gsm_bts_type type);
Harald Weltee441d9c2009-06-21 16:17:15 +0200734
735struct gsm_bts *gsm_bts_num(struct gsm_network *net, int num);
Harald Welte84874c92009-12-14 22:33:02 +0100736
737/* Get reference to a neighbor cell on a given BCCH ARFCN */
Harald Welte0b121032009-12-15 00:21:31 +0100738struct gsm_bts *gsm_bts_neighbor(const struct gsm_bts *bts,
739 u_int16_t arfcn, u_int8_t bsic);
Harald Welte84874c92009-12-14 22:33:02 +0100740
Harald Weltee441d9c2009-06-21 16:17:15 +0200741struct gsm_bts_trx *gsm_bts_trx_num(struct gsm_bts *bts, int num);
Harald Welte8470bf22008-12-25 23:28:35 +0000742
Harald Weltea72c98e2009-01-04 16:10:38 +0000743const char *gsm_pchan_name(enum gsm_phys_chan_config c);
Harald Welte65da9122009-08-07 00:32:22 +0200744enum gsm_phys_chan_config gsm_pchan_parse(const char *name);
Harald Welte (local)ccd88452009-12-27 18:05:25 +0100745const char *gsm_lchant_name(enum gsm_chan_t c);
Harald Weltea72c98e2009-01-04 16:10:38 +0000746const char *gsm_chreq_name(enum gsm_chreq_reason_t c);
Harald Welte (local)d48f4eb2009-12-28 23:14:22 +0100747char *gsm_trx_name(struct gsm_bts_trx *trx);
Harald Welte23a68632009-02-19 17:06:42 +0000748char *gsm_ts_name(struct gsm_bts_trx_ts *ts);
Harald Welte (local)19ef62a2009-12-27 18:16:36 +0100749char *gsm_lchan_name(struct gsm_lchan *lchan);
Harald Welte1887f9d2009-12-29 10:52:38 +0100750const char *gsm_lchans_name(enum gsm_lchan_state s);
Harald Weltea72c98e2009-01-04 16:10:38 +0000751
Harald Weltead384642008-12-26 10:20:07 +0000752enum gsm_e1_event {
753 EVT_E1_NONE,
Harald Welte1fa60c82009-02-09 18:13:26 +0000754 EVT_E1_TEI_UP,
755 EVT_E1_TEI_DN,
Harald Weltead384642008-12-26 10:20:07 +0000756};
757
Harald Weltecd06bfb2009-02-10 17:33:56 +0000758void set_ts_e1link(struct gsm_bts_trx_ts *ts, u_int8_t e1_nr,
759 u_int8_t e1_ts, u_int8_t e1_ts_ss);
Harald Welte1d014a52009-08-08 15:38:29 +0200760enum gsm_bts_type parse_btstype(const char *arg);
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +0200761const char *btstype2str(enum gsm_bts_type type);
Harald Welte6e670aa2010-01-07 20:44:32 +0100762struct gsm_bts_trx *gsm_bts_trx_by_nr(struct gsm_bts *bts, int nr);
Harald Weltebe991492009-05-23 13:56:40 +0000763struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
764 struct gsm_bts *start_bts);
Harald Welte32201c12009-03-10 12:15:10 +0000765
Andreas Eversberg8226fa72009-06-29 15:19:38 +0200766extern void *tall_bsc_ctx;
Harald Weltef88c8a02009-12-20 13:48:15 +0100767extern int ipacc_rtp_direct;
Harald Welte2cf161b2009-06-20 22:36:41 +0200768
Harald Welte32201c12009-03-10 12:15:10 +0000769static inline int is_ipaccess_bts(struct gsm_bts *bts)
770{
771 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +0100772 case GSM_BTS_TYPE_NANOBTS:
Harald Welte32201c12009-03-10 12:15:10 +0000773 return 1;
774 default:
775 break;
776 }
777 return 0;
778}
779
Harald Welte5b570672009-08-10 10:08:01 +0200780static inline int is_siemens_bts(struct gsm_bts *bts)
781{
782 switch (bts->type) {
783 case GSM_BTS_TYPE_BS11:
784 return 1;
785 default:
786 break;
787 }
788
789 return 0;
790}
791
Harald Welte (local)69de3972009-08-12 14:42:23 +0200792
793enum gsm_auth_policy gsm_auth_policy_parse(const char *arg);
794const char *gsm_auth_policy_name(enum gsm_auth_policy policy);
795
Harald Welteeab84a12009-12-13 10:53:12 +0100796enum rrlp_mode rrlp_mode_parse(const char *arg);
797const char *rrlp_mode_name(enum rrlp_mode mode);
798
Harald Welte4511d892010-04-18 15:51:20 +0200799enum bts_gprs_mode bts_gprs_mode_parse(const char *arg);
800const char *bts_gprs_mode_name(enum bts_gprs_mode mode);
801
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +0100802void gsm_trx_lock_rf(struct gsm_bts_trx *trx, int locked);
803
Harald Welte97a282b2010-03-14 15:37:43 +0800804int gsm48_ra_id_by_bts(u_int8_t *buf, struct gsm_bts *bts);
805void gprs_ra_id_by_bts(struct gprs_ra_id *raid, struct gsm_bts *bts);
Harald Welted12b0fd2009-12-15 21:36:05 +0100806struct gsm_meas_rep *lchan_next_meas_rep(struct gsm_lchan *lchan);
807
Harald Weltef3d8e922010-06-14 22:44:42 +0200808int gsm_btsmodel_set_feature(struct gsm_bts_model *model, enum gsm_bts_features feat);
809int gsm_bts_has_feature(struct gsm_bts *bts, enum gsm_bts_features feat);
Harald Weltefbda4e12010-03-04 11:04:52 +0100810int gsm_bts_model_register(struct gsm_bts_model *model);
811
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800812struct gsm_subscriber_connection *subscr_con_allocate(struct gsm_lchan *lchan);
813void subscr_con_free(struct gsm_subscriber_connection *conn);
814
Harald Welte52b1f982008-12-23 20:25:15 +0000815#endif