blob: 832775823316ae32b05da747babeffc8ea64ddb2 [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" },
Dieter Spaar16646022011-07-28 00:01:50 +0200196 { GSM_BTS_TYPE_NOKIA_SITE, "nokia_site" },
Harald Welte92b1fe42010-03-25 11:45:30 +0800197 { 0, NULL }
Harald Welte32201c12009-03-10 12:15:10 +0000198};
199
Harald Welte1d014a52009-08-08 15:38:29 +0200200enum gsm_bts_type parse_btstype(const char *arg)
Harald Welte32201c12009-03-10 12:15:10 +0000201{
Harald Welte92b1fe42010-03-25 11:45:30 +0800202 return get_string_value(bts_types, arg);
Harald Welte32201c12009-03-10 12:15:10 +0000203}
204
Holger Hans Peter Freyther2dceae62009-06-12 17:39:38 +0200205const char *btstype2str(enum gsm_bts_type type)
Harald Welte32201c12009-03-10 12:15:10 +0000206{
Harald Welte92b1fe42010-03-25 11:45:30 +0800207 return get_value_string(bts_types, type);
Harald Welte32201c12009-03-10 12:15:10 +0000208}
Harald Weltebe991492009-05-23 13:56:40 +0000209
Harald Welte6e670aa2010-01-07 20:44:32 +0100210struct gsm_bts_trx *gsm_bts_trx_by_nr(struct gsm_bts *bts, int nr)
211{
212 struct gsm_bts_trx *trx;
213
214 llist_for_each_entry(trx, &bts->trx_list, list) {
215 if (trx->nr == nr)
216 return trx;
217 }
218 return NULL;
219}
220
Harald Weltebe991492009-05-23 13:56:40 +0000221/* Search for a BTS in the given Location Area; optionally start searching
222 * with start_bts (for continuing to search after the first result) */
223struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
224 struct gsm_bts *start_bts)
225{
226 int i;
227 struct gsm_bts *bts;
228 int skip = 0;
229
230 if (start_bts)
231 skip = 1;
232
233 for (i = 0; i < net->num_bts; i++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200234 bts = gsm_bts_num(net, i);
Harald Weltebe991492009-05-23 13:56:40 +0000235
236 if (skip) {
237 if (start_bts == bts)
238 skip = 0;
239 continue;
240 }
241
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +0200242 if (lac == GSM_LAC_RESERVED_ALL_BTS || bts->location_area_code == lac)
Harald Weltebe991492009-05-23 13:56:40 +0000243 return bts;
244 }
245 return NULL;
246}
Harald Weltefcd24452009-06-20 18:15:19 +0200247
Harald Welte92b1fe42010-03-25 11:45:30 +0800248static const struct value_string auth_policy_names[] = {
249 { GSM_AUTH_POLICY_CLOSED, "closed" },
250 { GSM_AUTH_POLICY_ACCEPT_ALL, "accept-all" },
251 { GSM_AUTH_POLICY_TOKEN, "token" },
252 { 0, NULL }
Harald Welte (local)69de3972009-08-12 14:42:23 +0200253};
254
255enum gsm_auth_policy gsm_auth_policy_parse(const char *arg)
256{
Harald Welte92b1fe42010-03-25 11:45:30 +0800257 return get_string_value(auth_policy_names, arg);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200258}
259
260const char *gsm_auth_policy_name(enum gsm_auth_policy policy)
261{
Harald Welte92b1fe42010-03-25 11:45:30 +0800262 return get_value_string(auth_policy_names, policy);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200263}
264
Harald Welte92b1fe42010-03-25 11:45:30 +0800265static const struct value_string rrlp_mode_names[] = {
266 { RRLP_MODE_NONE, "none" },
267 { RRLP_MODE_MS_BASED, "ms-based" },
268 { RRLP_MODE_MS_PREF, "ms-preferred" },
269 { RRLP_MODE_ASS_PREF, "ass-preferred" },
270 { 0, NULL }
Harald Welteeab84a12009-12-13 10:53:12 +0100271};
272
273enum rrlp_mode rrlp_mode_parse(const char *arg)
274{
Harald Welte92b1fe42010-03-25 11:45:30 +0800275 return get_string_value(rrlp_mode_names, arg);
Harald Welteeab84a12009-12-13 10:53:12 +0100276}
277
278const char *rrlp_mode_name(enum rrlp_mode mode)
279{
Harald Welte92b1fe42010-03-25 11:45:30 +0800280 return get_value_string(rrlp_mode_names, mode);
Harald Welteeab84a12009-12-13 10:53:12 +0100281}
Harald Welted12b0fd2009-12-15 21:36:05 +0100282
Harald Welte4511d892010-04-18 15:51:20 +0200283static const struct value_string bts_gprs_mode_names[] = {
284 { BTS_GPRS_NONE, "none" },
285 { BTS_GPRS_GPRS, "gprs" },
286 { BTS_GPRS_EGPRS, "egprs" },
287 { 0, NULL }
288};
289
290enum bts_gprs_mode bts_gprs_mode_parse(const char *arg)
291{
292 return get_string_value(bts_gprs_mode_names, arg);
293}
294
295const char *bts_gprs_mode_name(enum bts_gprs_mode mode)
296{
297 return get_value_string(bts_gprs_mode_names, mode);
298}
299
Harald Welted12b0fd2009-12-15 21:36:05 +0100300struct gsm_meas_rep *lchan_next_meas_rep(struct gsm_lchan *lchan)
301{
302 struct gsm_meas_rep *meas_rep;
303
304 meas_rep = &lchan->meas_rep[lchan->meas_rep_idx];
305 memset(meas_rep, 0, sizeof(*meas_rep));
306 meas_rep->lchan = lchan;
307 lchan->meas_rep_idx = (lchan->meas_rep_idx + 1)
308 % ARRAY_SIZE(lchan->meas_rep);
309
310 return meas_rep;
311}
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100312
Harald Weltef3d8e922010-06-14 22:44:42 +0200313int gsm_btsmodel_set_feature(struct gsm_bts_model *bts, enum gsm_bts_features feat)
314{
315 return bitvec_set_bit_pos(&bts->features, feat, 1);
316}
317
318int gsm_bts_has_feature(struct gsm_bts *bts, enum gsm_bts_features feat)
319{
320 return bitvec_get_bit_pos(&bts->model->features, feat);
321}
322
Harald Welte39315c42010-01-10 18:01:52 +0100323int gsm_set_bts_type(struct gsm_bts *bts, enum gsm_bts_type type)
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100324{
Harald Welte39315c42010-01-10 18:01:52 +0100325 struct gsm_bts_model *model;
326
327 model = bts_model_find(type);
328 if (!model)
329 return -EINVAL;
330
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100331 bts->type = type;
Harald Welte39315c42010-01-10 18:01:52 +0100332 bts->model = model;
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100333
Pablo Neira Ayuso0d2881a2011-05-14 11:32:48 +0200334 if (model->start && !model->started) {
335 int ret = model->start(bts->network);
336 if (ret < 0)
337 return ret;
338
339 model->started = true;
340 }
341
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100342 switch (bts->type) {
Harald Weltefd355a32011-03-04 13:41:31 +0100343 case GSM_BTS_TYPE_HSL_FEMTO:
344 bts->c0->rsl_tei = 0;
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100345 case GSM_BTS_TYPE_NANOBTS:
346 /* Set the default OML Stream ID to 0xff */
347 bts->oml_tei = 0xff;
348 bts->c0->nominal_power = 23;
349 break;
350 case GSM_BTS_TYPE_BS11:
Holger Hans Peter Freyther6fc87912010-05-14 02:53:22 +0800351 case GSM_BTS_TYPE_UNKNOWN:
352 break;
Harald Weltea8e6a652011-02-13 22:13:28 +0100353 case GSM_BTS_TYPE_RBS2000:
354 INIT_LLIST_HEAD(&bts->rbs2000.is.conn_groups);
Harald Weltea02085d2011-02-13 22:45:02 +0100355 INIT_LLIST_HEAD(&bts->rbs2000.con.conn_groups);
Harald Weltea8e6a652011-02-13 22:13:28 +0100356 break;
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100357 }
Harald Welte39315c42010-01-10 18:01:52 +0100358
359 return 0;
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100360}
Harald Welte3300c012011-06-05 13:31:33 +0200361
362struct gsm_bts *gsm_bts_alloc_register(struct gsm_network *net, enum gsm_bts_type type,
363 uint8_t tsc, uint8_t bsic)
364{
365 struct gsm_bts_model *model = bts_model_find(type);
366 struct gsm_bts *bts;
367
Harald Welte28307642011-06-06 17:52:56 +0200368 if (!model && type != GSM_BTS_TYPE_UNKNOWN)
Harald Welte3300c012011-06-05 13:31:33 +0200369 return NULL;
Harald Welte3300c012011-06-05 13:31:33 +0200370
371 bts = gsm_bts_alloc(net);
372 if (!bts)
373 return NULL;
374
375 bts->network = net;
376 bts->nr = net->num_bts++;
377 bts->type = type;
378 bts->model = model;
379 bts->tsc = tsc;
380 bts->bsic = bsic;
381
382 bts->neigh_list_manual_mode = 0;
383 bts->si_common.cell_sel_par.cell_resel_hyst = 2; /* 4 dB */
384 bts->si_common.cell_sel_par.rxlev_acc_min = 0;
385 bts->si_common.neigh_list.data = bts->si_common.data.neigh_list;
386 bts->si_common.neigh_list.data_len =
387 sizeof(bts->si_common.data.neigh_list);
388 bts->si_common.si5_neigh_list.data = bts->si_common.data.si5_neigh_list;
389 bts->si_common.si5_neigh_list.data_len =
390 sizeof(bts->si_common.data.si5_neigh_list);
391 bts->si_common.cell_alloc.data = bts->si_common.data.cell_alloc;
392 bts->si_common.cell_alloc.data_len =
393 sizeof(bts->si_common.data.cell_alloc);
394 bts->si_common.rach_control.re = 1; /* no re-establishment */
395 bts->si_common.rach_control.tx_integer = 9; /* 12 slots spread - 217/115 slots delay */
396 bts->si_common.rach_control.max_trans = 3; /* 7 retransmissions */
397 bts->si_common.rach_control.t2 = 4; /* no emergency calls */
398
399 llist_add_tail(&bts->list, &net->bts_list);
400
401 INIT_LLIST_HEAD(&bts->abis_queue);
402
403 return bts;
404}
405
406void gprs_ra_id_by_bts(struct gprs_ra_id *raid, struct gsm_bts *bts)
407{
408 raid->mcc = bts->network->country_code;
409 raid->mnc = bts->network->network_code;
410 raid->lac = bts->location_area_code;
411 raid->rac = bts->gprs.rac;
412}
413
414int gsm48_ra_id_by_bts(uint8_t *buf, struct gsm_bts *bts)
415{
416 struct gprs_ra_id raid;
417
418 gprs_ra_id_by_bts(&raid, bts);
419
420 return gsm48_construct_ra(buf, &raid);
421}
Holger Hans Peter Freyther06c9da62011-06-09 21:48:49 +0200422
423int gsm_parse_reg(void *ctx, regex_t *reg, char **str, int argc, const char **argv)
424{
425 int ret;
426
427 ret = 0;
428 if (*str) {
429 talloc_free(*str);
430 *str = NULL;
431 }
432 regfree(reg);
433
434 if (argc > 0) {
435 *str = talloc_strdup(ctx, argv[0]);
436 ret = regcomp(reg, argv[0], 0);
437
438 /* handle compilation failures */
439 if (ret != 0) {
440 talloc_free(*str);
441 *str = NULL;
442 }
443 }
444
445 return ret;
446}
447