blob: 6b15bd06c0a26d867bb3d57fd1c8542897c486a4 [file] [log] [blame]
Harald Weltefbc5ca02010-03-04 10:39:50 +01001/* (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte8470bf22008-12-25 23:28:35 +00002 *
Harald Welte52b1f982008-12-23 20:25:15 +00003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Harald Welte52b1f982008-12-23 20:25:15 +00008 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welte52b1f982008-12-23 20:25:15 +000014 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte52b1f982008-12-23 20:25:15 +000017 *
18 */
19
20
21#include <stdlib.h>
Harald Welte51f38452009-02-24 22:36:40 +000022#include <stdio.h>
Harald Welte52b1f982008-12-23 20:25:15 +000023#include <string.h>
Harald Weltefcd24452009-06-20 18:15:19 +020024#include <errno.h>
Harald Welte42581822009-08-08 16:12:58 +020025#include <ctype.h>
Harald Welte52b1f982008-12-23 20:25:15 +000026
Harald Welte97a282b2010-03-14 15:37:43 +080027#include <netinet/in.h>
28
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010029#include <osmocom/core/linuxlist.h>
30#include <osmocom/core/talloc.h>
31#include <osmocom/gsm/gsm_utils.h>
Harald Welte867d9f32011-05-23 20:30:39 +020032#include <osmocom/gsm/abis_nm.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010033#include <osmocom/core/statistics.h>
Harald Welte52b1f982008-12-23 20:25:15 +000034
Holger Hans Peter Freythered832862010-06-28 18:20:22 +080035#include <openbsc/gsm_data.h>
Holger Hans Peter Freyther3e8e0462010-09-15 22:29:25 +080036#include <openbsc/osmo_msc_data.h>
Holger Hans Peter Freythered832862010-06-28 18:20:22 +080037#include <openbsc/abis_nm.h>
38
Andreas Eversberg8226fa72009-06-29 15:19:38 +020039void *tall_bsc_ctx;
40
Harald Welte39315c42010-01-10 18:01:52 +010041static LLIST_HEAD(bts_models);
42
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020043void set_ts_e1link(struct gsm_bts_trx_ts *ts, uint8_t e1_nr,
44 uint8_t e1_ts, uint8_t e1_ts_ss)
Harald Weltecd06bfb2009-02-10 17:33:56 +000045{
46 ts->e1_link.e1_nr = e1_nr;
47 ts->e1_link.e1_ts = e1_ts;
48 ts->e1_link.e1_ts_ss = e1_ts_ss;
49}
50
Harald Welte39315c42010-01-10 18:01:52 +010051static struct gsm_bts_model *bts_model_find(enum gsm_bts_type type)
52{
53 struct gsm_bts_model *model;
54
55 llist_for_each_entry(model, &bts_models, list) {
56 if (model->type == type)
57 return model;
58 }
59
60 return NULL;
61}
62
63int gsm_bts_model_register(struct gsm_bts_model *model)
64{
65 if (bts_model_find(model->type))
66 return -EEXIST;
67
Harald Welte867d9f32011-05-23 20:30:39 +020068 tlv_def_patch(&model->nm_att_tlvdef, &abis_nm_att_tlvdef);
Harald Welte39315c42010-01-10 18:01:52 +010069 llist_add_tail(&model->list, &bts_models);
70 return 0;
71}
72
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020073struct gsm_network *gsm_network_init(uint16_t country_code, uint16_t network_code,
Harald Welte29b64e92010-12-23 01:07:46 +010074 int (*mncc_recv)(struct gsm_network *, struct msgb *))
Harald Weltee441d9c2009-06-21 16:17:15 +020075{
76 struct gsm_network *net;
77
Holger Hans Peter Freyther5ea73132009-10-29 02:29:45 +010078 net = talloc_zero(tall_bsc_ctx, struct gsm_network);
Harald Welte52b1f982008-12-23 20:25:15 +000079 if (!net)
80 return NULL;
Harald Welte52b1f982008-12-23 20:25:15 +000081
Holger Hans Peter Freyther3e8e0462010-09-15 22:29:25 +080082 net->msc_data = talloc_zero(net, struct osmo_msc_data);
83 if (!net->msc_data) {
84 talloc_free(net);
85 return NULL;
86 }
87
Daniel Willmann163f6122011-03-03 13:48:28 +010088 /* Init back pointer */
89 net->msc_data->network = net;
90
Harald Welte52b1f982008-12-23 20:25:15 +000091 net->country_code = country_code;
92 net->network_code = network_code;
Harald Weltee441d9c2009-06-21 16:17:15 +020093 net->num_bts = 0;
Holger Hans Peter Freytherd0c54022010-01-07 16:08:42 +010094 net->reject_cause = GSM48_REJECT_ROAMING_NOT_ALLOWED;
Harald Welteb84ddfc2009-12-01 17:36:54 +053095 net->T3101 = GSM_T3101_DEFAULT;
96 net->T3113 = GSM_T3113_DEFAULT;
97 /* FIXME: initialize all other timers! */
Harald Welte52b1f982008-12-23 20:25:15 +000098
Harald Weltef7c28b02009-12-21 13:30:17 +010099 /* default set of handover parameters */
100 net->handover.win_rxlev_avg = 10;
101 net->handover.win_rxqual_avg = 1;
102 net->handover.win_rxlev_avg_neigh = 10;
103 net->handover.pwr_interval = 6;
104 net->handover.pwr_hysteresis = 3;
105 net->handover.max_distance = 9999;
106
Harald Welte4bfdfe72009-06-10 23:11:52 +0800107 INIT_LLIST_HEAD(&net->trans_list);
108 INIT_LLIST_HEAD(&net->upqueue);
Harald Weltee441d9c2009-06-21 16:17:15 +0200109 INIT_LLIST_HEAD(&net->bts_list);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800110
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200111 net->stats.chreq.total = osmo_counter_alloc("net.chreq.total");
112 net->stats.chreq.no_channel = osmo_counter_alloc("net.chreq.no_channel");
113 net->stats.handover.attempted = osmo_counter_alloc("net.handover.attempted");
114 net->stats.handover.no_channel = osmo_counter_alloc("net.handover.no_channel");
115 net->stats.handover.timeout = osmo_counter_alloc("net.handover.timeout");
116 net->stats.handover.completed = osmo_counter_alloc("net.handover.completed");
117 net->stats.handover.failed = osmo_counter_alloc("net.handover.failed");
118 net->stats.loc_upd_type.attach = osmo_counter_alloc("net.loc_upd_type.attach");
119 net->stats.loc_upd_type.normal = osmo_counter_alloc("net.loc_upd_type.normal");
120 net->stats.loc_upd_type.periodic = osmo_counter_alloc("net.loc_upd_type.periodic");
121 net->stats.loc_upd_type.detach = osmo_counter_alloc("net.imsi_detach.count");
122 net->stats.loc_upd_resp.reject = osmo_counter_alloc("net.loc_upd_resp.reject");
123 net->stats.loc_upd_resp.accept = osmo_counter_alloc("net.loc_upd_resp.accept");
124 net->stats.paging.attempted = osmo_counter_alloc("net.paging.attempted");
125 net->stats.paging.detached = osmo_counter_alloc("net.paging.detached");
126 net->stats.paging.completed = osmo_counter_alloc("net.paging.completed");
127 net->stats.paging.expired = osmo_counter_alloc("net.paging.expired");
128 net->stats.sms.submitted = osmo_counter_alloc("net.sms.submitted");
129 net->stats.sms.no_receiver = osmo_counter_alloc("net.sms.no_receiver");
130 net->stats.sms.delivered = osmo_counter_alloc("net.sms.delivered");
131 net->stats.sms.rp_err_mem = osmo_counter_alloc("net.sms.rp_err_mem");
132 net->stats.sms.rp_err_other = osmo_counter_alloc("net.sms.rp_err_other");
133 net->stats.call.mo_setup = osmo_counter_alloc("net.call.mo_setup");
134 net->stats.call.mo_connect_ack = osmo_counter_alloc("net.call.mo_connect_ack");
135 net->stats.call.mt_setup = osmo_counter_alloc("net.call.mt_setup");
136 net->stats.call.mt_connect = osmo_counter_alloc("net.call.mt_connect");
137 net->stats.chan.rf_fail = osmo_counter_alloc("net.chan.rf_fail");
138 net->stats.chan.rll_err = osmo_counter_alloc("net.chan.rll_err");
139 net->stats.bts.oml_fail = osmo_counter_alloc("net.bts.oml_fail");
140 net->stats.bts.rsl_fail = osmo_counter_alloc("net.bts.rsl_fail");
Harald Welteffa55a42009-12-22 19:07:32 +0100141
Harald Welte4bfdfe72009-06-10 23:11:52 +0800142 net->mncc_recv = mncc_recv;
143
Holger Hans Peter Freythere1880102011-04-23 23:31:31 +0200144 INIT_LLIST_HEAD(&net->msc_data->dests);
Holger Hans Peter Freyther469692c2010-09-16 02:00:01 +0800145 net->msc_data->ping_timeout = 20;
146 net->msc_data->pong_timeout = 5;
Holger Hans Peter Freyther4de11162010-11-03 13:12:18 +0100147 net->msc_data->core_ncc = -1;
Holger Hans Peter Freyther2a8675e2010-11-05 19:43:07 +0100148 net->msc_data->core_mcc = -1;
Holger Hans Peter Freytherfe166222010-11-03 13:32:48 +0100149 net->msc_data->rtp_base = 4000;
Holger Hans Peter Freyther469692c2010-09-16 02:00:01 +0800150
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +0800151 gsm_net_update_ctype(net);
152
Harald Welte8470bf22008-12-25 23:28:35 +0000153 return net;
Harald Welte52b1f982008-12-23 20:25:15 +0000154}
Harald Welte23a68632009-02-19 17:06:42 +0000155
Harald Weltee441d9c2009-06-21 16:17:15 +0200156struct gsm_bts *gsm_bts_num(struct gsm_network *net, int num)
157{
158 struct gsm_bts *bts;
159
160 if (num >= net->num_bts)
161 return NULL;
162
163 llist_for_each_entry(bts, &net->bts_list, list) {
164 if (bts->nr == num)
165 return bts;
166 }
167
168 return NULL;
169}
170
Harald Welte84874c92009-12-14 22:33:02 +0100171/* Get reference to a neighbor cell on a given BCCH ARFCN */
Harald Welte0b121032009-12-15 00:21:31 +0100172struct gsm_bts *gsm_bts_neighbor(const struct gsm_bts *bts,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200173 uint16_t arfcn, uint8_t bsic)
Harald Welte84874c92009-12-14 22:33:02 +0100174{
175 struct gsm_bts *neigh;
176 /* FIXME: use some better heuristics here to determine which cell
177 * using this ARFCN really is closest to the target cell. For
178 * now we simply assume that each ARFCN will only be used by one
179 * cell */
180
181 llist_for_each_entry(neigh, &bts->network->bts_list, list) {
Harald Welte0b121032009-12-15 00:21:31 +0100182 if (neigh->c0->arfcn == arfcn &&
183 neigh->bsic == bsic)
Harald Welte84874c92009-12-14 22:33:02 +0100184 return neigh;
185 }
186
187 return NULL;
188}
189
Harald Welte92b1fe42010-03-25 11:45:30 +0800190static const struct value_string bts_types[] = {
191 { GSM_BTS_TYPE_UNKNOWN, "unknown" },
192 { GSM_BTS_TYPE_BS11, "bs11" },
193 { GSM_BTS_TYPE_NANOBTS, "nanobts" },
Harald Weltedb44f602011-02-11 18:36:18 +0100194 { GSM_BTS_TYPE_RBS2000, "rbs2000" },
Harald Weltefd355a32011-03-04 13:41:31 +0100195 { GSM_BTS_TYPE_HSL_FEMTO, "hsl_femto" },
Harald Welte92b1fe42010-03-25 11:45:30 +0800196 { 0, NULL }
Harald Welte32201c12009-03-10 12:15:10 +0000197};
198
Harald Welte1d014a52009-08-08 15:38:29 +0200199enum gsm_bts_type parse_btstype(const char *arg)
Harald Welte32201c12009-03-10 12:15:10 +0000200{
Harald Welte92b1fe42010-03-25 11:45:30 +0800201 return get_string_value(bts_types, arg);
Harald Welte32201c12009-03-10 12:15:10 +0000202}
203
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +0200204const char *btstype2str(enum gsm_bts_type type)
Harald Welte32201c12009-03-10 12:15:10 +0000205{
Harald Welte92b1fe42010-03-25 11:45:30 +0800206 return get_value_string(bts_types, type);
Harald Welte32201c12009-03-10 12:15:10 +0000207}
Harald Weltebe991492009-05-23 13:56:40 +0000208
Harald Welte6e670aa2010-01-07 20:44:32 +0100209struct gsm_bts_trx *gsm_bts_trx_by_nr(struct gsm_bts *bts, int nr)
210{
211 struct gsm_bts_trx *trx;
212
213 llist_for_each_entry(trx, &bts->trx_list, list) {
214 if (trx->nr == nr)
215 return trx;
216 }
217 return NULL;
218}
219
Harald Weltebe991492009-05-23 13:56:40 +0000220/* Search for a BTS in the given Location Area; optionally start searching
221 * with start_bts (for continuing to search after the first result) */
222struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
223 struct gsm_bts *start_bts)
224{
225 int i;
226 struct gsm_bts *bts;
227 int skip = 0;
228
229 if (start_bts)
230 skip = 1;
231
232 for (i = 0; i < net->num_bts; i++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200233 bts = gsm_bts_num(net, i);
Harald Weltebe991492009-05-23 13:56:40 +0000234
235 if (skip) {
236 if (start_bts == bts)
237 skip = 0;
238 continue;
239 }
240
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +0200241 if (lac == GSM_LAC_RESERVED_ALL_BTS || bts->location_area_code == lac)
Harald Weltebe991492009-05-23 13:56:40 +0000242 return bts;
243 }
244 return NULL;
245}
Harald Weltefcd24452009-06-20 18:15:19 +0200246
Harald Welte92b1fe42010-03-25 11:45:30 +0800247static const struct value_string auth_policy_names[] = {
248 { GSM_AUTH_POLICY_CLOSED, "closed" },
249 { GSM_AUTH_POLICY_ACCEPT_ALL, "accept-all" },
250 { GSM_AUTH_POLICY_TOKEN, "token" },
251 { 0, NULL }
Harald Welte (local)69de3972009-08-12 14:42:23 +0200252};
253
254enum gsm_auth_policy gsm_auth_policy_parse(const char *arg)
255{
Harald Welte92b1fe42010-03-25 11:45:30 +0800256 return get_string_value(auth_policy_names, arg);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200257}
258
259const char *gsm_auth_policy_name(enum gsm_auth_policy policy)
260{
Harald Welte92b1fe42010-03-25 11:45:30 +0800261 return get_value_string(auth_policy_names, policy);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200262}
263
Harald Welte92b1fe42010-03-25 11:45:30 +0800264static const struct value_string rrlp_mode_names[] = {
265 { RRLP_MODE_NONE, "none" },
266 { RRLP_MODE_MS_BASED, "ms-based" },
267 { RRLP_MODE_MS_PREF, "ms-preferred" },
268 { RRLP_MODE_ASS_PREF, "ass-preferred" },
269 { 0, NULL }
Harald Welteeab84a12009-12-13 10:53:12 +0100270};
271
272enum rrlp_mode rrlp_mode_parse(const char *arg)
273{
Harald Welte92b1fe42010-03-25 11:45:30 +0800274 return get_string_value(rrlp_mode_names, arg);
Harald Welteeab84a12009-12-13 10:53:12 +0100275}
276
277const char *rrlp_mode_name(enum rrlp_mode mode)
278{
Harald Welte92b1fe42010-03-25 11:45:30 +0800279 return get_value_string(rrlp_mode_names, mode);
Harald Welteeab84a12009-12-13 10:53:12 +0100280}
Harald Welted12b0fd2009-12-15 21:36:05 +0100281
Harald Welte4511d892010-04-18 15:51:20 +0200282static const struct value_string bts_gprs_mode_names[] = {
283 { BTS_GPRS_NONE, "none" },
284 { BTS_GPRS_GPRS, "gprs" },
285 { BTS_GPRS_EGPRS, "egprs" },
286 { 0, NULL }
287};
288
289enum bts_gprs_mode bts_gprs_mode_parse(const char *arg)
290{
291 return get_string_value(bts_gprs_mode_names, arg);
292}
293
294const char *bts_gprs_mode_name(enum bts_gprs_mode mode)
295{
296 return get_value_string(bts_gprs_mode_names, mode);
297}
298
Harald Welted12b0fd2009-12-15 21:36:05 +0100299struct gsm_meas_rep *lchan_next_meas_rep(struct gsm_lchan *lchan)
300{
301 struct gsm_meas_rep *meas_rep;
302
303 meas_rep = &lchan->meas_rep[lchan->meas_rep_idx];
304 memset(meas_rep, 0, sizeof(*meas_rep));
305 meas_rep->lchan = lchan;
306 lchan->meas_rep_idx = (lchan->meas_rep_idx + 1)
307 % ARRAY_SIZE(lchan->meas_rep);
308
309 return meas_rep;
310}
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100311
Harald Weltef3d8e922010-06-14 22:44:42 +0200312int gsm_btsmodel_set_feature(struct gsm_bts_model *bts, enum gsm_bts_features feat)
313{
314 return bitvec_set_bit_pos(&bts->features, feat, 1);
315}
316
317int gsm_bts_has_feature(struct gsm_bts *bts, enum gsm_bts_features feat)
318{
319 return bitvec_get_bit_pos(&bts->model->features, feat);
320}
321
Harald Welte39315c42010-01-10 18:01:52 +0100322int gsm_set_bts_type(struct gsm_bts *bts, enum gsm_bts_type type)
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100323{
Harald Welte39315c42010-01-10 18:01:52 +0100324 struct gsm_bts_model *model;
325
326 model = bts_model_find(type);
327 if (!model)
328 return -EINVAL;
329
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100330 bts->type = type;
Harald Welte39315c42010-01-10 18:01:52 +0100331 bts->model = model;
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100332
Pablo Neira Ayuso0d2881a2011-05-14 11:32:48 +0200333 if (model->start && !model->started) {
334 int ret = model->start(bts->network);
335 if (ret < 0)
336 return ret;
337
338 model->started = true;
339 }
340
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100341 switch (bts->type) {
Harald Weltefd355a32011-03-04 13:41:31 +0100342 case GSM_BTS_TYPE_HSL_FEMTO:
343 bts->c0->rsl_tei = 0;
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100344 case GSM_BTS_TYPE_NANOBTS:
345 /* Set the default OML Stream ID to 0xff */
346 bts->oml_tei = 0xff;
347 bts->c0->nominal_power = 23;
348 break;
349 case GSM_BTS_TYPE_BS11:
Holger Hans Peter Freyther6fc87912010-05-14 02:53:22 +0800350 case GSM_BTS_TYPE_UNKNOWN:
351 break;
Harald Weltea8e6a652011-02-13 22:13:28 +0100352 case GSM_BTS_TYPE_RBS2000:
353 INIT_LLIST_HEAD(&bts->rbs2000.is.conn_groups);
Harald Weltea02085d2011-02-13 22:45:02 +0100354 INIT_LLIST_HEAD(&bts->rbs2000.con.conn_groups);
Harald Weltea8e6a652011-02-13 22:13:28 +0100355 break;
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100356 }
Harald Welte39315c42010-01-10 18:01:52 +0100357
358 return 0;
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100359}
Harald Welte3300c012011-06-05 13:31:33 +0200360
361struct gsm_bts *gsm_bts_alloc_register(struct gsm_network *net, enum gsm_bts_type type,
362 uint8_t tsc, uint8_t bsic)
363{
364 struct gsm_bts_model *model = bts_model_find(type);
365 struct gsm_bts *bts;
366
Harald Welte28307642011-06-06 17:52:56 +0200367 if (!model && type != GSM_BTS_TYPE_UNKNOWN)
Harald Welte3300c012011-06-05 13:31:33 +0200368 return NULL;
Harald Welte3300c012011-06-05 13:31:33 +0200369
370 bts = gsm_bts_alloc(net);
371 if (!bts)
372 return NULL;
373
374 bts->network = net;
375 bts->nr = net->num_bts++;
376 bts->type = type;
377 bts->model = model;
378 bts->tsc = tsc;
379 bts->bsic = bsic;
380
381 bts->neigh_list_manual_mode = 0;
382 bts->si_common.cell_sel_par.cell_resel_hyst = 2; /* 4 dB */
383 bts->si_common.cell_sel_par.rxlev_acc_min = 0;
384 bts->si_common.neigh_list.data = bts->si_common.data.neigh_list;
385 bts->si_common.neigh_list.data_len =
386 sizeof(bts->si_common.data.neigh_list);
387 bts->si_common.si5_neigh_list.data = bts->si_common.data.si5_neigh_list;
388 bts->si_common.si5_neigh_list.data_len =
389 sizeof(bts->si_common.data.si5_neigh_list);
390 bts->si_common.cell_alloc.data = bts->si_common.data.cell_alloc;
391 bts->si_common.cell_alloc.data_len =
392 sizeof(bts->si_common.data.cell_alloc);
393 bts->si_common.rach_control.re = 1; /* no re-establishment */
394 bts->si_common.rach_control.tx_integer = 9; /* 12 slots spread - 217/115 slots delay */
395 bts->si_common.rach_control.max_trans = 3; /* 7 retransmissions */
396 bts->si_common.rach_control.t2 = 4; /* no emergency calls */
397
398 llist_add_tail(&bts->list, &net->bts_list);
399
400 INIT_LLIST_HEAD(&bts->abis_queue);
401
402 return bts;
403}
404
405void gprs_ra_id_by_bts(struct gprs_ra_id *raid, struct gsm_bts *bts)
406{
407 raid->mcc = bts->network->country_code;
408 raid->mnc = bts->network->network_code;
409 raid->lac = bts->location_area_code;
410 raid->rac = bts->gprs.rac;
411}
412
413int gsm48_ra_id_by_bts(uint8_t *buf, struct gsm_bts *bts)
414{
415 struct gprs_ra_id raid;
416
417 gprs_ra_id_by_bts(&raid, bts);
418
419 return gsm48_construct_ra(buf, &raid);
420}