blob: a731c1a34a66b50eaa042e21a94f4dd154b5c396 [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 Freyther8ec49522011-08-15 15:53:00 +020082 net->bsc_data = talloc_zero(net, struct osmo_bsc_data);
83 if (!net->bsc_data) {
Holger Hans Peter Freyther3e8e0462010-09-15 22:29:25 +080084 talloc_free(net);
85 return NULL;
86 }
87
Daniel Willmann163f6122011-03-03 13:48:28 +010088 /* Init back pointer */
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +020089 net->bsc_data->network = net;
Daniel Willmann163f6122011-03-03 13:48:28 +010090
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 Freyther8ec49522011-08-15 15:53:00 +0200144 INIT_LLIST_HEAD(&net->bsc_data->msc.dests);
145 net->bsc_data->msc.ping_timeout = 20;
146 net->bsc_data->msc.pong_timeout = 5;
147 net->bsc_data->msc.core_ncc = -1;
148 net->bsc_data->msc.core_mcc = -1;
149 net->bsc_data->msc.rtp_base = 4000;
150 net->bsc_data->msc.network = net;
Holger Hans Peter Freyther469692c2010-09-16 02:00:01 +0800151
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +0800152 gsm_net_update_ctype(net);
153
Harald Welte8470bf22008-12-25 23:28:35 +0000154 return net;
Harald Welte52b1f982008-12-23 20:25:15 +0000155}
Harald Welte23a68632009-02-19 17:06:42 +0000156
Harald Weltee441d9c2009-06-21 16:17:15 +0200157struct gsm_bts *gsm_bts_num(struct gsm_network *net, int num)
158{
159 struct gsm_bts *bts;
160
161 if (num >= net->num_bts)
162 return NULL;
163
164 llist_for_each_entry(bts, &net->bts_list, list) {
165 if (bts->nr == num)
166 return bts;
167 }
168
169 return NULL;
170}
171
Harald Welte84874c92009-12-14 22:33:02 +0100172/* Get reference to a neighbor cell on a given BCCH ARFCN */
Harald Welte0b121032009-12-15 00:21:31 +0100173struct gsm_bts *gsm_bts_neighbor(const struct gsm_bts *bts,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200174 uint16_t arfcn, uint8_t bsic)
Harald Welte84874c92009-12-14 22:33:02 +0100175{
176 struct gsm_bts *neigh;
177 /* FIXME: use some better heuristics here to determine which cell
178 * using this ARFCN really is closest to the target cell. For
179 * now we simply assume that each ARFCN will only be used by one
180 * cell */
181
182 llist_for_each_entry(neigh, &bts->network->bts_list, list) {
Harald Welte0b121032009-12-15 00:21:31 +0100183 if (neigh->c0->arfcn == arfcn &&
184 neigh->bsic == bsic)
Harald Welte84874c92009-12-14 22:33:02 +0100185 return neigh;
186 }
187
188 return NULL;
189}
190
Harald Welte92b1fe42010-03-25 11:45:30 +0800191static const struct value_string bts_types[] = {
192 { GSM_BTS_TYPE_UNKNOWN, "unknown" },
193 { GSM_BTS_TYPE_BS11, "bs11" },
194 { GSM_BTS_TYPE_NANOBTS, "nanobts" },
Harald Weltedb44f602011-02-11 18:36:18 +0100195 { GSM_BTS_TYPE_RBS2000, "rbs2000" },
Harald Weltefd355a32011-03-04 13:41:31 +0100196 { GSM_BTS_TYPE_HSL_FEMTO, "hsl_femto" },
Dieter Spaar16646022011-07-28 00:01:50 +0200197 { GSM_BTS_TYPE_NOKIA_SITE, "nokia_site" },
Harald Welte92b1fe42010-03-25 11:45:30 +0800198 { 0, NULL }
Harald Welte32201c12009-03-10 12:15:10 +0000199};
200
Harald Welte1d014a52009-08-08 15:38:29 +0200201enum gsm_bts_type parse_btstype(const char *arg)
Harald Welte32201c12009-03-10 12:15:10 +0000202{
Harald Welte92b1fe42010-03-25 11:45:30 +0800203 return get_string_value(bts_types, arg);
Harald Welte32201c12009-03-10 12:15:10 +0000204}
205
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +0200206const char *btstype2str(enum gsm_bts_type type)
Harald Welte32201c12009-03-10 12:15:10 +0000207{
Harald Welte92b1fe42010-03-25 11:45:30 +0800208 return get_value_string(bts_types, type);
Harald Welte32201c12009-03-10 12:15:10 +0000209}
Harald Weltebe991492009-05-23 13:56:40 +0000210
Harald Welte6e670aa2010-01-07 20:44:32 +0100211struct gsm_bts_trx *gsm_bts_trx_by_nr(struct gsm_bts *bts, int nr)
212{
213 struct gsm_bts_trx *trx;
214
215 llist_for_each_entry(trx, &bts->trx_list, list) {
216 if (trx->nr == nr)
217 return trx;
218 }
219 return NULL;
220}
221
Harald Weltebe991492009-05-23 13:56:40 +0000222/* Search for a BTS in the given Location Area; optionally start searching
223 * with start_bts (for continuing to search after the first result) */
224struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
225 struct gsm_bts *start_bts)
226{
227 int i;
228 struct gsm_bts *bts;
229 int skip = 0;
230
231 if (start_bts)
232 skip = 1;
233
234 for (i = 0; i < net->num_bts; i++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200235 bts = gsm_bts_num(net, i);
Harald Weltebe991492009-05-23 13:56:40 +0000236
237 if (skip) {
238 if (start_bts == bts)
239 skip = 0;
240 continue;
241 }
242
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +0200243 if (lac == GSM_LAC_RESERVED_ALL_BTS || bts->location_area_code == lac)
Harald Weltebe991492009-05-23 13:56:40 +0000244 return bts;
245 }
246 return NULL;
247}
Harald Weltefcd24452009-06-20 18:15:19 +0200248
Harald Welte92b1fe42010-03-25 11:45:30 +0800249static const struct value_string auth_policy_names[] = {
250 { GSM_AUTH_POLICY_CLOSED, "closed" },
251 { GSM_AUTH_POLICY_ACCEPT_ALL, "accept-all" },
252 { GSM_AUTH_POLICY_TOKEN, "token" },
253 { 0, NULL }
Harald Welte (local)69de3972009-08-12 14:42:23 +0200254};
255
256enum gsm_auth_policy gsm_auth_policy_parse(const char *arg)
257{
Harald Welte92b1fe42010-03-25 11:45:30 +0800258 return get_string_value(auth_policy_names, arg);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200259}
260
261const char *gsm_auth_policy_name(enum gsm_auth_policy policy)
262{
Harald Welte92b1fe42010-03-25 11:45:30 +0800263 return get_value_string(auth_policy_names, policy);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200264}
265
Harald Welte92b1fe42010-03-25 11:45:30 +0800266static const struct value_string rrlp_mode_names[] = {
267 { RRLP_MODE_NONE, "none" },
268 { RRLP_MODE_MS_BASED, "ms-based" },
269 { RRLP_MODE_MS_PREF, "ms-preferred" },
270 { RRLP_MODE_ASS_PREF, "ass-preferred" },
271 { 0, NULL }
Harald Welteeab84a12009-12-13 10:53:12 +0100272};
273
274enum rrlp_mode rrlp_mode_parse(const char *arg)
275{
Harald Welte92b1fe42010-03-25 11:45:30 +0800276 return get_string_value(rrlp_mode_names, arg);
Harald Welteeab84a12009-12-13 10:53:12 +0100277}
278
279const char *rrlp_mode_name(enum rrlp_mode mode)
280{
Harald Welte92b1fe42010-03-25 11:45:30 +0800281 return get_value_string(rrlp_mode_names, mode);
Harald Welteeab84a12009-12-13 10:53:12 +0100282}
Harald Welted12b0fd2009-12-15 21:36:05 +0100283
Harald Welte4511d892010-04-18 15:51:20 +0200284static const struct value_string bts_gprs_mode_names[] = {
285 { BTS_GPRS_NONE, "none" },
286 { BTS_GPRS_GPRS, "gprs" },
287 { BTS_GPRS_EGPRS, "egprs" },
288 { 0, NULL }
289};
290
291enum bts_gprs_mode bts_gprs_mode_parse(const char *arg)
292{
293 return get_string_value(bts_gprs_mode_names, arg);
294}
295
296const char *bts_gprs_mode_name(enum bts_gprs_mode mode)
297{
298 return get_value_string(bts_gprs_mode_names, mode);
299}
300
Harald Welted12b0fd2009-12-15 21:36:05 +0100301struct gsm_meas_rep *lchan_next_meas_rep(struct gsm_lchan *lchan)
302{
303 struct gsm_meas_rep *meas_rep;
304
305 meas_rep = &lchan->meas_rep[lchan->meas_rep_idx];
306 memset(meas_rep, 0, sizeof(*meas_rep));
307 meas_rep->lchan = lchan;
308 lchan->meas_rep_idx = (lchan->meas_rep_idx + 1)
309 % ARRAY_SIZE(lchan->meas_rep);
310
311 return meas_rep;
312}
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100313
Harald Weltef3d8e922010-06-14 22:44:42 +0200314int gsm_btsmodel_set_feature(struct gsm_bts_model *bts, enum gsm_bts_features feat)
315{
316 return bitvec_set_bit_pos(&bts->features, feat, 1);
317}
318
319int gsm_bts_has_feature(struct gsm_bts *bts, enum gsm_bts_features feat)
320{
321 return bitvec_get_bit_pos(&bts->model->features, feat);
322}
323
Harald Welte39315c42010-01-10 18:01:52 +0100324int gsm_set_bts_type(struct gsm_bts *bts, enum gsm_bts_type type)
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100325{
Harald Welte39315c42010-01-10 18:01:52 +0100326 struct gsm_bts_model *model;
327
328 model = bts_model_find(type);
329 if (!model)
330 return -EINVAL;
331
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100332 bts->type = type;
Harald Welte39315c42010-01-10 18:01:52 +0100333 bts->model = model;
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100334
Pablo Neira Ayuso0d2881a2011-05-14 11:32:48 +0200335 if (model->start && !model->started) {
336 int ret = model->start(bts->network);
337 if (ret < 0)
338 return ret;
339
340 model->started = true;
341 }
342
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100343 switch (bts->type) {
Harald Weltefd355a32011-03-04 13:41:31 +0100344 case GSM_BTS_TYPE_HSL_FEMTO:
345 bts->c0->rsl_tei = 0;
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100346 case GSM_BTS_TYPE_NANOBTS:
347 /* Set the default OML Stream ID to 0xff */
348 bts->oml_tei = 0xff;
349 bts->c0->nominal_power = 23;
350 break;
Harald Weltea8e6a652011-02-13 22:13:28 +0100351 case GSM_BTS_TYPE_RBS2000:
352 INIT_LLIST_HEAD(&bts->rbs2000.is.conn_groups);
Harald Weltea02085d2011-02-13 22:45:02 +0100353 INIT_LLIST_HEAD(&bts->rbs2000.con.conn_groups);
Harald Weltea8e6a652011-02-13 22:13:28 +0100354 break;
Holger Hans Peter Freytherf02bb202012-02-03 19:44:37 +0100355 case GSM_BTS_TYPE_BS11:
356 case GSM_BTS_TYPE_UNKNOWN:
357 case GSM_BTS_TYPE_NOKIA_SITE:
358 break;
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100359 }
Harald Welte39315c42010-01-10 18:01:52 +0100360
361 return 0;
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100362}
Harald Welte3300c012011-06-05 13:31:33 +0200363
364struct gsm_bts *gsm_bts_alloc_register(struct gsm_network *net, enum gsm_bts_type type,
365 uint8_t tsc, uint8_t bsic)
366{
367 struct gsm_bts_model *model = bts_model_find(type);
368 struct gsm_bts *bts;
369
Harald Welte28307642011-06-06 17:52:56 +0200370 if (!model && type != GSM_BTS_TYPE_UNKNOWN)
Harald Welte3300c012011-06-05 13:31:33 +0200371 return NULL;
Harald Welte3300c012011-06-05 13:31:33 +0200372
373 bts = gsm_bts_alloc(net);
374 if (!bts)
375 return NULL;
376
377 bts->network = net;
378 bts->nr = net->num_bts++;
379 bts->type = type;
380 bts->model = model;
381 bts->tsc = tsc;
382 bts->bsic = bsic;
383
384 bts->neigh_list_manual_mode = 0;
385 bts->si_common.cell_sel_par.cell_resel_hyst = 2; /* 4 dB */
386 bts->si_common.cell_sel_par.rxlev_acc_min = 0;
387 bts->si_common.neigh_list.data = bts->si_common.data.neigh_list;
388 bts->si_common.neigh_list.data_len =
389 sizeof(bts->si_common.data.neigh_list);
390 bts->si_common.si5_neigh_list.data = bts->si_common.data.si5_neigh_list;
391 bts->si_common.si5_neigh_list.data_len =
392 sizeof(bts->si_common.data.si5_neigh_list);
393 bts->si_common.cell_alloc.data = bts->si_common.data.cell_alloc;
394 bts->si_common.cell_alloc.data_len =
395 sizeof(bts->si_common.data.cell_alloc);
396 bts->si_common.rach_control.re = 1; /* no re-establishment */
397 bts->si_common.rach_control.tx_integer = 9; /* 12 slots spread - 217/115 slots delay */
398 bts->si_common.rach_control.max_trans = 3; /* 7 retransmissions */
399 bts->si_common.rach_control.t2 = 4; /* no emergency calls */
400
401 llist_add_tail(&bts->list, &net->bts_list);
402
403 INIT_LLIST_HEAD(&bts->abis_queue);
404
405 return bts;
406}
407
408void gprs_ra_id_by_bts(struct gprs_ra_id *raid, struct gsm_bts *bts)
409{
410 raid->mcc = bts->network->country_code;
411 raid->mnc = bts->network->network_code;
412 raid->lac = bts->location_area_code;
413 raid->rac = bts->gprs.rac;
414}
415
416int gsm48_ra_id_by_bts(uint8_t *buf, struct gsm_bts *bts)
417{
418 struct gprs_ra_id raid;
419
420 gprs_ra_id_by_bts(&raid, bts);
421
422 return gsm48_construct_ra(buf, &raid);
423}
Holger Hans Peter Freyther06c9da62011-06-09 21:48:49 +0200424
425int gsm_parse_reg(void *ctx, regex_t *reg, char **str, int argc, const char **argv)
426{
427 int ret;
428
429 ret = 0;
430 if (*str) {
431 talloc_free(*str);
432 *str = NULL;
433 }
434 regfree(reg);
435
436 if (argc > 0) {
437 *str = talloc_strdup(ctx, argv[0]);
438 ret = regcomp(reg, argv[0], 0);
439
440 /* handle compilation failures */
441 if (ret != 0) {
442 talloc_free(*str);
443 *str = NULL;
444 }
445 }
446
447 return ret;
448}
449