blob: 37ba3c02e887264652e713f60bca3a91e6cc8de1 [file] [log] [blame]
Jacob Erlbeckcdd43022014-11-10 11:21:32 +01001/* (C) 2008-2010 by Harald Welte <laforge@gnumonks.org>
2 *
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * 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
8 * (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
13 * GNU Affero General Public License for more details.
14 *
15 * 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/>.
17 *
18 */
19
20#include <openbsc/gsm_data.h>
21#include <openbsc/osmo_msc_data.h>
Jacob Erlbeck1e30a282014-12-03 09:28:24 +010022#include <openbsc/gsm_subscriber.h>
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010023
Maxe6052c42016-06-30 10:25:49 +020024#include <stdbool.h>
25
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010026struct gsm_network *gsm_network_init(uint16_t country_code, uint16_t network_code,
27 int (*mncc_recv)(struct gsm_network *, struct msgb *))
28{
29 struct gsm_network *net;
Maxe4431452016-07-27 12:06:36 +020030 const char *default_regexp = ".*";
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010031
32 net = talloc_zero(tall_bsc_ctx, struct gsm_network);
33 if (!net)
34 return NULL;
35
36 net->bsc_data = talloc_zero(net, struct osmo_bsc_data);
37 if (!net->bsc_data) {
38 talloc_free(net);
39 return NULL;
40 }
41
Jacob Erlbeck1e30a282014-12-03 09:28:24 +010042 net->subscr_group = talloc_zero(net, struct gsm_subscriber_group);
43 if (!net->subscr_group) {
44 talloc_free(net);
45 return NULL;
46 }
47
Maxe6052c42016-06-30 10:25:49 +020048 if (gsm_parse_reg(net, &net->authorized_regexp, &net->authorized_reg_str, 1,
49 &default_regexp) != 0)
50 return NULL;
51
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010052 /* Init back pointer */
53 net->bsc_data->auto_off_timeout = -1;
54 net->bsc_data->network = net;
55 INIT_LLIST_HEAD(&net->bsc_data->mscs);
Holger Hans Peter Freyther1ba07302015-01-27 10:27:53 +010056
Jacob Erlbeck1e30a282014-12-03 09:28:24 +010057 net->subscr_group->net = net;
Maxe6052c42016-06-30 10:25:49 +020058 net->auto_create_subscr = true;
59 net->auto_assign_exten = true;
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010060
61 net->country_code = country_code;
62 net->network_code = network_code;
63 net->num_bts = 0;
64 net->reject_cause = GSM48_REJECT_ROAMING_NOT_ALLOWED;
65 net->T3101 = GSM_T3101_DEFAULT;
66 net->T3105 = GSM_T3105_DEFAULT;
67 net->T3113 = GSM_T3113_DEFAULT;
68 net->T3122 = GSM_T3122_DEFAULT;
69 /* FIXME: initialize all other timers! */
70
71 /* default set of handover parameters */
72 net->handover.win_rxlev_avg = 10;
73 net->handover.win_rxqual_avg = 1;
74 net->handover.win_rxlev_avg_neigh = 10;
75 net->handover.pwr_interval = 6;
76 net->handover.pwr_hysteresis = 3;
77 net->handover.max_distance = 9999;
78
79 INIT_LLIST_HEAD(&net->trans_list);
80 INIT_LLIST_HEAD(&net->upqueue);
81 INIT_LLIST_HEAD(&net->bts_list);
82
Alexander Couzens20423ea2016-07-12 15:42:02 +020083 /* init statistics */
Alexander Couzensb847a212016-08-02 11:34:11 +020084 net->bsc_ctrs = rate_ctr_group_alloc(net, &bsc_ctrg_desc, 0);
85 net->bsc_ctrs = rate_ctr_group_alloc(net, &msc_ctrg_desc, 0);
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010086
87 net->mncc_recv = mncc_recv;
Max0fcd2e22016-06-07 15:32:16 +020088 net->ext_min = GSM_MIN_EXTEN;
89 net->ext_max = GSM_MAX_EXTEN;
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010090 gsm_net_update_ctype(net);
91
Neels Hofmeyr5f0c71b2016-07-23 20:15:28 +020092 net->dyn_ts_allow_tch_f = true;
93
Jacob Erlbeckcdd43022014-11-10 11:21:32 +010094 return net;
95}
96