blob: c1e3c9828c7b1184ecbd4e6ab3bdfe944957d226 [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 Freyther3e9a7f82010-10-12 23:21:54 +020031#include <openbsc/vty.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080032
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +020033#include <osmocore/linuxlist.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080034#include <osmocore/talloc.h>
Holger Hans Peter Freyther13959482010-06-15 18:50:57 +080035#include <osmocore/gsm0808.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080036
Holger Hans Peter Freyther69d801e2010-06-15 20:13:33 +080037#include <osmocore/protocol/gsm_08_08.h>
38
Harald Welted5db12c2010-08-03 15:11:51 +020039#include <osmocom/sccp/sccp.h>
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +020040
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +020041#include <netinet/in.h>
42#include <arpa/inet.h>
Holger Hans Peter Freyther69cfa172010-10-13 20:37:13 +020043#include <unistd.h>
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +020044
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +080045static const struct rate_ctr_desc bsc_cfg_ctr_description[] = {
Holger Hans Peter Freyther71d36b32010-06-17 18:31:18 +080046 [BCFG_CTR_SCCP_CONN] = { "sccp.conn", "SCCP Connections "},
47 [BCFG_CTR_SCCP_CALLS] = { "sccp.calls", "SCCP Assignment Commands "},
48 [BCFG_CTR_NET_RECONN] = { "net.reconnects", "Network reconnects "},
49 [BCFG_CTR_DROPPED_SCCP] = { "dropped.sccp", "Dropped SCCP connections."},
50 [BCFG_CTR_DROPPED_CALLS] = { "dropped.calls", "Dropped active calls. "},
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +080051 [BCFG_CTR_REJECTED_CR] = { "rejected.cr", "Rejected CR due filter "},
52 [BCFG_CTR_REJECTED_MSG] = { "rejected.msg", "Rejected MSG due filter "},
53 [BCFG_CTR_ILL_PACKET] = { "rejected.ill", "Rejected due parse error "},
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +080054 [BCFG_CTR_CON_TYPE_LU] = { "conn.lu", "Conn Location Update "},
55 [BCFG_CTR_CON_CMSERV_RQ] = { "conn.rq", "Conn CM Service Req "},
56 [BCFG_CTR_CON_PAG_RESP] = { "conn.pag", "Conn Paging Response "},
57 [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
85 INIT_LLIST_HEAD(&nat->sccp_connections);
86 INIT_LLIST_HEAD(&nat->bsc_connections);
87 INIT_LLIST_HEAD(&nat->bsc_configs);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080088 INIT_LLIST_HEAD(&nat->access_lists);
89
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +020090 nat->stats.sccp.conn = counter_alloc("nat.sccp.conn");
91 nat->stats.sccp.calls = counter_alloc("nat.sccp.calls");
92 nat->stats.bsc.reconn = counter_alloc("nat.bsc.conn");
93 nat->stats.bsc.auth_fail = counter_alloc("nat.bsc.auth_fail");
94 nat->stats.msc.reconn = counter_alloc("nat.msc.conn");
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080095 nat->msc_ip = talloc_strdup(nat, "127.0.0.1");
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +020096 nat->msc_port = 5000;
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +080097 nat->auth_timeout = 2;
98 nat->ping_timeout = 20;
99 nat->pong_timeout = 5;
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800100 return nat;
101}
102
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800103void bsc_nat_set_msc_ip(struct bsc_nat *nat, const char *ip)
104{
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200105 bsc_replace_string(nat, &nat->msc_ip, ip);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800106}
107
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800108struct bsc_connection *bsc_connection_alloc(struct bsc_nat *nat)
109{
110 struct bsc_connection *con = talloc_zero(nat, struct bsc_connection);
111 if (!con)
112 return NULL;
113
Holger Hans Peter Freytherf8048d92010-03-29 15:14:15 +0200114 con->nat = nat;
Holger Hans Peter Freyther81519732010-04-22 12:05:23 +0800115 write_queue_init(&con->write_queue, 100);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800116 return con;
117}
118
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800119struct bsc_config *bsc_config_alloc(struct bsc_nat *nat, const char *token)
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800120{
121 struct bsc_config *conf = talloc_zero(nat, struct bsc_config);
122 if (!conf)
123 return NULL;
124
125 conf->token = talloc_strdup(conf, token);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800126 conf->nr = nat->num_bsc;
127 conf->nat = nat;
128
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800129 INIT_LLIST_HEAD(&conf->lac_list);
130
Holger Hans Peter Freytherd1278c12010-04-16 16:52:20 +0200131 llist_add_tail(&conf->entry, &nat->bsc_configs);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800132 ++nat->num_bsc;
133
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800134 conf->stats.ctrg = rate_ctr_group_alloc(conf, &bsc_cfg_ctrg_desc, conf->nr);
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800135 if (!conf->stats.ctrg) {
136 talloc_free(conf);
137 return NULL;
138 }
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200139
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800140 return conf;
141}
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200142
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800143void bsc_config_add_lac(struct bsc_config *cfg, int _lac)
144{
145 struct bsc_lac_entry *lac;
146
147 llist_for_each_entry(lac, &cfg->lac_list, entry)
148 if (lac->lac == _lac)
149 return;
150
151 lac = talloc_zero(cfg, struct bsc_lac_entry);
152 if (!lac) {
153 LOGP(DNAT, LOGL_ERROR, "Failed to allocate.\n");
154 return;
155 }
156
157 lac->lac = _lac;
158 llist_add_tail(&lac->entry, &cfg->lac_list);
159}
160
161void bsc_config_del_lac(struct bsc_config *cfg, int _lac)
162{
163 struct bsc_lac_entry *lac;
164
165 llist_for_each_entry(lac, &cfg->lac_list, entry)
166 if (lac->lac == _lac) {
167 llist_del(&lac->entry);
168 talloc_free(lac);
169 return;
170 }
171}
172
173int bsc_config_handles_lac(struct bsc_config *cfg, int lac_nr)
174{
175 struct bsc_lac_entry *entry;
176
177 llist_for_each_entry(entry, &cfg->lac_list, entry)
178 if (entry->lac == lac_nr)
179 return 1;
180
181 return 0;
182}
183
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200184void sccp_connection_destroy(struct sccp_connections *conn)
185{
186 LOGP(DNAT, LOGL_DEBUG, "Destroy 0x%x <-> 0x%x mapping for con %p\n",
187 sccp_src_ref_to_int(&conn->real_ref),
188 sccp_src_ref_to_int(&conn->patched_ref), conn->bsc);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800189 bsc_mgcp_dlcx(conn);
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200190 llist_del(&conn->list_entry);
191 talloc_free(conn);
192}
193
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200194struct 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 +0200195{
196 struct bsc_connection *bsc;
197 int data_length;
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800198 const uint8_t *data;
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200199 struct tlv_parsed tp;
200 int i = 0;
201
Holger Hans Peter Freyther7a773692010-04-18 02:41:20 +0800202 *lac_out = -1;
203
Holger Hans Peter Freythere9be5172010-03-30 06:51:23 +0200204 if (!msg->l3h || msgb_l3len(msg) < 3) {
205 LOGP(DNAT, LOGL_ERROR, "Paging message is too short.\n");
206 return NULL;
207 }
208
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200209 tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l3h + 3, msgb_l3len(msg) - 3, 0, 0);
210 if (!TLVP_PRESENT(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST)) {
211 LOGP(DNAT, LOGL_ERROR, "No CellIdentifier List inside paging msg.\n");
212 return NULL;
213 }
214
215 data_length = TLVP_LEN(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST);
216 data = TLVP_VAL(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST);
Holger Hans Peter Freythera4376ad2010-04-21 18:47:24 +0800217
218 /* No need to try a different BSS */
219 if (data[0] == CELL_IDENT_BSS) {
220 return NULL;
221 } else if (data[0] != CELL_IDENT_LAC) {
Holger Hans Peter Freyther530c4b12010-04-06 10:25:40 +0200222 LOGP(DNAT, LOGL_ERROR, "Unhandled cell ident discrminator: %d\n", data[0]);
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200223 return NULL;
224 }
225
226 /* Currently we only handle one BSC */
227 for (i = 1; i < data_length - 1; i += 2) {
228 unsigned int _lac = ntohs(*(unsigned int *) &data[i]);
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200229 *lac_out = _lac;
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200230 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200231 if (!bsc->cfg)
232 continue;
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800233 if (!bsc->authenticated)
234 continue;
235 if (!bsc_config_handles_lac(bsc->cfg, _lac))
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200236 continue;
237
238 return bsc;
239 }
240 }
241
242 return NULL;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200243}
244
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800245int bsc_write_mgcp(struct bsc_connection *bsc, const uint8_t *data, unsigned int length)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200246{
247 struct msgb *msg;
248
249 if (length > 4096 - 128) {
250 LOGP(DINP, LOGL_ERROR, "Can not send message of that size.\n");
251 return -1;
252 }
253
254 msg = msgb_alloc_headroom(4096, 128, "to-bsc");
255 if (!msg) {
256 LOGP(DINP, LOGL_ERROR, "Failed to allocate memory for BSC msg.\n");
257 return -1;
258 }
259
260 /* copy the data */
261 msg->l3h = msgb_put(msg, length);
262 memcpy(msg->l3h, data, length);
263
Holger Hans Peter Freyther19c530c2010-10-13 23:52:01 +0200264 return bsc_write(bsc, msg, IPAC_PROTO_MGCP);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200265}
266
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200267int bsc_write(struct bsc_connection *bsc, struct msgb *msg, int proto)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200268{
Holger Hans Peter Freyther4d44fc52010-10-13 17:56:22 +0200269 return bsc_do_write(&bsc->write_queue, msg, proto);
270}
271
272int bsc_do_write(struct write_queue *queue, struct msgb *msg, int proto)
273{
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200274 /* prepend the header */
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200275 ipaccess_prepend_header(msg, proto);
Holger Hans Peter Freyther7e8da132010-10-16 17:33:46 +0200276 return bsc_write_msg(queue, msg);
277}
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200278
Holger Hans Peter Freyther7e8da132010-10-16 17:33:46 +0200279int bsc_write_msg(struct write_queue *queue, struct msgb *msg)
280{
Holger Hans Peter Freyther4d44fc52010-10-13 17:56:22 +0200281 if (write_queue_enqueue(queue, msg) != 0) {
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200282 LOGP(DINP, LOGL_ERROR, "Failed to enqueue the write.\n");
283 msgb_free(msg);
284 return -1;
285 }
286
287 return 0;
288}
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800289
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800290static int lst_check_allow(struct bsc_nat_acc_lst *lst, const char *mi_string)
291{
292 struct bsc_nat_acc_lst_entry *entry;
293
294 llist_for_each_entry(entry, &lst->fltr_list, list) {
295 if (!entry->imsi_allow)
296 continue;
297 if (regexec(&entry->imsi_allow_re, mi_string, 0, NULL, 0) == 0)
298 return 0;
299 }
300
301 return 1;
302}
303
304static int lst_check_deny(struct bsc_nat_acc_lst *lst, const char *mi_string)
305{
306 struct bsc_nat_acc_lst_entry *entry;
307
308 llist_for_each_entry(entry, &lst->fltr_list, list) {
309 if (!entry->imsi_deny)
310 continue;
311 if (regexec(&entry->imsi_deny_re, mi_string, 0, NULL, 0) == 0)
312 return 0;
313 }
314
315 return 1;
316}
317
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800318/* apply white/black list */
319static int auth_imsi(struct bsc_connection *bsc, const char *mi_string)
320{
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800321 /*
322 * Now apply blacklist/whitelist of the BSC and the NAT.
Holger Hans Peter Freyther1fd60632010-10-19 20:55:33 +0200323 * 1.) Allow directly if the IMSI is allowed at the BSC
324 * 2.) Reject if the IMSI is not allowed at the BSC
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800325 * 3.) Reject if the IMSI not allowed at the global level.
326 * 4.) Allow directly if the IMSI is allowed at the global level
327 */
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800328 struct bsc_nat_acc_lst *nat_lst = NULL;
329 struct bsc_nat_acc_lst *bsc_lst = NULL;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800330
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800331 bsc_lst = bsc_nat_acc_lst_find(bsc->nat, bsc->cfg->acc_lst_name);
332 nat_lst = bsc_nat_acc_lst_find(bsc->nat, bsc->nat->acc_lst_name);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800333
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800334
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800335 if (bsc_lst) {
Holger Hans Peter Freyther1fd60632010-10-19 20:55:33 +0200336 /* 1. BSC allow */
337 if (lst_check_allow(bsc_lst, mi_string) == 0)
338 return 1;
339
340 /* 2. BSC deny */
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800341 if (lst_check_deny(bsc_lst, mi_string) == 0) {
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800342 LOGP(DNAT, LOGL_ERROR,
Holger Hans Peter Freyther48945b12010-05-16 00:45:07 +0800343 "Filtering %s by imsi_deny on bsc nr: %d.\n", mi_string, bsc->cfg->nr);
Holger Hans Peter Freyther2f1a9842010-09-25 06:14:52 +0800344 rate_ctr_inc(&bsc_lst->stats->ctr[ACC_LIST_BSC_FILTER]);
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800345 return -2;
346 }
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800347
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800348 }
349
350 /* 3. NAT deny */
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800351 if (nat_lst) {
352 if (lst_check_deny(nat_lst, mi_string) == 0) {
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800353 LOGP(DNAT, LOGL_ERROR,
Holger Hans Peter Freyther48945b12010-05-16 00:45:07 +0800354 "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 +0800355 rate_ctr_inc(&nat_lst->stats->ctr[ACC_LIST_NAT_FILTER]);
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800356 return -3;
357 }
358 }
359
Holger Hans Peter Freyther909e61f2010-09-15 00:41:19 +0800360 return 1;
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800361}
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800362
363static int _cr_check_loc_upd(struct bsc_connection *bsc, uint8_t *data, unsigned int length)
364{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800365 uint8_t mi_type;
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800366 struct gsm48_loc_upd_req *lu;
367 char mi_string[GSM48_MI_SIZE];
368
Holger Hans Peter Freytherf8303222010-05-14 19:24:06 +0800369 if (length < sizeof(*lu)) {
370 LOGP(DNAT, LOGL_ERROR,
371 "LU does not fit. Length is %d \n", length);
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800372 return -1;
373 }
374
375 lu = (struct gsm48_loc_upd_req *) data;
376 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
377
378 /*
379 * We can only deal with the IMSI. This will fail for a phone that
380 * will send the TMSI of a previous network to us.
381 */
382 if (mi_type != GSM_MI_TYPE_IMSI)
383 return 0;
384
385 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800386 return auth_imsi(bsc, mi_string);
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800387}
388
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800389static int _cr_check_cm_serv_req(struct bsc_connection *bsc, uint8_t *data, unsigned int length)
390{
Holger Hans Peter Freyther66e1ef72010-05-16 01:13:28 +0800391 static const uint32_t classmark_offset =
392 offsetof(struct gsm48_service_request, classmark);
393
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800394 char mi_string[GSM48_MI_SIZE];
Holger Hans Peter Freyther66e1ef72010-05-16 01:13:28 +0800395 uint8_t mi_type;
396 int rc;
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800397 struct gsm48_service_request *req;
398
399 /* unfortunately in Phase1 the classmark2 length is variable */
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800400
401 if (length < sizeof(*req)) {
402 LOGP(DNAT, LOGL_ERROR,
403 "CM Serv Req does not fit. Length is %d\n", length);
404 return -1;
405 }
406
407 req = (struct gsm48_service_request *) data;
Holger Hans Peter Freyther66e1ef72010-05-16 01:13:28 +0800408 rc = gsm48_extract_mi((uint8_t *) &req->classmark,
409 length - classmark_offset, mi_string, &mi_type);
410 if (rc < 0) {
411 LOGP(DNAT, LOGL_ERROR, "Failed to parse the classmark2/mi. error: %d\n", rc);
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800412 return -1;
413 }
414
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800415 /* we have to let the TMSI or such pass */
416 if (mi_type != GSM_MI_TYPE_IMSI)
417 return 0;
418
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800419 return auth_imsi(bsc, mi_string);
420}
421
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800422static int _cr_check_pag_resp(struct bsc_connection *bsc, uint8_t *data, unsigned int length)
423{
424 struct gsm48_pag_resp *resp;
425 char mi_string[GSM48_MI_SIZE];
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800426 uint8_t mi_type;
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800427
428 if (length < sizeof(*resp)) {
429 LOGP(DNAT, LOGL_ERROR, "PAG RESP does not fit. Length was %d.\n", length);
430 return -1;
431 }
432
433 resp = (struct gsm48_pag_resp *) data;
434 if (gsm48_paging_extract_mi(resp, length, mi_string, &mi_type) < 0) {
435 LOGP(DNAT, LOGL_ERROR, "Failed to extract the MI.\n");
436 return -1;
437 }
438
439 /* we need to let it pass for now */
440 if (mi_type != GSM_MI_TYPE_IMSI)
441 return 0;
442
443 return auth_imsi(bsc, mi_string);
444}
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800445
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800446static int _dt_check_id_resp(struct bsc_connection *bsc,
447 uint8_t *data, unsigned int length,
448 struct sccp_connections *con)
449{
450 char mi_string[GSM48_MI_SIZE];
451 uint8_t mi_type;
452 int ret;
453
454 if (length < 2) {
455 LOGP(DNAT, LOGL_ERROR, "mi does not fit.\n");
456 return -1;
457 }
458
459 if (data[0] < length - 1) {
460 LOGP(DNAT, LOGL_ERROR, "mi length too big.\n");
461 return -2;
462 }
463
464 mi_type = data[1] & GSM_MI_TYPE_MASK;
465 gsm48_mi_to_string(mi_string, sizeof(mi_string), &data[1], data[0]);
466
467 if (mi_type != GSM_MI_TYPE_IMSI)
468 return 0;
469
470 ret = auth_imsi(bsc, mi_string);
471 con->imsi_checked = 1;
472 return ret;
473}
474
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800475/* Filter out CR data... */
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800476int 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 +0800477{
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800478 struct tlv_parsed tp;
479 struct gsm48_hdr *hdr48;
480 int hdr48_len;
481 int len;
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800482 uint8_t msg_type;
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800483
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800484 *con_type = NAT_CON_TYPE_NONE;
485
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800486 if (parsed->gsm_type != BSS_MAP_MSG_COMPLETE_LAYER_3) {
487 LOGP(DNAT, LOGL_ERROR,
488 "Rejecting CR message due wrong GSM Type %d\n", parsed->gsm_type);
489 return -1;
490 }
491
492 /* the parsed has had some basic l3 length check */
493 len = msg->l3h[1];
494 if (msgb_l3len(msg) - 3 < len) {
495 LOGP(DNAT, LOGL_ERROR,
496 "The CR Data has not enough space...\n");
497 return -1;
498 }
499
500 msg->l4h = &msg->l3h[3];
501 len -= 1;
502
503 tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l4h, len, 0, 0);
504
505 if (!TLVP_PRESENT(&tp, GSM0808_IE_LAYER_3_INFORMATION)) {
506 LOGP(DNAT, LOGL_ERROR, "CR Data does not contain layer3 information.\n");
507 return -1;
508 }
509
510 hdr48_len = TLVP_LEN(&tp, GSM0808_IE_LAYER_3_INFORMATION);
511
512 if (hdr48_len < sizeof(*hdr48)) {
513 LOGP(DNAT, LOGL_ERROR, "GSM48 header does not fit.\n");
514 return -1;
515 }
516
517 hdr48 = (struct gsm48_hdr *) TLVP_VAL(&tp, GSM0808_IE_LAYER_3_INFORMATION);
518
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800519 msg_type = hdr48->msg_type & 0xbf;
Holger Hans Peter Freyther87ef2f22010-05-15 22:09:39 +0800520 if (hdr48->proto_discr == GSM48_PDISC_MM &&
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800521 msg_type == GSM48_MT_MM_LOC_UPD_REQUEST) {
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800522 *con_type = NAT_CON_TYPE_LU;
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800523 return _cr_check_loc_upd(bsc, &hdr48->data[0], hdr48_len - sizeof(*hdr48));
Holger Hans Peter Freyther87ef2f22010-05-15 22:09:39 +0800524 } else if (hdr48->proto_discr == GSM48_PDISC_MM &&
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800525 msg_type == GSM48_MT_MM_CM_SERV_REQ) {
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800526 *con_type = NAT_CON_TYPE_CM_SERV_REQ;
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800527 return _cr_check_cm_serv_req(bsc, &hdr48->data[0], hdr48_len - sizeof(*hdr48));
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800528 } else if (hdr48->proto_discr == GSM48_PDISC_RR &&
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800529 msg_type == GSM48_MT_RR_PAG_RESP) {
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800530 *con_type = NAT_CON_TYPE_PAG_RESP;
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800531 return _cr_check_pag_resp(bsc, &hdr48->data[0], hdr48_len - sizeof(*hdr48));
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800532 } else {
Holger Hans Peter Freyther1f387472010-05-16 01:05:47 +0800533 /* We only want to filter the above, let other things pass */
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800534 *con_type = NAT_CON_TYPE_OTHER;
Holger Hans Peter Freyther1f387472010-05-16 01:05:47 +0800535 return 0;
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800536 }
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800537}
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800538
Holger Hans Peter Freyther74e0a1b2010-09-15 01:11:08 +0800539int bsc_nat_filter_dt(struct bsc_connection *bsc, struct msgb *msg,
540 struct sccp_connections *con, struct bsc_nat_parsed *parsed)
541{
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800542 uint32_t len;
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800543 uint8_t msg_type;
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800544 struct gsm48_hdr *hdr48;
545
Holger Hans Peter Freyther74e0a1b2010-09-15 01:11:08 +0800546 if (con->imsi_checked)
547 return 0;
548
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800549 /* only care about DTAP messages */
550 if (parsed->bssap != BSSAP_MSG_DTAP)
551 return 0;
552
553 /* gsm_type is actually the size of the dtap */
554 len = parsed->gsm_type;
555 if (len < msgb_l3len(msg) - 3) {
556 LOGP(DNAT, LOGL_ERROR, "Not enough space for DTAP.\n");
557 return -1;
558 }
559
560 if (len < sizeof(*hdr48)) {
561 LOGP(DNAT, LOGL_ERROR, "GSM48 header does not fit.\n");
562 return -1;
563 }
564
565 msg->l4h = &msg->l3h[3];
566 hdr48 = (struct gsm48_hdr *) msg->l4h;
567
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800568 msg_type = hdr48->msg_type & 0xbf;
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800569 if (hdr48->proto_discr == GSM48_PDISC_MM &&
Holger Hans Peter Freyther11ebe1b2010-09-15 05:24:25 +0800570 msg_type == GSM48_MT_MM_ID_RESP) {
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800571 return _dt_check_id_resp(bsc, &hdr48->data[0], len - sizeof(*hdr48), con);
572 } else {
Holger Hans Peter Freyther32685402010-09-15 05:20:40 +0800573 return 0;
574 }
Holger Hans Peter Freyther74e0a1b2010-09-15 01:11:08 +0800575}
576
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800577void bsc_parse_reg(void *ctx, regex_t *reg, char **imsi, int argc, const char **argv)
578{
579 if (*imsi) {
580 talloc_free(*imsi);
581 *imsi = NULL;
582 }
583 regfree(reg);
584
585 if (argc > 0) {
586 *imsi = talloc_strdup(ctx, argv[0]);
587 regcomp(reg, argv[0], 0);
588 }
589}
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800590
591static const char *con_types [] = {
592 [NAT_CON_TYPE_NONE] = "n/a",
593 [NAT_CON_TYPE_LU] = "Location Update",
594 [NAT_CON_TYPE_CM_SERV_REQ] = "CM Serv Req",
595 [NAT_CON_TYPE_PAG_RESP] = "Paging Response",
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800596 [NAT_CON_TYPE_LOCAL_REJECT] = "Local Reject",
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800597 [NAT_CON_TYPE_OTHER] = "Other",
598};
599
600const char *bsc_con_type_to_string(int type)
601{
602 return con_types[type];
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800603}
604
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800605struct 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 +0800606{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800607 struct bsc_nat_acc_lst *lst;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800608
609 if (!name)
610 return NULL;
611
612 llist_for_each_entry(lst, &nat->access_lists, list)
613 if (strcmp(lst->name, name) == 0)
614 return lst;
615
616 return NULL;
617}
618
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800619struct 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 +0800620{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800621 struct bsc_nat_acc_lst *lst;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800622
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800623 lst = bsc_nat_acc_lst_find(nat, name);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800624 if (lst)
625 return lst;
626
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800627 lst = talloc_zero(nat, struct bsc_nat_acc_lst);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800628 if (!lst) {
629 LOGP(DNAT, LOGL_ERROR, "Failed to allocate access list");
630 return NULL;
631 }
632
Holger Hans Peter Freyther2f1a9842010-09-25 06:14:52 +0800633 /* TODO: get the index right */
634 lst->stats = rate_ctr_group_alloc(lst, &bsc_cfg_acc_list_desc, 0);
635 if (!lst->stats) {
636 talloc_free(lst);
637 return NULL;
638 }
639
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800640 INIT_LLIST_HEAD(&lst->fltr_list);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800641 lst->name = talloc_strdup(lst, name);
Holger Hans Peter Freyther26c3a352010-06-08 11:00:09 +0800642 llist_add_tail(&lst->list, &nat->access_lists);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800643 return lst;
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800644}
645
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800646void bsc_nat_acc_lst_delete(struct bsc_nat_acc_lst *lst)
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800647{
648 llist_del(&lst->list);
Holger Hans Peter Freyther2f1a9842010-09-25 06:14:52 +0800649 rate_ctr_group_free(lst->stats);
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800650 talloc_free(lst);
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800651}
652
653struct bsc_nat_acc_lst_entry *bsc_nat_acc_lst_entry_create(struct bsc_nat_acc_lst *lst)
654{
655 struct bsc_nat_acc_lst_entry *entry;
656
657 entry = talloc_zero(lst, struct bsc_nat_acc_lst_entry);
658 if (!entry)
659 return NULL;
660
Holger Hans Peter Freyther26c3a352010-06-08 11:00:09 +0800661 llist_add_tail(&entry->list, &lst->fltr_list);
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800662 return entry;
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800663}
Holger Hans Peter Freyther20ee3122010-07-05 14:39:44 +0800664
665int bsc_nat_msc_is_connected(struct bsc_nat *nat)
666{
667 return nat->msc_con->is_connected;
668}
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +0800669
670static const int con_to_ctr[] = {
671 [NAT_CON_TYPE_NONE] = -1,
672 [NAT_CON_TYPE_LU] = BCFG_CTR_CON_TYPE_LU,
673 [NAT_CON_TYPE_CM_SERV_REQ] = BCFG_CTR_CON_CMSERV_RQ,
674 [NAT_CON_TYPE_PAG_RESP] = BCFG_CTR_CON_PAG_RESP,
675 [NAT_CON_TYPE_LOCAL_REJECT] = -1,
676 [NAT_CON_TYPE_OTHER] = BCFG_CTR_CON_OTHER,
677};
678
679int bsc_conn_type_to_ctr(struct sccp_connections *conn)
680{
681 return con_to_ctr[conn->con_type];
682}
Holger Hans Peter Freyther69cfa172010-10-13 20:37:13 +0200683
684int bsc_write_cb(struct bsc_fd *bfd, struct msgb *msg)
685{
686 int rc;
687
688 rc = write(bfd->fd, msg->data, msg->len);
689 if (rc != msg->len)
690 LOGP(DNAT, LOGL_ERROR, "Failed to write message to the BSC.\n");
691
692 return rc;
693}
694