blob: a96cd019d36b326fc99238a232259674658e32c1 [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>
26#include <openbsc/gsm_data.h>
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +020027#include <openbsc/debug.h>
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +020028#include <openbsc/ipaccess.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080029
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +020030#include <osmocore/linuxlist.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080031#include <osmocore/talloc.h>
Holger Hans Peter Freyther13959482010-06-15 18:50:57 +080032#include <osmocore/gsm0808.h>
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080033
Holger Hans Peter Freyther69d801e2010-06-15 20:13:33 +080034#include <osmocore/protocol/gsm_08_08.h>
35
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +020036#include <sccp/sccp.h>
37
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +020038#include <netinet/in.h>
39#include <arpa/inet.h>
40
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +080041
42static const struct rate_ctr_desc bsc_cfg_ctr_description[] = {
Holger Hans Peter Freyther71d36b32010-06-17 18:31:18 +080043 [BCFG_CTR_SCCP_CONN] = { "sccp.conn", "SCCP Connections "},
44 [BCFG_CTR_SCCP_CALLS] = { "sccp.calls", "SCCP Assignment Commands "},
45 [BCFG_CTR_NET_RECONN] = { "net.reconnects", "Network reconnects "},
46 [BCFG_CTR_DROPPED_SCCP] = { "dropped.sccp", "Dropped SCCP connections."},
47 [BCFG_CTR_DROPPED_CALLS] = { "dropped.calls", "Dropped active calls. "},
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +080048};
49
50static const struct rate_ctr_group_desc bsc_cfg_ctrg_desc = {
51 .group_name_prefix = "nat.bsc",
52 .group_description = "NAT BSC Statistics",
53 .num_ctr = ARRAY_SIZE(bsc_cfg_ctr_description),
54 .ctr_desc = bsc_cfg_ctr_description,
55};
56
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080057struct bsc_nat *bsc_nat_alloc(void)
58{
59 struct bsc_nat *nat = talloc_zero(tall_bsc_ctx, struct bsc_nat);
60 if (!nat)
61 return NULL;
62
63 INIT_LLIST_HEAD(&nat->sccp_connections);
64 INIT_LLIST_HEAD(&nat->bsc_connections);
65 INIT_LLIST_HEAD(&nat->bsc_configs);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080066 INIT_LLIST_HEAD(&nat->access_lists);
67
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +020068 nat->stats.sccp.conn = counter_alloc("nat.sccp.conn");
69 nat->stats.sccp.calls = counter_alloc("nat.sccp.calls");
70 nat->stats.bsc.reconn = counter_alloc("nat.bsc.conn");
71 nat->stats.bsc.auth_fail = counter_alloc("nat.bsc.auth_fail");
72 nat->stats.msc.reconn = counter_alloc("nat.msc.conn");
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080073 nat->msc_ip = talloc_strdup(nat, "127.0.0.1");
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +020074 nat->msc_port = 5000;
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +080075 nat->auth_timeout = 2;
76 nat->ping_timeout = 20;
77 nat->pong_timeout = 5;
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080078 return nat;
79}
80
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080081void bsc_nat_set_msc_ip(struct bsc_nat *nat, const char *ip)
82{
83 if (nat->msc_ip)
84 talloc_free(nat->msc_ip);
85 nat->msc_ip = talloc_strdup(nat, ip);
86}
87
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080088struct bsc_connection *bsc_connection_alloc(struct bsc_nat *nat)
89{
90 struct bsc_connection *con = talloc_zero(nat, struct bsc_connection);
91 if (!con)
92 return NULL;
93
Holger Hans Peter Freytherf8048d92010-03-29 15:14:15 +020094 con->nat = nat;
Holger Hans Peter Freyther81519732010-04-22 12:05:23 +080095 write_queue_init(&con->write_queue, 100);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +080096 return con;
97}
98
99struct bsc_config *bsc_config_alloc(struct bsc_nat *nat, const char *token, unsigned int lac)
100{
101 struct bsc_config *conf = talloc_zero(nat, struct bsc_config);
102 if (!conf)
103 return NULL;
104
105 conf->token = talloc_strdup(conf, token);
106 conf->lac = lac;
107 conf->nr = nat->num_bsc;
108 conf->nat = nat;
109
Holger Hans Peter Freytherd1278c12010-04-16 16:52:20 +0200110 llist_add_tail(&conf->entry, &nat->bsc_configs);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800111 ++nat->num_bsc;
112
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800113 conf->stats.ctrg = rate_ctr_group_alloc(conf, &bsc_cfg_ctrg_desc, conf->lac);
114 if (!conf->stats.ctrg) {
115 talloc_free(conf);
116 return NULL;
117 }
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200118
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800119 return conf;
120}
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200121
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200122void sccp_connection_destroy(struct sccp_connections *conn)
123{
124 LOGP(DNAT, LOGL_DEBUG, "Destroy 0x%x <-> 0x%x mapping for con %p\n",
125 sccp_src_ref_to_int(&conn->real_ref),
126 sccp_src_ref_to_int(&conn->patched_ref), conn->bsc);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800127 bsc_mgcp_dlcx(conn);
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200128 llist_del(&conn->list_entry);
129 talloc_free(conn);
130}
131
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200132struct 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 +0200133{
134 struct bsc_connection *bsc;
135 int data_length;
136 const u_int8_t *data;
137 struct tlv_parsed tp;
138 int i = 0;
139
Holger Hans Peter Freyther7a773692010-04-18 02:41:20 +0800140 *lac_out = -1;
141
Holger Hans Peter Freythere9be5172010-03-30 06:51:23 +0200142 if (!msg->l3h || msgb_l3len(msg) < 3) {
143 LOGP(DNAT, LOGL_ERROR, "Paging message is too short.\n");
144 return NULL;
145 }
146
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200147 tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l3h + 3, msgb_l3len(msg) - 3, 0, 0);
148 if (!TLVP_PRESENT(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST)) {
149 LOGP(DNAT, LOGL_ERROR, "No CellIdentifier List inside paging msg.\n");
150 return NULL;
151 }
152
153 data_length = TLVP_LEN(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST);
154 data = TLVP_VAL(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST);
Holger Hans Peter Freythera4376ad2010-04-21 18:47:24 +0800155
156 /* No need to try a different BSS */
157 if (data[0] == CELL_IDENT_BSS) {
158 return NULL;
159 } else if (data[0] != CELL_IDENT_LAC) {
Holger Hans Peter Freyther530c4b12010-04-06 10:25:40 +0200160 LOGP(DNAT, LOGL_ERROR, "Unhandled cell ident discrminator: %d\n", data[0]);
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200161 return NULL;
162 }
163
164 /* Currently we only handle one BSC */
165 for (i = 1; i < data_length - 1; i += 2) {
166 unsigned int _lac = ntohs(*(unsigned int *) &data[i]);
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200167 *lac_out = _lac;
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200168 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200169 if (!bsc->cfg)
170 continue;
171 if (!bsc->authenticated || _lac != bsc->cfg->lac)
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200172 continue;
173
174 return bsc;
175 }
176 }
177
178 return NULL;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200179}
180
181int bsc_write_mgcp(struct bsc_connection *bsc, const u_int8_t *data, unsigned int length)
182{
183 struct msgb *msg;
184
185 if (length > 4096 - 128) {
186 LOGP(DINP, LOGL_ERROR, "Can not send message of that size.\n");
187 return -1;
188 }
189
190 msg = msgb_alloc_headroom(4096, 128, "to-bsc");
191 if (!msg) {
192 LOGP(DINP, LOGL_ERROR, "Failed to allocate memory for BSC msg.\n");
193 return -1;
194 }
195
196 /* copy the data */
197 msg->l3h = msgb_put(msg, length);
198 memcpy(msg->l3h, data, length);
199
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200200 return bsc_write(bsc, msg, NAT_IPAC_PROTO_MGCP);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200201}
202
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200203int bsc_write(struct bsc_connection *bsc, struct msgb *msg, int proto)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200204{
205 /* prepend the header */
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200206 ipaccess_prepend_header(msg, proto);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200207
208 if (write_queue_enqueue(&bsc->write_queue, msg) != 0) {
209 LOGP(DINP, LOGL_ERROR, "Failed to enqueue the write.\n");
210 msgb_free(msg);
211 return -1;
212 }
213
214 return 0;
215}
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800216
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800217static int lst_check_allow(struct bsc_nat_acc_lst *lst, const char *mi_string)
218{
219 struct bsc_nat_acc_lst_entry *entry;
220
221 llist_for_each_entry(entry, &lst->fltr_list, list) {
222 if (!entry->imsi_allow)
223 continue;
224 if (regexec(&entry->imsi_allow_re, mi_string, 0, NULL, 0) == 0)
225 return 0;
226 }
227
228 return 1;
229}
230
231static int lst_check_deny(struct bsc_nat_acc_lst *lst, const char *mi_string)
232{
233 struct bsc_nat_acc_lst_entry *entry;
234
235 llist_for_each_entry(entry, &lst->fltr_list, list) {
236 if (!entry->imsi_deny)
237 continue;
238 if (regexec(&entry->imsi_deny_re, mi_string, 0, NULL, 0) == 0)
239 return 0;
240 }
241
242 return 1;
243}
244
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800245/* apply white/black list */
246static int auth_imsi(struct bsc_connection *bsc, const char *mi_string)
247{
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800248 /*
249 * Now apply blacklist/whitelist of the BSC and the NAT.
250 * 1.) Reject if the IMSI is not allowed at the BSC
251 * 2.) Allow directly if the IMSI is allowed at the BSC
252 * 3.) Reject if the IMSI not allowed at the global level.
253 * 4.) Allow directly if the IMSI is allowed at the global level
254 */
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800255 struct bsc_nat_acc_lst *nat_lst = NULL;
256 struct bsc_nat_acc_lst *bsc_lst = NULL;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800257
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800258 bsc_lst = bsc_nat_acc_lst_find(bsc->nat, bsc->cfg->acc_lst_name);
259 nat_lst = bsc_nat_acc_lst_find(bsc->nat, bsc->nat->acc_lst_name);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800260
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800261
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800262 if (bsc_lst) {
263 /* 1. BSC deny */
264 if (lst_check_deny(bsc_lst, mi_string) == 0) {
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800265 LOGP(DNAT, LOGL_ERROR,
Holger Hans Peter Freyther48945b12010-05-16 00:45:07 +0800266 "Filtering %s by imsi_deny on bsc nr: %d.\n", mi_string, bsc->cfg->nr);
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800267 return -2;
268 }
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800269
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800270 /* 2. BSC allow */
271 if (lst_check_allow(bsc_lst, mi_string) == 0)
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800272 return 0;
273 }
274
275 /* 3. NAT deny */
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800276 if (nat_lst) {
277 if (lst_check_deny(nat_lst, mi_string) == 0) {
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800278 LOGP(DNAT, LOGL_ERROR,
Holger Hans Peter Freyther48945b12010-05-16 00:45:07 +0800279 "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 +0800280 return -3;
281 }
282 }
283
Holger Hans Peter Freytherf1012a42010-05-15 00:36:54 +0800284 return 0;
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800285}
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800286
287static int _cr_check_loc_upd(struct bsc_connection *bsc, uint8_t *data, unsigned int length)
288{
289 u_int8_t mi_type;
290 struct gsm48_loc_upd_req *lu;
291 char mi_string[GSM48_MI_SIZE];
292
Holger Hans Peter Freytherf8303222010-05-14 19:24:06 +0800293 if (length < sizeof(*lu)) {
294 LOGP(DNAT, LOGL_ERROR,
295 "LU does not fit. Length is %d \n", length);
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800296 return -1;
297 }
298
299 lu = (struct gsm48_loc_upd_req *) data;
300 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
301
302 /*
303 * We can only deal with the IMSI. This will fail for a phone that
304 * will send the TMSI of a previous network to us.
305 */
306 if (mi_type != GSM_MI_TYPE_IMSI)
307 return 0;
308
309 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Holger Hans Peter Freyther34a96ae2010-05-14 19:49:35 +0800310 return auth_imsi(bsc, mi_string);
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800311}
312
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800313static int _cr_check_cm_serv_req(struct bsc_connection *bsc, uint8_t *data, unsigned int length)
314{
Holger Hans Peter Freyther66e1ef72010-05-16 01:13:28 +0800315 static const uint32_t classmark_offset =
316 offsetof(struct gsm48_service_request, classmark);
317
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800318 char mi_string[GSM48_MI_SIZE];
Holger Hans Peter Freyther66e1ef72010-05-16 01:13:28 +0800319 uint8_t mi_type;
320 int rc;
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800321 struct gsm48_service_request *req;
322
323 /* unfortunately in Phase1 the classmark2 length is variable */
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800324
325 if (length < sizeof(*req)) {
326 LOGP(DNAT, LOGL_ERROR,
327 "CM Serv Req does not fit. Length is %d\n", length);
328 return -1;
329 }
330
331 req = (struct gsm48_service_request *) data;
Holger Hans Peter Freyther66e1ef72010-05-16 01:13:28 +0800332 rc = gsm48_extract_mi((uint8_t *) &req->classmark,
333 length - classmark_offset, mi_string, &mi_type);
334 if (rc < 0) {
335 LOGP(DNAT, LOGL_ERROR, "Failed to parse the classmark2/mi. error: %d\n", rc);
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800336 return -1;
337 }
338
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800339 /* we have to let the TMSI or such pass */
340 if (mi_type != GSM_MI_TYPE_IMSI)
341 return 0;
342
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800343 return auth_imsi(bsc, mi_string);
344}
345
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800346static int _cr_check_pag_resp(struct bsc_connection *bsc, uint8_t *data, unsigned int length)
347{
348 struct gsm48_pag_resp *resp;
349 char mi_string[GSM48_MI_SIZE];
350 u_int8_t mi_type;
351
352 if (length < sizeof(*resp)) {
353 LOGP(DNAT, LOGL_ERROR, "PAG RESP does not fit. Length was %d.\n", length);
354 return -1;
355 }
356
357 resp = (struct gsm48_pag_resp *) data;
358 if (gsm48_paging_extract_mi(resp, length, mi_string, &mi_type) < 0) {
359 LOGP(DNAT, LOGL_ERROR, "Failed to extract the MI.\n");
360 return -1;
361 }
362
363 /* we need to let it pass for now */
364 if (mi_type != GSM_MI_TYPE_IMSI)
365 return 0;
366
367 return auth_imsi(bsc, mi_string);
368}
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800369
370/* Filter out CR data... */
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800371int 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 +0800372{
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800373 struct tlv_parsed tp;
374 struct gsm48_hdr *hdr48;
375 int hdr48_len;
376 int len;
377
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800378 *con_type = NAT_CON_TYPE_NONE;
379
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800380 if (parsed->gsm_type != BSS_MAP_MSG_COMPLETE_LAYER_3) {
381 LOGP(DNAT, LOGL_ERROR,
382 "Rejecting CR message due wrong GSM Type %d\n", parsed->gsm_type);
383 return -1;
384 }
385
386 /* the parsed has had some basic l3 length check */
387 len = msg->l3h[1];
388 if (msgb_l3len(msg) - 3 < len) {
389 LOGP(DNAT, LOGL_ERROR,
390 "The CR Data has not enough space...\n");
391 return -1;
392 }
393
394 msg->l4h = &msg->l3h[3];
395 len -= 1;
396
397 tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l4h, len, 0, 0);
398
399 if (!TLVP_PRESENT(&tp, GSM0808_IE_LAYER_3_INFORMATION)) {
400 LOGP(DNAT, LOGL_ERROR, "CR Data does not contain layer3 information.\n");
401 return -1;
402 }
403
404 hdr48_len = TLVP_LEN(&tp, GSM0808_IE_LAYER_3_INFORMATION);
405
406 if (hdr48_len < sizeof(*hdr48)) {
407 LOGP(DNAT, LOGL_ERROR, "GSM48 header does not fit.\n");
408 return -1;
409 }
410
411 hdr48 = (struct gsm48_hdr *) TLVP_VAL(&tp, GSM0808_IE_LAYER_3_INFORMATION);
412
Holger Hans Peter Freyther87ef2f22010-05-15 22:09:39 +0800413 if (hdr48->proto_discr == GSM48_PDISC_MM &&
414 hdr48->msg_type == GSM48_MT_MM_LOC_UPD_REQUEST) {
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800415 *con_type = NAT_CON_TYPE_LU;
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800416 return _cr_check_loc_upd(bsc, &hdr48->data[0], hdr48_len - sizeof(*hdr48));
Holger Hans Peter Freyther87ef2f22010-05-15 22:09:39 +0800417 } else if (hdr48->proto_discr == GSM48_PDISC_MM &&
418 hdr48->msg_type == GSM48_MT_MM_CM_SERV_REQ) {
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800419 *con_type = NAT_CON_TYPE_CM_SERV_REQ;
Holger Hans Peter Freytherbcb32a42010-05-15 21:58:33 +0800420 return _cr_check_cm_serv_req(bsc, &hdr48->data[0], hdr48_len - sizeof(*hdr48));
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800421 } else if (hdr48->proto_discr == GSM48_PDISC_RR &&
422 hdr48->msg_type == GSM48_MT_RR_PAG_RESP) {
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800423 *con_type = NAT_CON_TYPE_PAG_RESP;
Holger Hans Peter Freytherf1924982010-05-15 23:54:04 +0800424 return _cr_check_pag_resp(bsc, &hdr48->data[0], hdr48_len - sizeof(*hdr48));
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800425 } else {
Holger Hans Peter Freyther1f387472010-05-16 01:05:47 +0800426 /* We only want to filter the above, let other things pass */
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800427 *con_type = NAT_CON_TYPE_OTHER;
Holger Hans Peter Freyther1f387472010-05-16 01:05:47 +0800428 return 0;
Holger Hans Peter Freyther290ed9a2010-05-14 08:14:09 +0800429 }
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800430}
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800431
432void bsc_parse_reg(void *ctx, regex_t *reg, char **imsi, int argc, const char **argv)
433{
434 if (*imsi) {
435 talloc_free(*imsi);
436 *imsi = NULL;
437 }
438 regfree(reg);
439
440 if (argc > 0) {
441 *imsi = talloc_strdup(ctx, argv[0]);
442 regcomp(reg, argv[0], 0);
443 }
444}
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800445
446static const char *con_types [] = {
447 [NAT_CON_TYPE_NONE] = "n/a",
448 [NAT_CON_TYPE_LU] = "Location Update",
449 [NAT_CON_TYPE_CM_SERV_REQ] = "CM Serv Req",
450 [NAT_CON_TYPE_PAG_RESP] = "Paging Response",
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800451 [NAT_CON_TYPE_LOCAL_REJECT] = "Local Reject",
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800452 [NAT_CON_TYPE_OTHER] = "Other",
453};
454
455const char *bsc_con_type_to_string(int type)
456{
457 return con_types[type];
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800458}
459
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800460struct 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 +0800461{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800462 struct bsc_nat_acc_lst *lst;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800463
464 if (!name)
465 return NULL;
466
467 llist_for_each_entry(lst, &nat->access_lists, list)
468 if (strcmp(lst->name, name) == 0)
469 return lst;
470
471 return NULL;
472}
473
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800474struct 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 +0800475{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800476 struct bsc_nat_acc_lst *lst;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800477
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800478 lst = bsc_nat_acc_lst_find(nat, name);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800479 if (lst)
480 return lst;
481
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800482 lst = talloc_zero(nat, struct bsc_nat_acc_lst);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800483 if (!lst) {
484 LOGP(DNAT, LOGL_ERROR, "Failed to allocate access list");
485 return NULL;
486 }
487
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800488 INIT_LLIST_HEAD(&lst->fltr_list);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800489 lst->name = talloc_strdup(lst, name);
Holger Hans Peter Freyther26c3a352010-06-08 11:00:09 +0800490 llist_add_tail(&lst->list, &nat->access_lists);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800491 return lst;
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800492}
493
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800494void bsc_nat_acc_lst_delete(struct bsc_nat_acc_lst *lst)
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800495{
496 llist_del(&lst->list);
497 talloc_free(lst);
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800498}
499
500struct bsc_nat_acc_lst_entry *bsc_nat_acc_lst_entry_create(struct bsc_nat_acc_lst *lst)
501{
502 struct bsc_nat_acc_lst_entry *entry;
503
504 entry = talloc_zero(lst, struct bsc_nat_acc_lst_entry);
505 if (!entry)
506 return NULL;
507
Holger Hans Peter Freyther26c3a352010-06-08 11:00:09 +0800508 llist_add_tail(&entry->list, &lst->fltr_list);
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800509 return entry;
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800510}