blob: 4696bb03ae8e5bb90caf52dc4ae9fc7ff159531b [file] [log] [blame]
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +08001
2/* BSC Multiplexer/NAT Utilities */
3
4/*
Holger Hans Peter Freythere1880102011-04-23 23:31:31 +02005 * (C) 2010-2011 by Holger Hans Peter Freyther <zecke@selfish.org>
6 * (C) 2010-2011 by On-Waves
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +08007 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080021 *
22 */
23
24#include <openbsc/bsc_nat.h>
Holger Hans Peter Freytherc2b31ed2010-07-31 05:17:17 +080025#include <openbsc/bsc_nat_sccp.h>
Holger Hans Peter Freyther20ee3122010-07-05 14:39:44 +080026#include <openbsc/bsc_msc.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080027#include <openbsc/gsm_data.h>
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +020028#include <openbsc/debug.h>
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +020029#include <openbsc/ipaccess.h>
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +020030#include <openbsc/vty.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080031
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010032#include <osmocom/core/linuxlist.h>
33#include <osmocom/core/talloc.h>
Harald Welted36ff762011-03-23 18:26:56 +010034#include <osmocom/gsm/gsm0808.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080035
Harald Welted36ff762011-03-23 18:26:56 +010036#include <osmocom/gsm/protocol/gsm_08_08.h>
Holger Hans Peter Freyther69d801e2010-06-15 20:13:33 +080037
Harald Welted5db12c2010-08-03 15:11:51 +020038#include <osmocom/sccp/sccp.h>
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +020039
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +020040#include <netinet/in.h>
41#include <arpa/inet.h>
Holger Hans Peter Freyther69cfa172010-10-13 20:37:13 +020042#include <unistd.h>
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +020043
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +080044static const struct rate_ctr_desc bsc_cfg_ctr_description[] = {
Holger Hans Peter Freyther71d36b32010-06-17 18:31:18 +080045 [BCFG_CTR_SCCP_CONN] = { "sccp.conn", "SCCP Connections "},
46 [BCFG_CTR_SCCP_CALLS] = { "sccp.calls", "SCCP Assignment Commands "},
47 [BCFG_CTR_NET_RECONN] = { "net.reconnects", "Network reconnects "},
48 [BCFG_CTR_DROPPED_SCCP] = { "dropped.sccp", "Dropped SCCP connections."},
49 [BCFG_CTR_DROPPED_CALLS] = { "dropped.calls", "Dropped active calls. "},
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +080050 [BCFG_CTR_REJECTED_CR] = { "rejected.cr", "Rejected CR due filter "},
51 [BCFG_CTR_REJECTED_MSG] = { "rejected.msg", "Rejected MSG due filter "},
52 [BCFG_CTR_ILL_PACKET] = { "rejected.ill", "Rejected due parse error "},
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +080053 [BCFG_CTR_CON_TYPE_LU] = { "conn.lu", "Conn Location Update "},
54 [BCFG_CTR_CON_CMSERV_RQ] = { "conn.rq", "Conn CM Service Req "},
55 [BCFG_CTR_CON_PAG_RESP] = { "conn.pag", "Conn Paging Response "},
Holger Hans Peter Freyther74dc3032010-09-29 02:47:29 +080056 [BCFG_CTR_CON_SSA] = { "conn.ssa", "Conn USSD "},
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +080057 [BCFG_CTR_CON_OTHER] = { "conn.other", "Conn Other "},
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +080058};
59
60static const struct rate_ctr_group_desc bsc_cfg_ctrg_desc = {
61 .group_name_prefix = "nat.bsc",
62 .group_description = "NAT BSC Statistics",
63 .num_ctr = ARRAY_SIZE(bsc_cfg_ctr_description),
64 .ctr_desc = bsc_cfg_ctr_description,
65};
66
Holger Hans Peter Freyther2f1a9842010-09-25 06:14:52 +080067static const struct rate_ctr_desc acc_list_ctr_description[] = {
68 [ACC_LIST_BSC_FILTER] = { "access-list.bsc-filter", "Rejected by rule for BSC"},
69 [ACC_LIST_NAT_FILTER] = { "access-list.nat-filter", "Rejected by rule for NAT"},
70};
71
72static const struct rate_ctr_group_desc bsc_cfg_acc_list_desc = {
73 .group_name_prefix = "nat.filter",
74 .group_description = "NAT Access-List Statistics",
75 .num_ctr = ARRAY_SIZE(acc_list_ctr_description),
76 .ctr_desc = acc_list_ctr_description,
77};
78
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080079struct bsc_nat *bsc_nat_alloc(void)
80{
81 struct bsc_nat *nat = talloc_zero(tall_bsc_ctx, struct bsc_nat);
82 if (!nat)
83 return NULL;
84
Holger Hans Peter Freythere1880102011-04-23 23:31:31 +020085 nat->main_dest = talloc_zero(nat, struct bsc_msc_dest);
86 if (!nat->main_dest) {
87 talloc_free(nat);
88 return NULL;
89 }
90
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080091 INIT_LLIST_HEAD(&nat->sccp_connections);
92 INIT_LLIST_HEAD(&nat->bsc_connections);
Holger Hans Peter Freyther474698a2011-05-02 16:50:36 +020093 INIT_LLIST_HEAD(&nat->paging_groups);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080094 INIT_LLIST_HEAD(&nat->bsc_configs);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080095 INIT_LLIST_HEAD(&nat->access_lists);
Holger Hans Peter Freythere1880102011-04-23 23:31:31 +020096 INIT_LLIST_HEAD(&nat->dests);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080097
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +020098 nat->stats.sccp.conn = osmo_counter_alloc("nat.sccp.conn");
99 nat->stats.sccp.calls = osmo_counter_alloc("nat.sccp.calls");
100 nat->stats.bsc.reconn = osmo_counter_alloc("nat.bsc.conn");
101 nat->stats.bsc.auth_fail = osmo_counter_alloc("nat.bsc.auth_fail");
102 nat->stats.msc.reconn = osmo_counter_alloc("nat.msc.conn");
103 nat->stats.ussd.reconn = osmo_counter_alloc("nat.ussd.conn");
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800104 nat->auth_timeout = 2;
105 nat->ping_timeout = 20;
106 nat->pong_timeout = 5;
Holger Hans Peter Freythere1880102011-04-23 23:31:31 +0200107
108 llist_add(&nat->main_dest->list, &nat->dests);
109 nat->main_dest->ip = talloc_strdup(nat, "127.0.0.1");
110 nat->main_dest->port = 5000;
111
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800112 return nat;
113}
114
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800115void bsc_nat_set_msc_ip(struct bsc_nat *nat, const char *ip)
116{
Holger Hans Peter Freythere1880102011-04-23 23:31:31 +0200117 bsc_replace_string(nat, &nat->main_dest->ip, ip);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800118}
119
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800120struct bsc_connection *bsc_connection_alloc(struct bsc_nat *nat)
121{
122 struct bsc_connection *con = talloc_zero(nat, struct bsc_connection);
123 if (!con)
124 return NULL;
125
Holger Hans Peter Freytherf8048d92010-03-29 15:14:15 +0200126 con->nat = nat;
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200127 osmo_wqueue_init(&con->write_queue, 100);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800128 return con;
129}
130
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800131struct bsc_config *bsc_config_alloc(struct bsc_nat *nat, const char *token)
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800132{
133 struct bsc_config *conf = talloc_zero(nat, struct bsc_config);
134 if (!conf)
135 return NULL;
136
137 conf->token = talloc_strdup(conf, token);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800138 conf->nr = nat->num_bsc;
139 conf->nat = nat;
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +0100140 conf->max_endpoints = 32;
Holger Hans Peter Freyther474698a2011-05-02 16:50:36 +0200141 conf->paging_group = PAGIN_GROUP_UNASSIGNED;
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800142
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800143 INIT_LLIST_HEAD(&conf->lac_list);
144
Holger Hans Peter Freytherd1278c12010-04-16 16:52:20 +0200145 llist_add_tail(&conf->entry, &nat->bsc_configs);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800146 ++nat->num_bsc;
147
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800148 conf->stats.ctrg = rate_ctr_group_alloc(conf, &bsc_cfg_ctrg_desc, conf->nr);
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800149 if (!conf->stats.ctrg) {
150 talloc_free(conf);
151 return NULL;
152 }
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200153
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800154 return conf;
155}
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200156
Holger Hans Peter Freyther9212d9d2011-02-27 11:18:41 +0100157void bsc_config_free(struct bsc_config *cfg)
158{
159 rate_ctr_group_free(cfg->stats.ctrg);
160}
161
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +0200162static void _add_lac(void *ctx, struct llist_head *list, int _lac)
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800163{
164 struct bsc_lac_entry *lac;
165
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +0200166 llist_for_each_entry(lac, list, entry)
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800167 if (lac->lac == _lac)
168 return;
169
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +0200170 lac = talloc_zero(ctx, struct bsc_lac_entry);
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800171 if (!lac) {
172 LOGP(DNAT, LOGL_ERROR, "Failed to allocate.\n");
173 return;
174 }
175
176 lac->lac = _lac;
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +0200177 llist_add_tail(&lac->entry, list);
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800178}
179
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +0200180static void _del_lac(struct llist_head *list, int _lac)
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800181{
182 struct bsc_lac_entry *lac;
183
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +0200184 llist_for_each_entry(lac, list, entry)
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800185 if (lac->lac == _lac) {
186 llist_del(&lac->entry);
187 talloc_free(lac);
188 return;
189 }
190}
191
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +0200192void bsc_config_add_lac(struct bsc_config *cfg, int _lac)
193{
194 _add_lac(cfg, &cfg->lac_list, _lac);
195}
196
197void bsc_config_del_lac(struct bsc_config *cfg, int _lac)
198{
199 _del_lac(&cfg->lac_list, _lac);
200}
201
202struct bsc_nat_paging_group *bsc_nat_paging_group_create(struct bsc_nat *nat, int group)
203{
204 struct bsc_nat_paging_group *pgroup;
205
206 pgroup = talloc_zero(nat, struct bsc_nat_paging_group);
207 if (!pgroup) {
208 LOGP(DNAT, LOGL_ERROR, "Failed to allocate a paging group.\n");
209 return NULL;
210 }
211
212 pgroup->nr = group;
213 INIT_LLIST_HEAD(&pgroup->lists);
214 llist_add_tail(&pgroup->entry, &nat->paging_groups);
215 return pgroup;
216}
217
218void bsc_nat_paging_group_delete(struct bsc_nat_paging_group *pgroup)
219{
220 llist_del(&pgroup->entry);
221 talloc_free(pgroup);
222}
223
224struct bsc_nat_paging_group *bsc_nat_paging_group_num(struct bsc_nat *nat, int group)
Holger Hans Peter Freyther474698a2011-05-02 16:50:36 +0200225{
226 struct bsc_nat_paging_group *pgroup;
227
228 llist_for_each_entry(pgroup, &nat->paging_groups, entry)
229 if (pgroup->nr == group)
230 return pgroup;
231
232 return NULL;
233}
234
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +0200235void bsc_nat_paging_group_add_lac(struct bsc_nat_paging_group *pgroup, int lac)
236{
237 _add_lac(pgroup, &pgroup->lists, lac);
238}
239
240void bsc_nat_paging_group_del_lac(struct bsc_nat_paging_group *pgroup, int lac)
241{
242 _del_lac(&pgroup->lists, lac);
243}
244
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800245int bsc_config_handles_lac(struct bsc_config *cfg, int lac_nr)
246{
Holger Hans Peter Freyther474698a2011-05-02 16:50:36 +0200247 struct bsc_nat_paging_group *pgroup;
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800248 struct bsc_lac_entry *entry;
249
250 llist_for_each_entry(entry, &cfg->lac_list, entry)
251 if (entry->lac == lac_nr)
252 return 1;
253
Holger Hans Peter Freyther474698a2011-05-02 16:50:36 +0200254 /* now lookup the paging group */
255 pgroup = bsc_nat_paging_group_num(cfg->nat, cfg->paging_group);
256 if (!pgroup)
257 return 0;
258
259 llist_for_each_entry(entry, &pgroup->lists, entry)
260 if (entry->lac == lac_nr)
261 return 1;
262
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800263 return 0;
264}
265
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200266void sccp_connection_destroy(struct sccp_connections *conn)
267{
268 LOGP(DNAT, LOGL_DEBUG, "Destroy 0x%x <-> 0x%x mapping for con %p\n",
269 sccp_src_ref_to_int(&conn->real_ref),
270 sccp_src_ref_to_int(&conn->patched_ref), conn->bsc);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800271 bsc_mgcp_dlcx(conn);
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200272 llist_del(&conn->list_entry);
273 talloc_free(conn);
274}
275
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200276
277int bsc_nat_find_paging(struct msgb *msg,
278 const uint8_t **out_data, int *out_leng)
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200279{
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200280 int data_length;
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800281 const uint8_t *data;
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200282 struct tlv_parsed tp;
Holger Hans Peter Freyther7a773692010-04-18 02:41:20 +0800283
Holger Hans Peter Freythere9be5172010-03-30 06:51:23 +0200284 if (!msg->l3h || msgb_l3len(msg) < 3) {
285 LOGP(DNAT, LOGL_ERROR, "Paging message is too short.\n");
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200286 return -1;
Holger Hans Peter Freythere9be5172010-03-30 06:51:23 +0200287 }
288
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200289 tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l3h + 3, msgb_l3len(msg) - 3, 0, 0);
290 if (!TLVP_PRESENT(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST)) {
291 LOGP(DNAT, LOGL_ERROR, "No CellIdentifier List inside paging msg.\n");
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200292 return -2;
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200293 }
294
295 data_length = TLVP_LEN(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST);
296 data = TLVP_VAL(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST);
Holger Hans Peter Freythera4376ad2010-04-21 18:47:24 +0800297
298 /* No need to try a different BSS */
299 if (data[0] == CELL_IDENT_BSS) {
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200300 return -3;
Holger Hans Peter Freythera4376ad2010-04-21 18:47:24 +0800301 } else if (data[0] != CELL_IDENT_LAC) {
Holger Hans Peter Freyther530c4b12010-04-06 10:25:40 +0200302 LOGP(DNAT, LOGL_ERROR, "Unhandled cell ident discrminator: %d\n", data[0]);
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200303 return -4;
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200304 }
305
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200306 *out_data = &data[1];
307 *out_leng = data_length - 1;
308 return 0;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200309}
310
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800311int bsc_write_mgcp(struct bsc_connection *bsc, const uint8_t *data, unsigned int length)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200312{
313 struct msgb *msg;
314
315 if (length > 4096 - 128) {
316 LOGP(DINP, LOGL_ERROR, "Can not send message of that size.\n");
317 return -1;
318 }
319
320 msg = msgb_alloc_headroom(4096, 128, "to-bsc");
321 if (!msg) {
322 LOGP(DINP, LOGL_ERROR, "Failed to allocate memory for BSC msg.\n");
323 return -1;
324 }
325
326 /* copy the data */
327 msg->l3h = msgb_put(msg, length);
328 memcpy(msg->l3h, data, length);
329
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +0100330 return bsc_write(bsc, msg, IPAC_PROTO_MGCP_OLD);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200331}
332
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200333int bsc_write(struct bsc_connection *bsc, struct msgb *msg, int proto)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200334{
Holger Hans Peter Freyther4d44fc52010-10-13 17:56:22 +0200335 return bsc_do_write(&bsc->write_queue, msg, proto);
336}
337
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200338int bsc_do_write(struct osmo_wqueue *queue, struct msgb *msg, int proto)
Holger Hans Peter Freyther4d44fc52010-10-13 17:56:22 +0200339{
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200340 /* prepend the header */
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200341 ipaccess_prepend_header(msg, proto);
Holger Hans Peter Freyther7e8da132010-10-16 17:33:46 +0200342 return bsc_write_msg(queue, msg);
343}
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200344
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200345int bsc_write_msg(struct osmo_wqueue *queue, struct msgb *msg)
Holger Hans Peter Freyther7e8da132010-10-16 17:33:46 +0200346{
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200347 if (osmo_wqueue_enqueue(queue, msg) != 0) {
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200348 LOGP(DINP, LOGL_ERROR, "Failed to enqueue the write.\n");
349 msgb_free(msg);
350 return -1;
351 }
352
353 return 0;
354}
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800355
Holger Hans Peter Freytherc1cac1e2010-10-11 09:50:31 +0200356int bsc_nat_lst_check_allow(struct bsc_nat_acc_lst *lst, const char *mi_string)
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800357{
358 struct bsc_nat_acc_lst_entry *entry;
359
360 llist_for_each_entry(entry, &lst->fltr_list, list) {
361 if (!entry->imsi_allow)
362 continue;
363 if (regexec(&entry->imsi_allow_re, mi_string, 0, NULL, 0) == 0)
364 return 0;
365 }
366
367 return 1;
368}
369
370static int lst_check_deny(struct bsc_nat_acc_lst *lst, const char *mi_string)
371{
372 struct bsc_nat_acc_lst_entry *entry;
373
374 llist_for_each_entry(entry, &lst->fltr_list, list) {
375 if (!entry->imsi_deny)
376 continue;
377 if (regexec(&entry->imsi_deny_re, mi_string, 0, NULL, 0) == 0)
378 return 0;
379 }
380
381 return 1;
382}
383
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800384/* apply white/black list */
385static int auth_imsi(struct bsc_connection *bsc, const char *mi_string)
386{
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800387 /*
388 * Now apply blacklist/whitelist of the BSC and the NAT.
Holger Hans Peter Freyther1fd60632010-10-19 20:55:33 +0200389 * 1.) Allow directly if the IMSI is allowed at the BSC
390 * 2.) Reject if the IMSI is not allowed at the BSC
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800391 * 3.) Reject if the IMSI not allowed at the global level.
392 * 4.) Allow directly if the IMSI is allowed at the global level
393 */
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800394 struct bsc_nat_acc_lst *nat_lst = NULL;
395 struct bsc_nat_acc_lst *bsc_lst = NULL;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800396
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800397 bsc_lst = bsc_nat_acc_lst_find(bsc->nat, bsc->cfg->acc_lst_name);
398 nat_lst = bsc_nat_acc_lst_find(bsc->nat, bsc->nat->acc_lst_name);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800399
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800400
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800401 if (bsc_lst) {
Holger Hans Peter Freyther1fd60632010-10-19 20:55:33 +0200402 /* 1. BSC allow */
Holger Hans Peter Freytherc1cac1e2010-10-11 09:50:31 +0200403 if (bsc_nat_lst_check_allow(bsc_lst, mi_string) == 0)
Holger Hans Peter Freyther1fd60632010-10-19 20:55:33 +0200404 return 1;
405
406 /* 2. BSC deny */
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800407 if (lst_check_deny(bsc_lst, mi_string) == 0) {
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800408 LOGP(DNAT, LOGL_ERROR,
Holger Hans Peter Freyther48945b12010-05-16 00:45:07 +0800409 "Filtering %s by imsi_deny on bsc nr: %d.\n", mi_string, bsc->cfg->nr);
Holger Hans Peter Freyther2f1a9842010-09-25 06:14:52 +0800410 rate_ctr_inc(&bsc_lst->stats->ctr[ACC_LIST_BSC_FILTER]);
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800411 return -2;
412 }
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800413
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800414 }
415
416 /* 3. NAT deny */
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800417 if (nat_lst) {
418 if (lst_check_deny(nat_lst, mi_string) == 0) {
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800419 LOGP(DNAT, LOGL_ERROR,
Holger Hans Peter Freyther48945b12010-05-16 00:45:07 +0800420 "Filtering %s by nat imsi_deny on bsc nr: %d.\n", mi_string, bsc->cfg->nr);
Holger Hans Peter Freyther0c35b5b2010-10-06 00:18:20 +0800421 rate_ctr_inc(&nat_lst->stats->ctr[ACC_LIST_NAT_FILTER]);
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800422 return -3;
423 }
424 }
425
Holger Hans Peter Freyther909e61f2010-09-15 00:41:19 +0800426 return 1;
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800427}
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800428
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800429static int _cr_check_loc_upd(struct bsc_connection *bsc,
430 uint8_t *data, unsigned int length,
431 char **imsi)
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800432{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800433 uint8_t mi_type;
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800434 struct gsm48_loc_upd_req *lu;
435 char mi_string[GSM48_MI_SIZE];
436
Holger Hans Peter Freytherf8303222010-05-14 19:24:06 +0800437 if (length < sizeof(*lu)) {
438 LOGP(DNAT, LOGL_ERROR,
439 "LU does not fit. Length is %d \n", length);
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800440 return -1;
441 }
442
443 lu = (struct gsm48_loc_upd_req *) data;
444 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
445
446 /*
447 * We can only deal with the IMSI. This will fail for a phone that
448 * will send the TMSI of a previous network to us.
449 */
450 if (mi_type != GSM_MI_TYPE_IMSI)
451 return 0;
452
453 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800454 *imsi = talloc_strdup(bsc, mi_string);
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800455 return auth_imsi(bsc, mi_string);
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800456}
457
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800458static int _cr_check_cm_serv_req(struct bsc_connection *bsc,
459 uint8_t *data, unsigned int length,
Holger Hans Peter Freyther74dc3032010-09-29 02:47:29 +0800460 int *con_type, char **imsi)
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800461{
Holger Hans Peter Freyther66e1ef72010-05-16 01:13:28 +0800462 static const uint32_t classmark_offset =
463 offsetof(struct gsm48_service_request, classmark);
464
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800465 char mi_string[GSM48_MI_SIZE];
Holger Hans Peter Freyther66e1ef72010-05-16 01:13:28 +0800466 uint8_t mi_type;
467 int rc;
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800468 struct gsm48_service_request *req;
469
470 /* unfortunately in Phase1 the classmark2 length is variable */
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800471
472 if (length < sizeof(*req)) {
473 LOGP(DNAT, LOGL_ERROR,
474 "CM Serv Req does not fit. Length is %d\n", length);
475 return -1;
476 }
477
478 req = (struct gsm48_service_request *) data;
Holger Hans Peter Freyther74dc3032010-09-29 02:47:29 +0800479 if (req->cm_service_type == 0x8)
480 *con_type = NAT_CON_TYPE_SSA;
Holger Hans Peter Freyther66e1ef72010-05-16 01:13:28 +0800481 rc = gsm48_extract_mi((uint8_t *) &req->classmark,
482 length - classmark_offset, mi_string, &mi_type);
483 if (rc < 0) {
484 LOGP(DNAT, LOGL_ERROR, "Failed to parse the classmark2/mi. error: %d\n", rc);
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800485 return -1;
486 }
487
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800488 /* we have to let the TMSI or such pass */
489 if (mi_type != GSM_MI_TYPE_IMSI)
490 return 0;
491
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800492 *imsi = talloc_strdup(bsc, mi_string);
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800493 return auth_imsi(bsc, mi_string);
494}
495
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800496static int _cr_check_pag_resp(struct bsc_connection *bsc,
497 uint8_t *data, unsigned int length,
498 char **imsi)
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800499{
500 struct gsm48_pag_resp *resp;
501 char mi_string[GSM48_MI_SIZE];
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800502 uint8_t mi_type;
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800503
504 if (length < sizeof(*resp)) {
505 LOGP(DNAT, LOGL_ERROR, "PAG RESP does not fit. Length was %d.\n", length);
506 return -1;
507 }
508
509 resp = (struct gsm48_pag_resp *) data;
510 if (gsm48_paging_extract_mi(resp, length, mi_string, &mi_type) < 0) {
511 LOGP(DNAT, LOGL_ERROR, "Failed to extract the MI.\n");
512 return -1;
513 }
514
515 /* we need to let it pass for now */
516 if (mi_type != GSM_MI_TYPE_IMSI)
517 return 0;
518
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800519 *imsi = talloc_strdup(bsc, mi_string);
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800520 return auth_imsi(bsc, mi_string);
521}
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800522
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800523static int _dt_check_id_resp(struct bsc_connection *bsc,
524 uint8_t *data, unsigned int length,
525 struct sccp_connections *con)
526{
527 char mi_string[GSM48_MI_SIZE];
528 uint8_t mi_type;
529 int ret;
530
531 if (length < 2) {
532 LOGP(DNAT, LOGL_ERROR, "mi does not fit.\n");
533 return -1;
534 }
535
536 if (data[0] < length - 1) {
537 LOGP(DNAT, LOGL_ERROR, "mi length too big.\n");
538 return -2;
539 }
540
541 mi_type = data[1] & GSM_MI_TYPE_MASK;
542 gsm48_mi_to_string(mi_string, sizeof(mi_string), &data[1], data[0]);
543
544 if (mi_type != GSM_MI_TYPE_IMSI)
545 return 0;
546
547 ret = auth_imsi(bsc, mi_string);
548 con->imsi_checked = 1;
Holger Hans Peter Freyther8c78b482010-09-29 01:00:46 +0800549 con->imsi = talloc_strdup(con, mi_string);
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800550 return ret;
551}
552
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800553/* Filter out CR data... */
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800554int bsc_nat_filter_sccp_cr(struct bsc_connection *bsc, struct msgb *msg,
555 struct bsc_nat_parsed *parsed, int *con_type,
556 char **imsi)
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800557{
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800558 struct tlv_parsed tp;
559 struct gsm48_hdr *hdr48;
560 int hdr48_len;
561 int len;
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200562 uint8_t msg_type, proto;
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800563
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800564 *con_type = NAT_CON_TYPE_NONE;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800565 *imsi = NULL;
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800566
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800567 if (parsed->gsm_type != BSS_MAP_MSG_COMPLETE_LAYER_3) {
568 LOGP(DNAT, LOGL_ERROR,
569 "Rejecting CR message due wrong GSM Type %d\n", parsed->gsm_type);
570 return -1;
571 }
572
573 /* the parsed has had some basic l3 length check */
574 len = msg->l3h[1];
575 if (msgb_l3len(msg) - 3 < len) {
576 LOGP(DNAT, LOGL_ERROR,
577 "The CR Data has not enough space...\n");
578 return -1;
579 }
580
581 msg->l4h = &msg->l3h[3];
582 len -= 1;
583
584 tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l4h, len, 0, 0);
585
586 if (!TLVP_PRESENT(&tp, GSM0808_IE_LAYER_3_INFORMATION)) {
587 LOGP(DNAT, LOGL_ERROR, "CR Data does not contain layer3 information.\n");
588 return -1;
589 }
590
591 hdr48_len = TLVP_LEN(&tp, GSM0808_IE_LAYER_3_INFORMATION);
592
593 if (hdr48_len < sizeof(*hdr48)) {
594 LOGP(DNAT, LOGL_ERROR, "GSM48 header does not fit.\n");
595 return -1;
596 }
597
598 hdr48 = (struct gsm48_hdr *) TLVP_VAL(&tp, GSM0808_IE_LAYER_3_INFORMATION);
599
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200600 proto = hdr48->proto_discr & 0x0f;
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800601 msg_type = hdr48->msg_type & 0xbf;
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200602 if (proto == GSM48_PDISC_MM &&
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800603 msg_type == GSM48_MT_MM_LOC_UPD_REQUEST) {
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800604 *con_type = NAT_CON_TYPE_LU;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800605 return _cr_check_loc_upd(bsc, &hdr48->data[0], hdr48_len - sizeof(*hdr48), imsi);
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200606 } else if (proto == GSM48_PDISC_MM &&
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800607 msg_type == GSM48_MT_MM_CM_SERV_REQ) {
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800608 *con_type = NAT_CON_TYPE_CM_SERV_REQ;
Holger Hans Peter Freyther74dc3032010-09-29 02:47:29 +0800609 return _cr_check_cm_serv_req(bsc, &hdr48->data[0],
610 hdr48_len - sizeof(*hdr48),
611 con_type, imsi);
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200612 } else if (proto == GSM48_PDISC_RR &&
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800613 msg_type == GSM48_MT_RR_PAG_RESP) {
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800614 *con_type = NAT_CON_TYPE_PAG_RESP;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800615 return _cr_check_pag_resp(bsc, &hdr48->data[0], hdr48_len - sizeof(*hdr48), imsi);
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800616 } else {
Holger Hans Peter Freyther1f387472010-05-16 01:05:47 +0800617 /* We only want to filter the above, let other things pass */
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800618 *con_type = NAT_CON_TYPE_OTHER;
Holger Hans Peter Freyther1f387472010-05-16 01:05:47 +0800619 return 0;
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800620 }
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800621}
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800622
Holger Hans Peter Freythera3967572010-09-29 02:30:50 +0800623struct gsm48_hdr *bsc_unpack_dtap(struct bsc_nat_parsed *parsed,
624 struct msgb *msg, uint32_t *len)
625{
626 /* gsm_type is actually the size of the dtap */
627 *len = parsed->gsm_type;
628 if (*len < msgb_l3len(msg) - 3) {
629 LOGP(DNAT, LOGL_ERROR, "Not enough space for DTAP.\n");
630 return NULL;
631 }
632
633 if (*len < sizeof(struct gsm48_hdr)) {
634 LOGP(DNAT, LOGL_ERROR, "GSM48 header does not fit.\n");
635 return NULL;
636 }
637
638 msg->l4h = &msg->l3h[3];
639 return (struct gsm48_hdr *) msg->l4h;
640}
641
Holger Hans Peter Freyther74e0a1b2010-09-15 01:11:08 +0800642int bsc_nat_filter_dt(struct bsc_connection *bsc, struct msgb *msg,
643 struct sccp_connections *con, struct bsc_nat_parsed *parsed)
644{
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800645 uint32_t len;
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200646 uint8_t msg_type, proto;
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800647 struct gsm48_hdr *hdr48;
648
Holger Hans Peter Freyther74e0a1b2010-09-15 01:11:08 +0800649 if (con->imsi_checked)
650 return 0;
651
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800652 /* only care about DTAP messages */
653 if (parsed->bssap != BSSAP_MSG_DTAP)
654 return 0;
655
Holger Hans Peter Freythera3967572010-09-29 02:30:50 +0800656 hdr48 = bsc_unpack_dtap(parsed, msg, &len);
657 if (!hdr48)
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800658 return -1;
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800659
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200660 proto = hdr48->proto_discr & 0x0f;
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800661 msg_type = hdr48->msg_type & 0xbf;
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200662 if (proto == GSM48_PDISC_MM &&
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800663 msg_type == GSM48_MT_MM_ID_RESP) {
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800664 return _dt_check_id_resp(bsc, &hdr48->data[0], len - sizeof(*hdr48), con);
665 } else {
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800666 return 0;
667 }
Holger Hans Peter Freyther74e0a1b2010-09-15 01:11:08 +0800668}
669
Holger Hans Peter Freyther4c9557e2011-04-04 19:19:26 +0200670int bsc_parse_reg(void *ctx, regex_t *reg, char **imsi, int argc, const char **argv)
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800671{
Holger Hans Peter Freyther4c9557e2011-04-04 19:19:26 +0200672 int ret;
673
674 ret = 0;
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800675 if (*imsi) {
676 talloc_free(*imsi);
677 *imsi = NULL;
678 }
679 regfree(reg);
680
681 if (argc > 0) {
682 *imsi = talloc_strdup(ctx, argv[0]);
Holger Hans Peter Freyther4c9557e2011-04-04 19:19:26 +0200683 ret = regcomp(reg, argv[0], 0);
684
685 /* handle compilation failures */
686 if (ret != 0) {
687 talloc_free(*imsi);
688 *imsi = NULL;
689 }
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800690 }
Holger Hans Peter Freyther4c9557e2011-04-04 19:19:26 +0200691
692 return ret;
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800693}
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800694
695static const char *con_types [] = {
696 [NAT_CON_TYPE_NONE] = "n/a",
697 [NAT_CON_TYPE_LU] = "Location Update",
698 [NAT_CON_TYPE_CM_SERV_REQ] = "CM Serv Req",
699 [NAT_CON_TYPE_PAG_RESP] = "Paging Response",
Holger Hans Peter Freyther74dc3032010-09-29 02:47:29 +0800700 [NAT_CON_TYPE_SSA] = "Supplementar Service Activation",
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800701 [NAT_CON_TYPE_LOCAL_REJECT] = "Local Reject",
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800702 [NAT_CON_TYPE_OTHER] = "Other",
703};
704
705const char *bsc_con_type_to_string(int type)
706{
707 return con_types[type];
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800708}
709
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800710struct bsc_nat_acc_lst *bsc_nat_acc_lst_find(struct bsc_nat *nat, const char *name)
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800711{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800712 struct bsc_nat_acc_lst *lst;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800713
714 if (!name)
715 return NULL;
716
717 llist_for_each_entry(lst, &nat->access_lists, list)
718 if (strcmp(lst->name, name) == 0)
719 return lst;
720
721 return NULL;
722}
723
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800724struct bsc_nat_acc_lst *bsc_nat_acc_lst_get(struct bsc_nat *nat, const char *name)
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800725{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800726 struct bsc_nat_acc_lst *lst;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800727
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800728 lst = bsc_nat_acc_lst_find(nat, name);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800729 if (lst)
730 return lst;
731
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800732 lst = talloc_zero(nat, struct bsc_nat_acc_lst);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800733 if (!lst) {
734 LOGP(DNAT, LOGL_ERROR, "Failed to allocate access list");
735 return NULL;
736 }
737
Holger Hans Peter Freyther2f1a9842010-09-25 06:14:52 +0800738 /* TODO: get the index right */
739 lst->stats = rate_ctr_group_alloc(lst, &bsc_cfg_acc_list_desc, 0);
740 if (!lst->stats) {
741 talloc_free(lst);
742 return NULL;
743 }
744
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800745 INIT_LLIST_HEAD(&lst->fltr_list);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800746 lst->name = talloc_strdup(lst, name);
Holger Hans Peter Freyther26c3a352010-06-08 11:00:09 +0800747 llist_add_tail(&lst->list, &nat->access_lists);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800748 return lst;
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800749}
750
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800751void bsc_nat_acc_lst_delete(struct bsc_nat_acc_lst *lst)
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800752{
753 llist_del(&lst->list);
Holger Hans Peter Freyther2f1a9842010-09-25 06:14:52 +0800754 rate_ctr_group_free(lst->stats);
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800755 talloc_free(lst);
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800756}
757
758struct bsc_nat_acc_lst_entry *bsc_nat_acc_lst_entry_create(struct bsc_nat_acc_lst *lst)
759{
760 struct bsc_nat_acc_lst_entry *entry;
761
762 entry = talloc_zero(lst, struct bsc_nat_acc_lst_entry);
763 if (!entry)
764 return NULL;
765
Holger Hans Peter Freyther26c3a352010-06-08 11:00:09 +0800766 llist_add_tail(&entry->list, &lst->fltr_list);
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800767 return entry;
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800768}
Holger Hans Peter Freyther20ee3122010-07-05 14:39:44 +0800769
770int bsc_nat_msc_is_connected(struct bsc_nat *nat)
771{
772 return nat->msc_con->is_connected;
773}
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +0800774
775static const int con_to_ctr[] = {
776 [NAT_CON_TYPE_NONE] = -1,
777 [NAT_CON_TYPE_LU] = BCFG_CTR_CON_TYPE_LU,
778 [NAT_CON_TYPE_CM_SERV_REQ] = BCFG_CTR_CON_CMSERV_RQ,
779 [NAT_CON_TYPE_PAG_RESP] = BCFG_CTR_CON_PAG_RESP,
Holger Hans Peter Freyther74dc3032010-09-29 02:47:29 +0800780 [NAT_CON_TYPE_SSA] = BCFG_CTR_CON_SSA,
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +0800781 [NAT_CON_TYPE_LOCAL_REJECT] = -1,
782 [NAT_CON_TYPE_OTHER] = BCFG_CTR_CON_OTHER,
783};
784
785int bsc_conn_type_to_ctr(struct sccp_connections *conn)
786{
787 return con_to_ctr[conn->con_type];
788}
Holger Hans Peter Freyther69cfa172010-10-13 20:37:13 +0200789
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200790int bsc_write_cb(struct osmo_fd *bfd, struct msgb *msg)
Holger Hans Peter Freyther69cfa172010-10-13 20:37:13 +0200791{
792 int rc;
793
794 rc = write(bfd->fd, msg->data, msg->len);
795 if (rc != msg->len)
796 LOGP(DNAT, LOGL_ERROR, "Failed to write message to the BSC.\n");
797
798 return rc;
799}
800
Holger Hans Peter Freyther20102b02011-05-18 18:41:14 +0200801static char *rewrite_non_international(struct bsc_nat *nat, void *ctx, const char *imsi,
802 struct gsm_mncc_number *called)
803{
804 struct osmo_config_entry *entry;
805 char *new_number = NULL;
806
807 if (!nat->num_rewr)
808 return NULL;
809
810 if (called->plan != 1)
811 return NULL;
812 if (called->type == 1)
813 return NULL;
814 if (strncmp(called->number, "00", 2) == 0)
815 return NULL;
816
817 /* need to find a replacement and then fix it */
818 llist_for_each_entry(entry, &nat->num_rewr->entry, list) {
819 regex_t reg;
820 regmatch_t matches[2];
821
822 if (entry->mcc[0] != '*' && strncmp(entry->mcc, imsi, 3) != 0)
823 continue;
824 if (entry->mnc[0] != '*' && strncmp(entry->mnc, imsi + 3, 2) != 0)
825 continue;
826
827 if (entry->text[0] == '+') {
828 LOGP(DNAT, LOGL_ERROR,
829 "Plus is not allowed in the number");
830 continue;
831 }
832
833 /* We have an entry for the IMSI. Need to match now */
834 if (regcomp(&reg, entry->option, REG_EXTENDED) != 0) {
835 LOGP(DNAT, LOGL_ERROR,
836 "Regexp '%s' is not valid.\n", entry->option);
837 continue;
838 }
839
840 /* this regexp matches... */
841 if (regexec(&reg, called->number, 2, matches, 0) == 0 &&
842 matches[1].rm_eo != -1)
843 new_number = talloc_asprintf(ctx, "%s%s",
844 entry->text,
845 &called->number[matches[1].rm_so]);
846 regfree(&reg);
847
848 if (new_number)
849 break;
850 }
851
852 return new_number;
853}
854
855
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +0200856/**
857 * Rewrite non global numbers... according to rules based on the IMSI
858 */
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200859struct msgb *bsc_nat_rewrite_setup(struct bsc_nat *nat, struct msgb *msg, struct bsc_nat_parsed *parsed, const char *imsi)
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +0200860{
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200861 struct tlv_parsed tp;
862 struct gsm48_hdr *hdr48;
863 uint32_t len;
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200864 uint8_t msg_type, proto;
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200865 unsigned int payload_len;
866 struct gsm_mncc_number called;
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200867 char *new_number = NULL;
868 struct msgb *out, *sccp;
869 uint8_t *outptr;
870 const uint8_t *msgptr;
871 int sec_len;
872
873 if (!imsi || strlen(imsi) < 5)
874 return msg;
875
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200876 /* only care about DTAP messages */
877 if (parsed->bssap != BSSAP_MSG_DTAP)
878 return msg;
879 if (!parsed->dest_local_ref)
880 return msg;
881
882 hdr48 = bsc_unpack_dtap(parsed, msg, &len);
883 if (!hdr48)
884 return msg;
885
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200886 proto = hdr48->proto_discr & 0x0f;
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200887 msg_type = hdr48->msg_type & 0xbf;
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200888 if (proto != GSM48_PDISC_CC ||
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200889 msg_type != GSM48_MT_CC_SETUP)
890 return msg;
891
892 /* decode and rewrite the message */
893 payload_len = len - sizeof(*hdr48);
894 tlv_parse(&tp, &gsm48_att_tlvdef, hdr48->data, payload_len, 0, 0);
895
896 /* no number, well let us ignore it */
897 if (!TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD))
898 return msg;
899
900 memset(&called, 0, sizeof(called));
901 gsm48_decode_called(&called,
902 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD) - 1);
903
904 /* check if it looks international and stop */
Holger Hans Peter Freyther20102b02011-05-18 18:41:14 +0200905 new_number = rewrite_non_international(nat, msg, imsi, &called);
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200906
907 if (!new_number) {
908 LOGP(DNAT, LOGL_DEBUG, "No IMSI match found, returning message.\n");
909 return msg;
910 }
911
Holger Hans Peter Freyther4446b3b2011-02-10 11:41:49 +0100912 if (strlen(new_number) > sizeof(called.number)) {
913 LOGP(DNAT, LOGL_ERROR, "Number is too long for structure.\n");
914 talloc_free(new_number);
915 return msg;
916 }
917
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200918 /*
919 * Need to create a new message now based on the old onew
920 * with a new number. We can sadly not patch this in place
921 * so we will need to regenerate it.
922 */
923
924 out = msgb_alloc_headroom(4096, 128, "changed-setup");
925 if (!out) {
926 LOGP(DNAT, LOGL_ERROR, "Failed to allocate.\n");
927 talloc_free(new_number);
928 return msg;
929 }
930
931 /* copy the header */
932 outptr = msgb_put(out, sizeof(*hdr48));
933 memcpy(outptr, hdr48, sizeof(*hdr48));
934
935 /* copy everything up to the number */
936 sec_len = TLVP_VAL(&tp, GSM48_IE_CALLED_BCD) - 2 - &hdr48->data[0];
937 outptr = msgb_put(out, sec_len);
938 memcpy(outptr, &hdr48->data[0], sec_len);
939
940 /* create the new number */
Holger Hans Peter Freyther91fa8502011-02-10 11:46:51 +0100941 if (strncmp(new_number, "00", 2) == 0) {
942 called.type = 1;
943 strncpy(called.number, new_number + 2, sizeof(called.number));
944 } else {
945 strncpy(called.number, new_number, sizeof(called.number));
946 }
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200947 gsm48_encode_called(out, &called);
948
949 /* copy thre rest */
950 msgptr = TLVP_VAL(&tp, GSM48_IE_CALLED_BCD) +
951 TLVP_LEN(&tp, GSM48_IE_CALLED_BCD);
952 sec_len = payload_len - (msgptr - &hdr48->data[0]);
953 outptr = msgb_put(out, sec_len);
954 memcpy(outptr, msgptr, sec_len);
955
956 /* wrap with DTAP, SCCP, then IPA. TODO: Stop copying */
957 gsm0808_prepend_dtap_header(out, 0);
958 sccp = sccp_create_dt1(parsed->dest_local_ref, out->data, out->len);
959 if (!sccp) {
960 LOGP(DNAT, LOGL_ERROR, "Failed to allocate.\n");
961 talloc_free(new_number);
962 talloc_free(out);
963 return msg;
964 }
965
966 ipaccess_prepend_header(sccp, IPAC_PROTO_SCCP);
967
968 /* give up memory, we are done */
969 talloc_free(new_number);
970 /* the parsed hangs off from msg but it needs to survive */
971 talloc_steal(sccp, parsed);
972 msgb_free(msg);
973 msgb_free(out);
974 out = NULL;
975 return sccp;
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +0200976}
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200977