blob: 7387b517acd8dcc466c3b913e4306f71a580e55d [file] [log] [blame]
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +08001
2/* BSC Multiplexer/NAT Utilities */
3
4/*
5 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
6 * (C) 2010 by On-Waves
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (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
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25#include <openbsc/bsc_nat.h>
Holger Hans Peter Freytherc2b31ed2010-07-31 05:17:17 +080026#include <openbsc/bsc_nat_sccp.h>
Holger Hans Peter Freyther20ee3122010-07-05 14:39:44 +080027#include <openbsc/bsc_msc.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080028#include <openbsc/gsm_data.h>
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +020029#include <openbsc/debug.h>
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +020030#include <openbsc/ipaccess.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080031
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +020032#include <osmocore/linuxlist.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080033#include <osmocore/talloc.h>
Holger Hans Peter Freyther13959482010-06-15 18:50:57 +080034#include <osmocore/gsm0808.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080035
Holger Hans Peter Freyther69d801e2010-06-15 20:13:33 +080036#include <osmocore/protocol/gsm_08_08.h>
37
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>
42
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +080043
44static 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 Freytherb2c38eb2010-06-17 18:16:00 +080050};
51
52static const struct rate_ctr_group_desc bsc_cfg_ctrg_desc = {
53 .group_name_prefix = "nat.bsc",
54 .group_description = "NAT BSC Statistics",
55 .num_ctr = ARRAY_SIZE(bsc_cfg_ctr_description),
56 .ctr_desc = bsc_cfg_ctr_description,
57};
58
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080059struct bsc_nat *bsc_nat_alloc(void)
60{
61 struct bsc_nat *nat = talloc_zero(tall_bsc_ctx, struct bsc_nat);
62 if (!nat)
63 return NULL;
64
65 INIT_LLIST_HEAD(&nat->sccp_connections);
66 INIT_LLIST_HEAD(&nat->bsc_connections);
67 INIT_LLIST_HEAD(&nat->bsc_configs);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080068 INIT_LLIST_HEAD(&nat->access_lists);
69
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +020070 nat->stats.sccp.conn = counter_alloc("nat.sccp.conn");
71 nat->stats.sccp.calls = counter_alloc("nat.sccp.calls");
72 nat->stats.bsc.reconn = counter_alloc("nat.bsc.conn");
73 nat->stats.bsc.auth_fail = counter_alloc("nat.bsc.auth_fail");
74 nat->stats.msc.reconn = counter_alloc("nat.msc.conn");
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080075 nat->msc_ip = talloc_strdup(nat, "127.0.0.1");
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +020076 nat->msc_port = 5000;
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +080077 nat->auth_timeout = 2;
78 nat->ping_timeout = 20;
79 nat->pong_timeout = 5;
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080080 return nat;
81}
82
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080083void bsc_nat_set_msc_ip(struct bsc_nat *nat, const char *ip)
84{
85 if (nat->msc_ip)
86 talloc_free(nat->msc_ip);
87 nat->msc_ip = talloc_strdup(nat, ip);
88}
89
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080090struct bsc_connection *bsc_connection_alloc(struct bsc_nat *nat)
91{
92 struct bsc_connection *con = talloc_zero(nat, struct bsc_connection);
93 if (!con)
94 return NULL;
95
Holger Hans Peter Freytherf8048d92010-03-29 15:14:15 +020096 con->nat = nat;
Holger Hans Peter Freyther81519732010-04-22 12:05:23 +080097 write_queue_init(&con->write_queue, 100);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080098 return con;
99}
100
101struct bsc_config *bsc_config_alloc(struct bsc_nat *nat, const char *token, unsigned int lac)
102{
103 struct bsc_config *conf = talloc_zero(nat, struct bsc_config);
104 if (!conf)
105 return NULL;
106
107 conf->token = talloc_strdup(conf, token);
108 conf->lac = lac;
109 conf->nr = nat->num_bsc;
110 conf->nat = nat;
111
Holger Hans Peter Freytherd1278c12010-04-16 16:52:20 +0200112 llist_add_tail(&conf->entry, &nat->bsc_configs);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800113 ++nat->num_bsc;
114
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800115 conf->stats.ctrg = rate_ctr_group_alloc(conf, &bsc_cfg_ctrg_desc, conf->lac);
116 if (!conf->stats.ctrg) {
117 talloc_free(conf);
118 return NULL;
119 }
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200120
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800121 return conf;
122}
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200123
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200124void sccp_connection_destroy(struct sccp_connections *conn)
125{
126 LOGP(DNAT, LOGL_DEBUG, "Destroy 0x%x <-> 0x%x mapping for con %p\n",
127 sccp_src_ref_to_int(&conn->real_ref),
128 sccp_src_ref_to_int(&conn->patched_ref), conn->bsc);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800129 bsc_mgcp_dlcx(conn);
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200130 llist_del(&conn->list_entry);
131 talloc_free(conn);
132}
133
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200134struct bsc_connection *bsc_nat_find_bsc(struct bsc_nat *nat, struct msgb *msg, int *lac_out)
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200135{
136 struct bsc_connection *bsc;
137 int data_length;
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800138 const uint8_t *data;
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200139 struct tlv_parsed tp;
140 int i = 0;
141
Holger Hans Peter Freyther7a773692010-04-18 02:41:20 +0800142 *lac_out = -1;
143
Holger Hans Peter Freythere9be5172010-03-30 06:51:23 +0200144 if (!msg->l3h || msgb_l3len(msg) < 3) {
145 LOGP(DNAT, LOGL_ERROR, "Paging message is too short.\n");
146 return NULL;
147 }
148
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200149 tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l3h + 3, msgb_l3len(msg) - 3, 0, 0);
150 if (!TLVP_PRESENT(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST)) {
151 LOGP(DNAT, LOGL_ERROR, "No CellIdentifier List inside paging msg.\n");
152 return NULL;
153 }
154
155 data_length = TLVP_LEN(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST);
156 data = TLVP_VAL(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST);
Holger Hans Peter Freythera4376ad2010-04-21 18:47:24 +0800157
158 /* No need to try a different BSS */
159 if (data[0] == CELL_IDENT_BSS) {
160 return NULL;
161 } else if (data[0] != CELL_IDENT_LAC) {
Holger Hans Peter Freyther530c4b12010-04-06 10:25:40 +0200162 LOGP(DNAT, LOGL_ERROR, "Unhandled cell ident discrminator: %d\n", data[0]);
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200163 return NULL;
164 }
165
166 /* Currently we only handle one BSC */
167 for (i = 1; i < data_length - 1; i += 2) {
168 unsigned int _lac = ntohs(*(unsigned int *) &data[i]);
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200169 *lac_out = _lac;
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200170 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200171 if (!bsc->cfg)
172 continue;
173 if (!bsc->authenticated || _lac != bsc->cfg->lac)
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200174 continue;
175
176 return bsc;
177 }
178 }
179
180 return NULL;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200181}
182
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800183int bsc_write_mgcp(struct bsc_connection *bsc, const uint8_t *data, unsigned int length)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200184{
185 struct msgb *msg;
186
187 if (length > 4096 - 128) {
188 LOGP(DINP, LOGL_ERROR, "Can not send message of that size.\n");
189 return -1;
190 }
191
192 msg = msgb_alloc_headroom(4096, 128, "to-bsc");
193 if (!msg) {
194 LOGP(DINP, LOGL_ERROR, "Failed to allocate memory for BSC msg.\n");
195 return -1;
196 }
197
198 /* copy the data */
199 msg->l3h = msgb_put(msg, length);
200 memcpy(msg->l3h, data, length);
201
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200202 return bsc_write(bsc, msg, NAT_IPAC_PROTO_MGCP);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200203}
204
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200205int bsc_write(struct bsc_connection *bsc, struct msgb *msg, int proto)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200206{
207 /* prepend the header */
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200208 ipaccess_prepend_header(msg, proto);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200209
210 if (write_queue_enqueue(&bsc->write_queue, msg) != 0) {
211 LOGP(DINP, LOGL_ERROR, "Failed to enqueue the write.\n");
212 msgb_free(msg);
213 return -1;
214 }
215
216 return 0;
217}
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800218
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800219static int lst_check_allow(struct bsc_nat_acc_lst *lst, const char *mi_string)
220{
221 struct bsc_nat_acc_lst_entry *entry;
222
223 llist_for_each_entry(entry, &lst->fltr_list, list) {
224 if (!entry->imsi_allow)
225 continue;
226 if (regexec(&entry->imsi_allow_re, mi_string, 0, NULL, 0) == 0)
227 return 0;
228 }
229
230 return 1;
231}
232
233static int lst_check_deny(struct bsc_nat_acc_lst *lst, const char *mi_string)
234{
235 struct bsc_nat_acc_lst_entry *entry;
236
237 llist_for_each_entry(entry, &lst->fltr_list, list) {
238 if (!entry->imsi_deny)
239 continue;
240 if (regexec(&entry->imsi_deny_re, mi_string, 0, NULL, 0) == 0)
241 return 0;
242 }
243
244 return 1;
245}
246
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800247/* apply white/black list */
248static int auth_imsi(struct bsc_connection *bsc, const char *mi_string)
249{
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800250 /*
251 * Now apply blacklist/whitelist of the BSC and the NAT.
252 * 1.) Reject if the IMSI is not allowed at the BSC
253 * 2.) Allow directly if the IMSI is allowed at the BSC
254 * 3.) Reject if the IMSI not allowed at the global level.
255 * 4.) Allow directly if the IMSI is allowed at the global level
256 */
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800257 struct bsc_nat_acc_lst *nat_lst = NULL;
258 struct bsc_nat_acc_lst *bsc_lst = NULL;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800259
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800260 bsc_lst = bsc_nat_acc_lst_find(bsc->nat, bsc->cfg->acc_lst_name);
261 nat_lst = bsc_nat_acc_lst_find(bsc->nat, bsc->nat->acc_lst_name);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800262
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800263
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800264 if (bsc_lst) {
265 /* 1. BSC deny */
266 if (lst_check_deny(bsc_lst, mi_string) == 0) {
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800267 LOGP(DNAT, LOGL_ERROR,
Holger Hans Peter Freyther48945b12010-05-16 00:45:07 +0800268 "Filtering %s by imsi_deny on bsc nr: %d.\n", mi_string, bsc->cfg->nr);
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800269 return -2;
270 }
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800271
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800272 /* 2. BSC allow */
273 if (lst_check_allow(bsc_lst, mi_string) == 0)
Holger Hans Peter Freyther909e61f2010-09-15 00:41:19 +0800274 return 1;
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800275 }
276
277 /* 3. NAT deny */
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800278 if (nat_lst) {
279 if (lst_check_deny(nat_lst, mi_string) == 0) {
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800280 LOGP(DNAT, LOGL_ERROR,
Holger Hans Peter Freyther48945b12010-05-16 00:45:07 +0800281 "Filtering %s by nat imsi_deny on bsc nr: %d.\n", mi_string, bsc->cfg->nr);
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800282 return -3;
283 }
284 }
285
Holger Hans Peter Freyther909e61f2010-09-15 00:41:19 +0800286 return 1;
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800287}
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800288
289static int _cr_check_loc_upd(struct bsc_connection *bsc, uint8_t *data, unsigned int length)
290{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800291 uint8_t mi_type;
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800292 struct gsm48_loc_upd_req *lu;
293 char mi_string[GSM48_MI_SIZE];
294
Holger Hans Peter Freytherf8303222010-05-14 19:24:06 +0800295 if (length < sizeof(*lu)) {
296 LOGP(DNAT, LOGL_ERROR,
297 "LU does not fit. Length is %d \n", length);
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800298 return -1;
299 }
300
301 lu = (struct gsm48_loc_upd_req *) data;
302 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
303
304 /*
305 * We can only deal with the IMSI. This will fail for a phone that
306 * will send the TMSI of a previous network to us.
307 */
308 if (mi_type != GSM_MI_TYPE_IMSI)
309 return 0;
310
311 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800312 return auth_imsi(bsc, mi_string);
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800313}
314
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800315static int _cr_check_cm_serv_req(struct bsc_connection *bsc, uint8_t *data, unsigned int length)
316{
Holger Hans Peter Freyther66e1ef72010-05-16 01:13:28 +0800317 static const uint32_t classmark_offset =
318 offsetof(struct gsm48_service_request, classmark);
319
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800320 char mi_string[GSM48_MI_SIZE];
Holger Hans Peter Freyther66e1ef72010-05-16 01:13:28 +0800321 uint8_t mi_type;
322 int rc;
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800323 struct gsm48_service_request *req;
324
325 /* unfortunately in Phase1 the classmark2 length is variable */
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800326
327 if (length < sizeof(*req)) {
328 LOGP(DNAT, LOGL_ERROR,
329 "CM Serv Req does not fit. Length is %d\n", length);
330 return -1;
331 }
332
333 req = (struct gsm48_service_request *) data;
Holger Hans Peter Freyther66e1ef72010-05-16 01:13:28 +0800334 rc = gsm48_extract_mi((uint8_t *) &req->classmark,
335 length - classmark_offset, mi_string, &mi_type);
336 if (rc < 0) {
337 LOGP(DNAT, LOGL_ERROR, "Failed to parse the classmark2/mi. error: %d\n", rc);
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800338 return -1;
339 }
340
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800341 /* we have to let the TMSI or such pass */
342 if (mi_type != GSM_MI_TYPE_IMSI)
343 return 0;
344
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800345 return auth_imsi(bsc, mi_string);
346}
347
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800348static int _cr_check_pag_resp(struct bsc_connection *bsc, uint8_t *data, unsigned int length)
349{
350 struct gsm48_pag_resp *resp;
351 char mi_string[GSM48_MI_SIZE];
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800352 uint8_t mi_type;
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800353
354 if (length < sizeof(*resp)) {
355 LOGP(DNAT, LOGL_ERROR, "PAG RESP does not fit. Length was %d.\n", length);
356 return -1;
357 }
358
359 resp = (struct gsm48_pag_resp *) data;
360 if (gsm48_paging_extract_mi(resp, length, mi_string, &mi_type) < 0) {
361 LOGP(DNAT, LOGL_ERROR, "Failed to extract the MI.\n");
362 return -1;
363 }
364
365 /* we need to let it pass for now */
366 if (mi_type != GSM_MI_TYPE_IMSI)
367 return 0;
368
369 return auth_imsi(bsc, mi_string);
370}
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800371
372/* Filter out CR data... */
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800373int bsc_nat_filter_sccp_cr(struct bsc_connection *bsc, struct msgb *msg, struct bsc_nat_parsed *parsed, int *con_type)
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800374{
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800375 struct tlv_parsed tp;
376 struct gsm48_hdr *hdr48;
377 int hdr48_len;
378 int len;
379
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800380 *con_type = NAT_CON_TYPE_NONE;
381
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800382 if (parsed->gsm_type != BSS_MAP_MSG_COMPLETE_LAYER_3) {
383 LOGP(DNAT, LOGL_ERROR,
384 "Rejecting CR message due wrong GSM Type %d\n", parsed->gsm_type);
385 return -1;
386 }
387
388 /* the parsed has had some basic l3 length check */
389 len = msg->l3h[1];
390 if (msgb_l3len(msg) - 3 < len) {
391 LOGP(DNAT, LOGL_ERROR,
392 "The CR Data has not enough space...\n");
393 return -1;
394 }
395
396 msg->l4h = &msg->l3h[3];
397 len -= 1;
398
399 tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l4h, len, 0, 0);
400
401 if (!TLVP_PRESENT(&tp, GSM0808_IE_LAYER_3_INFORMATION)) {
402 LOGP(DNAT, LOGL_ERROR, "CR Data does not contain layer3 information.\n");
403 return -1;
404 }
405
406 hdr48_len = TLVP_LEN(&tp, GSM0808_IE_LAYER_3_INFORMATION);
407
408 if (hdr48_len < sizeof(*hdr48)) {
409 LOGP(DNAT, LOGL_ERROR, "GSM48 header does not fit.\n");
410 return -1;
411 }
412
413 hdr48 = (struct gsm48_hdr *) TLVP_VAL(&tp, GSM0808_IE_LAYER_3_INFORMATION);
414
Holger Hans Peter Freyther87ef2f22010-05-15 22:09:39 +0800415 if (hdr48->proto_discr == GSM48_PDISC_MM &&
416 hdr48->msg_type == GSM48_MT_MM_LOC_UPD_REQUEST) {
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800417 *con_type = NAT_CON_TYPE_LU;
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800418 return _cr_check_loc_upd(bsc, &hdr48->data[0], hdr48_len - sizeof(*hdr48));
Holger Hans Peter Freyther87ef2f22010-05-15 22:09:39 +0800419 } else if (hdr48->proto_discr == GSM48_PDISC_MM &&
420 hdr48->msg_type == GSM48_MT_MM_CM_SERV_REQ) {
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800421 *con_type = NAT_CON_TYPE_CM_SERV_REQ;
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800422 return _cr_check_cm_serv_req(bsc, &hdr48->data[0], hdr48_len - sizeof(*hdr48));
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800423 } else if (hdr48->proto_discr == GSM48_PDISC_RR &&
424 hdr48->msg_type == GSM48_MT_RR_PAG_RESP) {
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800425 *con_type = NAT_CON_TYPE_PAG_RESP;
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800426 return _cr_check_pag_resp(bsc, &hdr48->data[0], hdr48_len - sizeof(*hdr48));
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800427 } else {
Holger Hans Peter Freyther1f387472010-05-16 01:05:47 +0800428 /* We only want to filter the above, let other things pass */
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800429 *con_type = NAT_CON_TYPE_OTHER;
Holger Hans Peter Freyther1f387472010-05-16 01:05:47 +0800430 return 0;
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800431 }
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800432}
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800433
Holger Hans Peter Freyther74e0a1b2010-09-15 01:11:08 +0800434int bsc_nat_filter_dt(struct bsc_connection *bsc, struct msgb *msg,
435 struct sccp_connections *con, struct bsc_nat_parsed *parsed)
436{
437 if (con->imsi_checked)
438 return 0;
439
440 return 0;
441}
442
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800443void bsc_parse_reg(void *ctx, regex_t *reg, char **imsi, int argc, const char **argv)
444{
445 if (*imsi) {
446 talloc_free(*imsi);
447 *imsi = NULL;
448 }
449 regfree(reg);
450
451 if (argc > 0) {
452 *imsi = talloc_strdup(ctx, argv[0]);
453 regcomp(reg, argv[0], 0);
454 }
455}
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800456
457static const char *con_types [] = {
458 [NAT_CON_TYPE_NONE] = "n/a",
459 [NAT_CON_TYPE_LU] = "Location Update",
460 [NAT_CON_TYPE_CM_SERV_REQ] = "CM Serv Req",
461 [NAT_CON_TYPE_PAG_RESP] = "Paging Response",
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800462 [NAT_CON_TYPE_LOCAL_REJECT] = "Local Reject",
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800463 [NAT_CON_TYPE_OTHER] = "Other",
464};
465
466const char *bsc_con_type_to_string(int type)
467{
468 return con_types[type];
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800469}
470
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800471struct 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 +0800472{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800473 struct bsc_nat_acc_lst *lst;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800474
475 if (!name)
476 return NULL;
477
478 llist_for_each_entry(lst, &nat->access_lists, list)
479 if (strcmp(lst->name, name) == 0)
480 return lst;
481
482 return NULL;
483}
484
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800485struct 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 +0800486{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800487 struct bsc_nat_acc_lst *lst;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800488
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800489 lst = bsc_nat_acc_lst_find(nat, name);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800490 if (lst)
491 return lst;
492
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800493 lst = talloc_zero(nat, struct bsc_nat_acc_lst);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800494 if (!lst) {
495 LOGP(DNAT, LOGL_ERROR, "Failed to allocate access list");
496 return NULL;
497 }
498
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800499 INIT_LLIST_HEAD(&lst->fltr_list);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800500 lst->name = talloc_strdup(lst, name);
Holger Hans Peter Freyther26c3a352010-06-08 11:00:09 +0800501 llist_add_tail(&lst->list, &nat->access_lists);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800502 return lst;
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800503}
504
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800505void bsc_nat_acc_lst_delete(struct bsc_nat_acc_lst *lst)
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800506{
507 llist_del(&lst->list);
508 talloc_free(lst);
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800509}
510
511struct bsc_nat_acc_lst_entry *bsc_nat_acc_lst_entry_create(struct bsc_nat_acc_lst *lst)
512{
513 struct bsc_nat_acc_lst_entry *entry;
514
515 entry = talloc_zero(lst, struct bsc_nat_acc_lst_entry);
516 if (!entry)
517 return NULL;
518
Holger Hans Peter Freyther26c3a352010-06-08 11:00:09 +0800519 llist_add_tail(&entry->list, &lst->fltr_list);
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800520 return entry;
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800521}
Holger Hans Peter Freyther20ee3122010-07-05 14:39:44 +0800522
523int bsc_nat_msc_is_connected(struct bsc_nat *nat)
524{
525 return nat->msc_con->is_connected;
526}