blob: 0f865129f5edf87f0b4f2d3e05c3de37e57169a9 [file] [log] [blame]
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001/* BSC Multiplexer/NAT */
2
3/*
Holger Hans Peter Freythere18801052011-04-23 23:31:31 +02004 * (C) 2010-2011 by Holger Hans Peter Freyther <zecke@selfish.org>
5 * (C) 2010-2011 by On-Waves
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01006 * (C) 2009 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +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 Freyther9e2c5f52010-06-15 18:44:42 +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 Freyther9e2c5f52010-06-15 18:44:42 +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 Freyther9e2c5f52010-06-15 18:44:42 +080021 *
22 */
23#include <sys/socket.h>
24#include <netinet/in.h>
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +080025#include <netinet/tcp.h>
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080026#include <arpa/inet.h>
27
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +010028#include <errno.h>
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +010029#include <signal.h>
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080030#include <stdio.h>
31#include <stdlib.h>
Holger Hans Peter Freyther5aa25ae2010-01-12 21:36:08 +010032#include <time.h>
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080033#include <unistd.h>
34
35#define _GNU_SOURCE
36#include <getopt.h>
37
38#include <openbsc/debug.h>
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +010039#include <openbsc/bsc_msc.h>
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +080040#include <openbsc/bsc_nat.h>
Holger Hans Peter Freytherc2b31ed2010-07-31 05:17:17 +080041#include <openbsc/bsc_nat_sccp.h>
Daniel Willmanna86bc392011-02-18 14:32:56 +010042#include <openbsc/control_cmd.h>
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +010043#include <openbsc/ipaccess.h>
44#include <openbsc/abis_nm.h>
Holger Hans Peter Freytherf961de12010-10-12 23:28:28 +020045#include <openbsc/socket.h>
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080046#include <openbsc/vty.h>
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080047
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +020048#include <osmocom/core/application.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010049#include <osmocom/core/talloc.h>
50#include <osmocom/core/process.h>
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +080051
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +020052#include <osmocom/gsm/gsm0808.h>
Harald Welted36ff762011-03-23 18:26:56 +010053#include <osmocom/gsm/protocol/gsm_08_08.h>
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080054
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080055#include <osmocom/vty/telnet_interface.h>
56#include <osmocom/vty/vty.h>
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +010057#include <osmocom/vty/logging.h>
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080058
Harald Welted5db12c2010-08-03 15:11:51 +020059#include <osmocom/sccp/sccp.h>
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +080060
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080061#include "../../bscconfig.h"
62
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +080063#define SCCP_CLOSE_TIME 20
64#define SCCP_CLOSE_TIME_TIMEOUT 19
65
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080066static const char *config_file = "bsc-nat.cfg";
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080067static struct in_addr local_addr;
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +020068static struct osmo_fd bsc_listen;
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080069static const char *msc_ip = NULL;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +020070static struct osmo_timer_list sccp_close;
Harald Welte2c869ef2010-08-25 19:43:54 +020071static int daemonize = 0;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +010072
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080073const char *openbsc_copyright =
Holger Hans Peter Freyther5f540752010-09-11 13:32:30 +080074 "Copyright (C) 2010 Holger Hans Peter Freyther and On-Waves\r\n"
Harald Welte9af6ddf2011-01-01 15:25:50 +010075 "License AGPLv3+: GNU AGPL version 3 or later <http://gnu.org/licenses/agpl-3.0.html>\r\n"
Holger Hans Peter Freyther5f540752010-09-11 13:32:30 +080076 "This is free software: you are free to change and redistribute it.\r\n"
77 "There is NO WARRANTY, to the extent permitted by law.\r\n";
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +010078
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080079static struct bsc_nat *nat;
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +080080static void bsc_send_data(struct bsc_connection *bsc, const uint8_t *data, unsigned int length, int);
Holger Hans Peter Freytherb7527612010-04-07 11:20:36 +020081static void msc_send_reset(struct bsc_msc_connection *con);
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +080082static void bsc_stat_reject(int filter, struct bsc_connection *bsc, int normal);
Daniel Willmanna86bc392011-02-18 14:32:56 +010083static void bsc_del_pending(struct bsc_cmd_list *pending);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080084
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080085struct bsc_config *bsc_config_num(struct bsc_nat *nat, int num)
86{
87 struct bsc_config *conf;
88
89 llist_for_each_entry(conf, &nat->bsc_configs, entry)
90 if (conf->nr == num)
91 return conf;
92
93 return NULL;
94}
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +010095
Holger Hans Peter Freyther9d56d0c2010-04-22 19:11:37 +080096static void queue_for_msc(struct bsc_msc_connection *con, struct msgb *msg)
97{
Holger Hans Peter Freythere8e41e62010-10-06 00:24:28 +080098 if (!con) {
99 LOGP(DINP, LOGL_ERROR, "No MSC Connection assigned. Check your code.\n");
100 msgb_free(msg);
101 return;
102 }
103
104
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200105 if (osmo_wqueue_enqueue(&con->write_queue, msg) != 0) {
Holger Hans Peter Freyther9d56d0c2010-04-22 19:11:37 +0800106 LOGP(DINP, LOGL_ERROR, "Failed to enqueue the write.\n");
107 msgb_free(msg);
108 }
109}
110
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100111static void send_reset_ack(struct bsc_connection *bsc)
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100112{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800113 static const uint8_t gsm_reset_ack[] = {
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100114 0x09, 0x00, 0x03, 0x07, 0x0b, 0x04, 0x43, 0x01,
115 0x00, 0xfe, 0x04, 0x43, 0x5c, 0x00, 0xfe, 0x03,
116 0x00, 0x01, 0x31,
117 };
118
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200119 bsc_send_data(bsc, gsm_reset_ack, sizeof(gsm_reset_ack), IPAC_PROTO_SCCP);
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100120}
121
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800122static void send_ping(struct bsc_connection *bsc)
123{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800124 static const uint8_t id_ping[] = {
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800125 IPAC_MSGT_PING,
126 };
127
128 bsc_send_data(bsc, id_ping, sizeof(id_ping), IPAC_PROTO_IPACCESS);
129}
130
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +0800131static void send_pong(struct bsc_connection *bsc)
132{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800133 static const uint8_t id_pong[] = {
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +0800134 IPAC_MSGT_PONG,
135 };
136
137 bsc_send_data(bsc, id_pong, sizeof(id_pong), IPAC_PROTO_IPACCESS);
138}
139
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800140static void bsc_pong_timeout(void *_bsc)
141{
142 struct bsc_connection *bsc = _bsc;
143
144 LOGP(DNAT, LOGL_ERROR, "BSC Nr: %d PONG timeout.\n", bsc->cfg->nr);
145 bsc_close_connection(bsc);
146}
147
148static void bsc_ping_timeout(void *_bsc)
149{
150 struct bsc_connection *bsc = _bsc;
151
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800152 if (bsc->nat->ping_timeout < 0)
153 return;
154
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800155 send_ping(bsc);
156
157 /* send another ping in 20 seconds */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200158 osmo_timer_schedule(&bsc->ping_timeout, bsc->nat->ping_timeout, 0);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800159
160 /* also start a pong timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200161 osmo_timer_schedule(&bsc->pong_timeout, bsc->nat->pong_timeout, 0);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800162}
163
164static void start_ping_pong(struct bsc_connection *bsc)
165{
166 bsc->pong_timeout.data = bsc;
167 bsc->pong_timeout.cb = bsc_pong_timeout;
168 bsc->ping_timeout.data = bsc;
169 bsc->ping_timeout.cb = bsc_ping_timeout;
170
171 bsc_ping_timeout(bsc);
172}
173
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100174static void send_id_ack(struct bsc_connection *bsc)
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100175{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800176 static const uint8_t id_ack[] = {
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200177 IPAC_MSGT_ID_ACK
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100178 };
179
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200180 bsc_send_data(bsc, id_ack, sizeof(id_ack), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100181}
182
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100183static void send_id_req(struct bsc_connection *bsc)
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100184{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800185 static const uint8_t id_req[] = {
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200186 IPAC_MSGT_ID_GET,
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100187 0x01, IPAC_IDTAG_UNIT,
188 0x01, IPAC_IDTAG_MACADDR,
189 0x01, IPAC_IDTAG_LOCATION1,
190 0x01, IPAC_IDTAG_LOCATION2,
191 0x01, IPAC_IDTAG_EQUIPVERS,
192 0x01, IPAC_IDTAG_SWVERSION,
193 0x01, IPAC_IDTAG_UNITNAME,
194 0x01, IPAC_IDTAG_SERNR,
195 };
196
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200197 bsc_send_data(bsc, id_req, sizeof(id_req), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100198}
199
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200200static struct msgb *nat_create_rlsd(struct sccp_connections *conn)
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200201{
202 struct sccp_connection_released *rel;
203 struct msgb *msg;
204
205 msg = msgb_alloc_headroom(4096, 128, "rlsd");
206 if (!msg) {
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200207 LOGP(DNAT, LOGL_ERROR, "Failed to allocate released.\n");
208 return NULL;
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200209 }
210
211 msg->l2h = msgb_put(msg, sizeof(*rel));
212 rel = (struct sccp_connection_released *) msg->l2h;
213 rel->type = SCCP_MSG_TYPE_RLSD;
214 rel->release_cause = SCCP_RELEASE_CAUSE_SCCP_FAILURE;
215 rel->destination_local_reference = conn->remote_ref;
216 rel->source_local_reference = conn->patched_ref;
217
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200218 return msg;
219}
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200220
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200221static void nat_send_rlsd_ussd(struct bsc_nat *nat, struct sccp_connections *conn)
222{
223 struct msgb *msg;
224
225 if (!nat->ussd_con)
226 return;
227
228 msg = nat_create_rlsd(conn);
229 if (!msg)
230 return;
231
232 bsc_do_write(&nat->ussd_con->queue, msg, IPAC_PROTO_SCCP);
233}
234
235static void nat_send_rlsd_msc(struct sccp_connections *conn)
236{
237 struct msgb *msg;
238
239 msg = nat_create_rlsd(conn);
240 if (!msg)
241 return;
242
243 ipaccess_prepend_header(msg, IPAC_PROTO_SCCP);
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800244 queue_for_msc(conn->msc_con, msg);
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200245}
246
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +0200247static void nat_send_rlsd_bsc(struct sccp_connections *conn)
248{
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +0200249 struct msgb *msg;
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200250 struct sccp_connection_released *rel;
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +0200251
252 msg = msgb_alloc_headroom(4096, 128, "rlsd");
253 if (!msg) {
254 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
255 return;
256 }
257
258 msg->l2h = msgb_put(msg, sizeof(*rel));
259 rel = (struct sccp_connection_released *) msg->l2h;
260 rel->type = SCCP_MSG_TYPE_RLSD;
261 rel->release_cause = SCCP_RELEASE_CAUSE_SCCP_FAILURE;
262 rel->destination_local_reference = conn->real_ref;
263 rel->source_local_reference = conn->remote_ref;
264
265 bsc_write(conn->bsc, msg, IPAC_PROTO_SCCP);
266}
267
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200268static struct msgb *nat_creat_clrc(struct sccp_connections *conn, uint8_t cause)
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200269{
270 struct msgb *msg;
271 struct msgb *sccp;
272
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200273 msg = gsm0808_create_clear_command(cause);
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200274 if (!msg) {
275 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200276 return NULL;
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200277 }
278
279 sccp = sccp_create_dt1(&conn->real_ref, msg->data, msg->len);
280 if (!sccp) {
281 LOGP(DNAT, LOGL_ERROR, "Failed to allocate SCCP msg.\n");
282 msgb_free(msg);
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200283 return NULL;
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200284 }
285
286 msgb_free(msg);
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200287 return sccp;
288}
289
290static int nat_send_clrc_bsc(struct sccp_connections *conn)
291{
292 struct msgb *sccp;
293
294 sccp = nat_creat_clrc(conn, 0x20);
295 if (!sccp)
296 return -1;
297 return bsc_write(conn->bsc, sccp, IPAC_PROTO_SCCP);
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200298}
299
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800300static void nat_send_rlc(struct bsc_msc_connection *msc_con,
301 struct sccp_source_reference *src,
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200302 struct sccp_source_reference *dst)
303{
304 struct sccp_connection_release_complete *rlc;
305 struct msgb *msg;
306
307 msg = msgb_alloc_headroom(4096, 128, "rlc");
308 if (!msg) {
309 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
310 return;
311 }
312
313 msg->l2h = msgb_put(msg, sizeof(*rlc));
314 rlc = (struct sccp_connection_release_complete *) msg->l2h;
315 rlc->type = SCCP_MSG_TYPE_RLC;
316 rlc->destination_local_reference = *dst;
317 rlc->source_local_reference = *src;
318
319 ipaccess_prepend_header(msg, IPAC_PROTO_SCCP);
320
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800321 queue_for_msc(msc_con, msg);
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200322}
323
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +0200324static void send_mgcp_reset(struct bsc_connection *bsc)
325{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800326 static const uint8_t mgcp_reset[] = {
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +0200327 "RSIP 1 13@mgw MGCP 1.0\r\n"
328 };
329
330 bsc_write_mgcp(bsc, mgcp_reset, sizeof mgcp_reset - 1);
331}
332
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100333/*
334 * Below is the handling of messages coming
335 * from the MSC and need to be forwarded to
336 * a real BSC.
337 */
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800338static void initialize_msc_if_needed(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100339{
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800340 if (msc_con->first_contact)
Holger Hans Peter Freytherb7527612010-04-07 11:20:36 +0200341 return;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100342
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800343 msc_con->first_contact = 1;
344 msc_send_reset(msc_con);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100345}
346
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800347static void send_id_get_response(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800348{
349 struct msgb *msg = bsc_msc_id_get_resp(nat->token);
350 if (!msg)
351 return;
352
353 ipaccess_prepend_header(msg, IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800354 queue_for_msc(msc_con, msg);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800355}
356
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100357/*
358 * Currently we are lacking refcounting so we need to copy each message.
359 */
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800360static void bsc_send_data(struct bsc_connection *bsc, const uint8_t *data, unsigned int length, int proto)
Holger Hans Peter Freytherf7cb33c2010-03-26 07:20:59 +0100361{
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100362 struct msgb *msg;
363
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200364 if (length > 4096 - 128) {
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100365 LOGP(DINP, LOGL_ERROR, "Can not send message of that size.\n");
366 return;
367 }
368
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200369 msg = msgb_alloc_headroom(4096, 128, "to-bsc");
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100370 if (!msg) {
371 LOGP(DINP, LOGL_ERROR, "Failed to allocate memory for BSC msg.\n");
372 return;
373 }
374
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200375 msg->l2h = msgb_put(msg, length);
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100376 memcpy(msg->data, data, length);
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200377
378 bsc_write(bsc, msg, proto);
Holger Hans Peter Freytherf7cb33c2010-03-26 07:20:59 +0100379}
380
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800381/*
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +0800382 * Update the release statistics
383 */
384static void bsc_stat_reject(int filter, struct bsc_connection *bsc, int normal)
385{
386 if (!bsc->cfg) {
387 LOGP(DNAT, LOGL_ERROR, "BSC is not authenticated.");
388 return;
389 }
390
391 if (filter >= 0) {
392 LOGP(DNAT, LOGL_ERROR, "Connection was not rejected");
393 return;
394 }
395
396 if (filter == -1)
397 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_ILL_PACKET]);
398 else if (normal)
399 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_REJECTED_MSG]);
400 else
401 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_REJECTED_CR]);
402}
403
404/*
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800405 * Release an established connection. We will have to release it to the BSC
406 * and to the network and we do it the following way.
407 * 1.) Give up on the MSC side
408 * 1.1) Send a RLSD message, it is a bit non standard but should work, we
409 * ignore the RLC... we might complain about it. Other options would
410 * be to send a Release Request, handle the Release Complete..
411 * 1.2) Mark the data structure to be con_local and wait for 2nd
412 *
413 * 2.) Give up on the BSC side
414 * 2.1) Depending on the con type reject the service, or just close it
415 */
416static void bsc_send_con_release(struct bsc_connection *bsc, struct sccp_connections *con)
417{
418 struct msgb *rlsd;
419 /* 1. release the network */
420 rlsd = sccp_create_rlsd(&con->patched_ref, &con->remote_ref,
421 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
422 if (!rlsd)
423 LOGP(DNAT, LOGL_ERROR, "Failed to create RLSD message.\n");
424 else {
425 ipaccess_prepend_header(rlsd, IPAC_PROTO_SCCP);
426 queue_for_msc(con->msc_con, rlsd);
427 }
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +0200428 con->con_local = NAT_CON_END_LOCAL;
Holger Hans Peter Freythereea5a1b2010-09-16 06:41:09 +0800429 con->msc_con = NULL;
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800430
431 /* 2. release the BSC side */
432 if (con->con_type == NAT_CON_TYPE_LU) {
433 struct msgb *payload, *udt;
434 payload = gsm48_create_loc_upd_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
435
436 if (payload) {
437 gsm0808_prepend_dtap_header(payload, 0);
438 udt = sccp_create_dt1(&con->real_ref, payload->data, payload->len);
439 if (udt)
440 bsc_write(bsc, udt, IPAC_PROTO_SCCP);
441 else
442 LOGP(DNAT, LOGL_ERROR, "Failed to create DT1\n");
443
444 msgb_free(payload);
445 } else {
446 LOGP(DNAT, LOGL_ERROR, "Failed to allocate LU Reject.\n");
447 }
448 }
449
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200450 nat_send_clrc_bsc(con);
451
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800452 rlsd = sccp_create_rlsd(&con->remote_ref, &con->real_ref,
453 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
454 if (!rlsd) {
455 LOGP(DNAT, LOGL_ERROR, "Failed to allocate RLSD for the BSC.\n");
456 sccp_connection_destroy(con);
457 return;
458 }
459
460 con->con_type = NAT_CON_TYPE_LOCAL_REJECT;
461 bsc_write(bsc, rlsd, IPAC_PROTO_SCCP);
462}
463
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800464static void bsc_send_con_refuse(struct bsc_connection *bsc,
465 struct bsc_nat_parsed *parsed, int con_type)
466{
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800467 struct msgb *payload;
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800468 struct msgb *refuse;
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800469
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800470 if (con_type == NAT_CON_TYPE_LU)
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800471 payload = gsm48_create_loc_upd_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800472 else if (con_type == NAT_CON_TYPE_CM_SERV_REQ)
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800473 payload = gsm48_create_mm_serv_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
Holger Hans Peter Freyther8d7b10e2010-07-23 19:43:12 +0800474 else {
475 LOGP(DNAT, LOGL_ERROR, "Unknown connection type: %d\n", con_type);
476 payload = NULL;
477 }
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800478
479 /*
480 * Some BSCs do not handle the payload inside a SCCP CREF msg
481 * so we will need to:
482 * 1.) Allocate a local connection and mark it as local..
483 * 2.) queue data for downstream.. and the RLC should delete everything
484 */
485 if (payload) {
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200486 struct msgb *cc, *udt, *clear, *rlsd;
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800487 struct sccp_connections *con;
488 con = create_sccp_src_ref(bsc, parsed);
489 if (!con)
490 goto send_refuse;
491
492 /* declare it local and assign a unique remote_ref */
493 con->con_type = NAT_CON_TYPE_LOCAL_REJECT;
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +0200494 con->con_local = NAT_CON_END_LOCAL;
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800495 con->has_remote_ref = 1;
496 con->remote_ref = con->patched_ref;
497
498 /* 1. create a confirmation */
499 cc = sccp_create_cc(&con->remote_ref, &con->real_ref);
500 if (!cc)
501 goto send_refuse;
502
503 /* 2. create the DT1 */
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800504 gsm0808_prepend_dtap_header(payload, 0);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800505 udt = sccp_create_dt1(&con->real_ref, payload->data, payload->len);
506 if (!udt) {
507 msgb_free(cc);
508 goto send_refuse;
509 }
510
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200511 /* 3. send a Clear Command */
512 clear = nat_creat_clrc(con, 0x20);
513 if (!clear) {
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800514 msgb_free(cc);
515 msgb_free(udt);
516 goto send_refuse;
517 }
518
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200519 /* 4. send a RLSD */
520 rlsd = sccp_create_rlsd(&con->remote_ref, &con->real_ref,
521 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
522 if (!rlsd) {
523 msgb_free(cc);
524 msgb_free(udt);
525 msgb_free(clear);
526 goto send_refuse;
527 }
528
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800529 bsc_write(bsc, cc, IPAC_PROTO_SCCP);
530 bsc_write(bsc, udt, IPAC_PROTO_SCCP);
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200531 bsc_write(bsc, clear, IPAC_PROTO_SCCP);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800532 bsc_write(bsc, rlsd, IPAC_PROTO_SCCP);
533 msgb_free(payload);
534 return;
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800535 }
536
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800537
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800538send_refuse:
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800539 if (payload)
540 msgb_free(payload);
541
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800542 refuse = sccp_create_refuse(parsed->src_local_ref,
543 SCCP_REFUSAL_SCCP_FAILURE, NULL, 0);
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800544 if (!refuse) {
545 LOGP(DNAT, LOGL_ERROR,
546 "Creating refuse msg failed for SCCP 0x%x on BSC Nr: %d.\n",
547 sccp_src_ref_to_int(parsed->src_local_ref), bsc->cfg->nr);
548 return;
549 }
550
551 bsc_write(bsc, refuse, IPAC_PROTO_SCCP);
552}
553
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200554static void bsc_nat_send_paging(struct bsc_connection *bsc, struct msgb *msg)
555{
556 if (bsc->cfg->forbid_paging) {
557 LOGP(DNAT, LOGL_DEBUG, "Paging forbidden for BTS: %d\n", bsc->cfg->nr);
558 return;
559 }
560
561 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), IPAC_PROTO_SCCP);
562}
563
564static void bsc_nat_handle_paging(struct bsc_nat *nat, struct msgb *msg)
565{
566 struct bsc_connection *bsc;
567 const uint8_t *paging_start;
Holger Hans Peter Freyther0dc36f12011-05-02 20:03:17 +0200568 int paging_length, i, ret;
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200569
Holger Hans Peter Freyther0dc36f12011-05-02 20:03:17 +0200570 ret = bsc_nat_find_paging(msg, &paging_start, &paging_length);
571 if (ret != 0) {
572 LOGP(DNAT, LOGL_ERROR, "Could not parse paging message: %d\n", ret);
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200573 return;
574 }
575
576 /* This is quite expensive now */
577 for (i = 0; i < paging_length; i += 2) {
578 unsigned int _lac = ntohs(*(unsigned int *) &paging_start[i]);
579 unsigned int paged = 0;
580 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
581 if (!bsc->cfg)
582 continue;
583 if (!bsc->authenticated)
584 continue;
585 if (!bsc_config_handles_lac(bsc->cfg, _lac))
586 continue;
587 bsc_nat_send_paging(bsc, msg);
588 paged += 1;
589 }
590
591 /* highlight a possible config issue */
592 if (paged == 0)
593 LOGP(DNAT, LOGL_ERROR, "No BSC for LAC %d/0x%d\n", _lac, _lac);
594
595 }
596}
597
598
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200599/*
600 * Update the auth status. This can be either a CIPHER MODE COMAMND or
601 * a CM Serivce Accept. Maybe also LU Accept or such in the future.
602 */
603static void update_con_authorize(struct sccp_connections *con,
604 struct bsc_nat_parsed *parsed,
605 struct msgb *msg)
606{
607 if (!con)
608 return;
609 if (con->authorized)
610 return;
611
612 if (parsed->bssap == BSSAP_MSG_BSS_MANAGEMENT &&
613 parsed->gsm_type == BSS_MAP_MSG_CIPHER_MODE_CMD) {
614 con->authorized = 1;
615 } else if (parsed->bssap == BSSAP_MSG_DTAP) {
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200616 uint8_t msg_type, proto;
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200617 uint32_t len;
618 struct gsm48_hdr *hdr48;
619 hdr48 = bsc_unpack_dtap(parsed, msg, &len);
620 if (!hdr48)
621 return;
622
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200623 proto = hdr48->proto_discr & 0x0f;
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200624 msg_type = hdr48->msg_type & 0xbf;
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200625 if (proto == GSM48_PDISC_MM &&
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200626 msg_type == GSM48_MT_MM_CM_SERV_ACC)
627 con->authorized = 1;
628 }
629}
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800630
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800631static int forward_sccp_to_bts(struct bsc_msc_connection *msc_con, struct msgb *msg)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100632{
Holger Hans Peter Freyther8d7b10e2010-07-23 19:43:12 +0800633 struct sccp_connections *con = NULL;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800634 struct bsc_connection *bsc;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800635 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200636 int proto;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100637
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100638 /* filter, drop, patch the message? */
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800639 parsed = bsc_nat_parse(msg);
640 if (!parsed) {
641 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100642 return -1;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800643 }
644
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100645 if (bsc_nat_filter_ipa(DIR_BSC, msg, parsed))
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800646 goto exit;
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800647
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200648 proto = parsed->ipa_proto;
649
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100650 /* Route and modify the SCCP packet */
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200651 if (proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100652 switch (parsed->sccp_type) {
653 case SCCP_MSG_TYPE_UDT:
654 /* forward UDT messages to every BSC */
655 goto send_to_all;
656 break;
657 case SCCP_MSG_TYPE_RLSD:
Holger Hans Peter Freyther0b03f162011-04-21 17:13:51 +0200658 if (con && con->con_local == NAT_CON_END_USSD) {
659 LOGP(DNAT, LOGL_NOTICE, "RLSD for a USSD connection. Ignoring.\n");
660 con = NULL;
661 }
662 /* fall through */
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100663 case SCCP_MSG_TYPE_CREF:
664 case SCCP_MSG_TYPE_DT1:
Holger Hans Peter Freytherf46ce532010-04-06 10:22:34 +0200665 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800666 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800667 if (parsed->gsm_type == BSS_MAP_MSG_ASSIGMENT_RQST) {
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200668 osmo_counter_inc(nat->stats.sccp.calls);
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200669
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800670 if (con) {
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800671 struct rate_ctr_group *ctrg;
672 ctrg = con->bsc->cfg->stats.ctrg;
673 rate_ctr_inc(&ctrg->ctr[BCFG_CTR_SCCP_CALLS]);
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800674 if (bsc_mgcp_assign_patch(con, msg) != 0)
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800675 LOGP(DNAT, LOGL_ERROR, "Failed to assign...\n");
676 } else
677 LOGP(DNAT, LOGL_ERROR, "Assignment command but no BSC.\n");
Holger Hans Peter Freyther0b03f162011-04-21 17:13:51 +0200678 } else if (con && con->con_local == NAT_CON_END_USSD &&
679 parsed->gsm_type == BSS_MAP_MSG_CLEAR_CMD) {
680 LOGP(DNAT, LOGL_NOTICE, "Clear Command for USSD Connection. Ignoring.\n");
681 con = NULL;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800682 }
Holger Hans Peter Freyther16a6f702010-03-29 17:18:42 +0200683 break;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100684 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800685 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
686 if (!con || update_sccp_src_ref(con, parsed) != 0)
Holger Hans Peter Freyther16a6f702010-03-29 17:18:42 +0200687 goto exit;
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800688 break;
689 case SCCP_MSG_TYPE_RLC:
690 LOGP(DNAT, LOGL_ERROR, "Unexpected release complete from MSC.\n");
691 goto exit;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100692 break;
693 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100694 /* MSC never opens a SCCP connection, fall through */
695 default:
696 goto exit;
697 }
Holger Hans Peter Freytherf464ea52010-04-06 16:07:44 +0200698
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200699 if (!con && parsed->sccp_type == SCCP_MSG_TYPE_RLSD) {
700 LOGP(DNAT, LOGL_NOTICE, "Sending fake RLC on RLSD message to network.\n");
701 /* Exchange src/dest for the reply */
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800702 nat_send_rlc(msc_con, parsed->dest_local_ref, parsed->src_local_ref);
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200703 } else if (!con)
Holger Hans Peter Freyther5f10c6d2010-05-15 19:13:52 +0800704 LOGP(DNAT, LOGL_ERROR, "Unknown connection for msg type: 0x%x from the MSC.\n", parsed->sccp_type);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100705 }
706
707 talloc_free(parsed);
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800708 if (!con)
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100709 return -1;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800710 if (!con->bsc->authenticated) {
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +0800711 LOGP(DNAT, LOGL_ERROR, "Selected BSC not authenticated.\n");
Holger Hans Peter Freyther3f37b8f2010-02-08 23:24:32 +0100712 return -1;
713 }
714
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200715 update_con_authorize(con, parsed, msg);
716
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200717 bsc_send_data(con->bsc, msg->l2h, msgb_l2len(msg), proto);
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100718 return 0;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100719
720send_to_all:
Holger Hans Peter Freyther45d11812010-06-15 18:46:36 +0800721 /*
722 * Filter Paging from the network. We do not want to send a PAGING
723 * Command to every BSC in our network. We will analys the PAGING
724 * message and then send it to the authenticated messages...
725 */
726 if (parsed->ipa_proto == IPAC_PROTO_SCCP && parsed->gsm_type == BSS_MAP_MSG_PAGING) {
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200727 bsc_nat_handle_paging(nat, msg);
Holger Hans Peter Freyther45d11812010-06-15 18:46:36 +0800728 goto exit;
729 }
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100730 /* currently send this to every BSC connected */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800731 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther3f37b8f2010-02-08 23:24:32 +0100732 if (!bsc->authenticated)
733 continue;
734
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200735 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100736 }
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800737
738exit:
739 talloc_free(parsed);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100740 return 0;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100741}
742
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800743static void msc_connection_was_lost(struct bsc_msc_connection *con)
744{
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200745 struct bsc_connection *bsc, *tmp;
746
747 LOGP(DMSC, LOGL_ERROR, "Closing all connections downstream.\n");
748 llist_for_each_entry_safe(bsc, tmp, &nat->bsc_connections, list_entry)
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800749 bsc_close_connection(bsc);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200750
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200751 bsc_mgcp_free_endpoints(nat);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200752 bsc_msc_schedule_connect(con);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800753}
754
Holger Hans Peter Freythera99c5b92010-08-04 02:31:55 +0800755static void msc_connection_connected(struct bsc_msc_connection *con)
756{
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200757 osmo_counter_inc(nat->stats.msc.reconn);
Holger Hans Peter Freythera99c5b92010-08-04 02:31:55 +0800758}
759
Holger Hans Peter Freyther02aee142010-04-08 10:31:07 +0200760static void msc_send_reset(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200761{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800762 static const uint8_t reset[] = {
Holger Hans Peter Freyther7cab1662010-04-07 11:11:11 +0200763 0x00, 0x12, 0xfd,
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200764 0x09, 0x00, 0x03, 0x05, 0x07, 0x02, 0x42, 0xfe,
765 0x02, 0x42, 0xfe, 0x06, 0x00, 0x04, 0x30, 0x04,
766 0x01, 0x20
767 };
768
769 struct msgb *msg;
770
771 msg = msgb_alloc_headroom(4096, 128, "08.08 reset");
772 if (!msg) {
773 LOGP(DMSC, LOGL_ERROR, "Failed to allocate reset msg.\n");
774 return;
775 }
776
777 msg->l2h = msgb_put(msg, sizeof(reset));
778 memcpy(msg->l2h, reset, msgb_l2len(msg));
779
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800780 queue_for_msc(msc_con, msg);
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200781
782 LOGP(DMSC, LOGL_NOTICE, "Scheduled GSM0808 reset msg for the MSC.\n");
783}
784
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200785static int ipaccess_msc_read_cb(struct osmo_fd *bfd)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100786{
787 int error;
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800788 struct bsc_msc_connection *msc_con;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100789 struct msgb *msg = ipaccess_read_msg(bfd, &error);
790 struct ipaccess_head *hh;
791
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800792 msc_con = (struct bsc_msc_connection *) bfd->data;
793
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100794 if (!msg) {
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800795 if (error == 0)
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +0100796 LOGP(DNAT, LOGL_FATAL, "The connection the MSC was lost, exiting\n");
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800797 else
798 LOGP(DNAT, LOGL_ERROR, "Failed to parse ip access message: %d\n", error);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100799
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800800 bsc_msc_lost(msc_con);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100801 return -1;
802 }
803
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200804 LOGP(DNAT, LOGL_DEBUG, "MSG from MSC: %s proto: %d\n", osmo_hexdump(msg->data, msg->len), msg->l2h[0]);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100805
806 /* handle base message handling */
807 hh = (struct ipaccess_head *) msg->data;
808 ipaccess_rcvmsg_base(msg, bfd);
809
810 /* initialize the networking. This includes sending a GSM08.08 message */
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800811 if (hh->proto == IPAC_PROTO_IPACCESS) {
812 if (msg->l2h[0] == IPAC_MSGT_ID_ACK)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800813 initialize_msc_if_needed(msc_con);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800814 else if (msg->l2h[0] == IPAC_MSGT_ID_GET)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800815 send_id_get_response(msc_con);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800816 } else if (hh->proto == IPAC_PROTO_SCCP)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800817 forward_sccp_to_bts(msc_con, msg);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100818
Holger Hans Peter Freytheraad68b52010-06-15 18:46:48 +0800819 msgb_free(msg);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100820 return 0;
821}
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +0800822
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200823static int ipaccess_msc_write_cb(struct osmo_fd *bfd, struct msgb *msg)
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800824{
825 int rc;
826 rc = write(bfd->fd, msg->data, msg->len);
827
828 if (rc != msg->len) {
829 LOGP(DNAT, LOGL_ERROR, "Failed to write MSG to MSC.\n");
830 return -1;
831 }
832
833 return rc;
834}
835
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100836/*
837 * Below is the handling of messages coming
838 * from the BSC and need to be forwarded to
839 * a real BSC.
840 */
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100841
842/*
843 * Remove the connection from the connections list,
844 * remove it from the patching of SCCP header lists
845 * as well. Maybe in the future even close connection..
846 */
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800847void bsc_close_connection(struct bsc_connection *connection)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100848{
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100849 struct sccp_connections *sccp_patch, *tmp;
Daniel Willmanna86bc392011-02-18 14:32:56 +0100850 struct bsc_cmd_list *cmd_entry, *cmd_tmp;
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800851 struct rate_ctr *ctr = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100852
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800853 /* stop the timeout timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200854 osmo_timer_del(&connection->id_timeout);
855 osmo_timer_del(&connection->ping_timeout);
856 osmo_timer_del(&connection->pong_timeout);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800857
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800858 if (connection->cfg)
859 ctr = &connection->cfg->stats.ctrg->ctr[BCFG_CTR_DROPPED_SCCP];
860
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100861 /* remove all SCCP connections */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800862 llist_for_each_entry_safe(sccp_patch, tmp, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100863 if (sccp_patch->bsc != connection)
864 continue;
865
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800866 if (ctr)
867 rate_ctr_inc(ctr);
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200868 if (sccp_patch->has_remote_ref) {
869 if (sccp_patch->con_local == NAT_CON_END_MSC)
870 nat_send_rlsd_msc(sccp_patch);
871 else if (sccp_patch->con_local == NAT_CON_END_USSD)
872 nat_send_rlsd_ussd(nat, sccp_patch);
873 }
874
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200875 sccp_connection_destroy(sccp_patch);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100876 }
877
Daniel Willmanna86bc392011-02-18 14:32:56 +0100878 /* Reply to all outstanding commands */
879 llist_for_each_entry_safe(cmd_entry, cmd_tmp, &connection->cmd_pending, list_entry) {
880 cmd_entry->cmd->type = CTRL_TYPE_ERROR;
881 cmd_entry->cmd->reply = "BSC closed the connection";
882 ctrl_cmd_send(&cmd_entry->ccon->write_queue, cmd_entry->cmd);
883 bsc_del_pending(cmd_entry);
884 }
885
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +0200886 /* close endpoints allocated by this BSC */
887 bsc_mgcp_clear_endpoints_for(connection);
888
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200889 osmo_fd_unregister(&connection->write_queue.bfd);
Holger Hans Peter Freythere464ed42010-04-22 12:04:36 +0800890 close(connection->write_queue.bfd.fd);
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200891 osmo_wqueue_clear(&connection->write_queue);
Holger Hans Peter Freythere464ed42010-04-22 12:04:36 +0800892 llist_del(&connection->list_entry);
893
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100894 talloc_free(connection);
895}
896
Holger Hans Peter Freytherde2b8602011-04-23 23:55:14 +0200897static void bsc_maybe_close(struct bsc_connection *bsc)
898{
899 struct sccp_connections *sccp;
900 if (!bsc->nat->blocked)
901 return;
902
903 /* are there any connections left */
904 llist_for_each_entry(sccp, &bsc->nat->sccp_connections, list_entry)
905 if (sccp->bsc == bsc)
906 return;
907
908 /* nothing left, close the BSC */
909 LOGP(DNAT, LOGL_NOTICE, "Cleaning up BSC %d in blocking mode.\n",
910 bsc->cfg ? bsc->cfg->nr : -1);
911 bsc_close_connection(bsc);
912}
913
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800914static void ipaccess_close_bsc(void *data)
915{
Holger Hans Peter Freyther6d5a6002010-04-17 07:58:17 +0200916 struct sockaddr_in sock;
917 socklen_t len = sizeof(sock);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800918 struct bsc_connection *conn = data;
919
Holger Hans Peter Freyther6d5a6002010-04-17 07:58:17 +0200920
921 getpeername(conn->write_queue.bfd.fd, (struct sockaddr *) &sock, &len);
922 LOGP(DNAT, LOGL_ERROR, "BSC on %s didn't respond to identity request. Closing.\n",
923 inet_ntoa(sock.sin_addr));
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800924 bsc_close_connection(conn);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800925}
926
927static void ipaccess_auth_bsc(struct tlv_parsed *tvp, struct bsc_connection *bsc)
928{
929 struct bsc_config *conf;
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +0800930 const char *token = (const char *) TLVP_VAL(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freythera09b9662010-10-14 17:19:58 +0200931 const int len = TLVP_LEN(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800932
Holger Hans Peter Freyther5cdcfa62010-05-02 18:58:10 +0800933 if (bsc->cfg) {
934 LOGP(DNAT, LOGL_ERROR, "Reauth on fd %d bsc nr %d\n",
935 bsc->write_queue.bfd.fd, bsc->cfg->nr);
936 return;
937 }
938
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800939 llist_for_each_entry(conf, &bsc->nat->bsc_configs, entry) {
Holger Hans Peter Freythera09b9662010-10-14 17:19:58 +0200940 if (strncmp(conf->token, token, len) == 0) {
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800941 rate_ctr_inc(&conf->stats.ctrg->ctr[BCFG_CTR_NET_RECONN]);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800942 bsc->authenticated = 1;
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200943 bsc->cfg = conf;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200944 osmo_timer_del(&bsc->id_timeout);
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800945 LOGP(DNAT, LOGL_NOTICE, "Authenticated bsc nr: %d on fd %d\n",
946 conf->nr, bsc->write_queue.bfd.fd);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800947 start_ping_pong(bsc);
Holger Hans Peter Freytherc615c262010-04-17 07:59:57 +0200948 return;
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800949 }
950 }
Holger Hans Peter Freytherc615c262010-04-17 07:59:57 +0200951
Holger Hans Peter Freyther74cfab72010-05-05 17:03:44 +0800952 LOGP(DNAT, LOGL_ERROR, "No bsc found for token %s on fd: %d.\n", token,
953 bsc->write_queue.bfd.fd);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800954}
955
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +0800956static void handle_con_stats(struct sccp_connections *con)
957{
958 struct rate_ctr_group *ctrg;
959 int id = bsc_conn_type_to_ctr(con);
960
961 if (id == -1)
962 return;
963
964 if (!con->bsc || !con->bsc->cfg)
965 return;
966
967 ctrg = con->bsc->cfg->stats.ctrg;
968 rate_ctr_inc(&ctrg->ctr[id]);
969}
970
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +0100971static int forward_sccp_to_msc(struct bsc_connection *bsc, struct msgb *msg)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100972{
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +0800973 int con_filter = 0;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800974 char *imsi = NULL;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800975 struct bsc_msc_connection *con_msc = NULL;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800976 struct bsc_connection *con_bsc = NULL;
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800977 int con_type;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800978 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100979
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800980 /* Parse and filter messages */
981 parsed = bsc_nat_parse(msg);
982 if (!parsed) {
983 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freytherd7657ff2010-03-30 07:35:46 +0200984 msgb_free(msg);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800985 return -1;
986 }
987
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100988 if (bsc_nat_filter_ipa(DIR_MSC, msg, parsed))
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800989 goto exit;
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800990
Holger Hans Peter Freytherbbb9d392010-04-02 03:42:44 +0200991 /*
992 * check authentication after filtering to not reject auth
993 * responses coming from the BSC. We have to make sure that
994 * nothing from the exit path will forward things to the MSC
995 */
996 if (!bsc->authenticated) {
997 LOGP(DNAT, LOGL_ERROR, "BSC is not authenticated.\n");
998 msgb_free(msg);
999 return -1;
1000 }
1001
1002
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001003 /* modify the SCCP entries */
1004 if (parsed->ipa_proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther3837f992010-09-15 00:38:54 +08001005 int filter;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001006 struct sccp_connections *con;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001007 switch (parsed->sccp_type) {
1008 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +08001009 filter = bsc_nat_filter_sccp_cr(bsc, msg, parsed, &con_type, &imsi);
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +08001010 if (filter < 0) {
1011 bsc_stat_reject(filter, bsc, 0);
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +08001012 goto exit3;
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +08001013 }
1014
Holger Hans Peter Freytherfa20c942010-05-16 16:51:31 +08001015 if (!create_sccp_src_ref(bsc, parsed))
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001016 goto exit2;
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +08001017 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther3a77e612010-07-05 13:33:18 +08001018 con->msc_con = bsc->nat->msc_con;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001019 con_msc = con->msc_con;
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +08001020 con->con_type = con_type;
Holger Hans Peter Freyther909e61f2010-09-15 00:41:19 +08001021 con->imsi_checked = filter;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +08001022 if (imsi)
1023 con->imsi = talloc_steal(con, imsi);
1024 imsi = NULL;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001025 con_bsc = con->bsc;
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +08001026 handle_con_stats(con);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001027 break;
1028 case SCCP_MSG_TYPE_RLSD:
1029 case SCCP_MSG_TYPE_CREF:
1030 case SCCP_MSG_TYPE_DT1:
1031 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freytherf46ce532010-04-06 10:22:34 +02001032 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +08001033 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001034 if (con) {
Holger Hans Peter Freyther0c41b692010-10-06 00:48:36 +08001035 /* only filter non local connections */
1036 if (!con->con_local) {
1037 filter = bsc_nat_filter_dt(bsc, msg, con, parsed);
1038 if (filter < 0) {
1039 bsc_stat_reject(filter, bsc, 1);
1040 bsc_send_con_release(bsc, con);
1041 con = NULL;
1042 goto exit2;
1043 }
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +08001044
1045 /* hand data to a side channel */
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +02001046 if (bsc_check_ussd(con, parsed, msg) == 1)
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +02001047 con->con_local = NAT_CON_END_USSD;
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +02001048
1049 /*
1050 * Optionally rewrite setup message. This can
1051 * replace the msg and the parsed structure becomes
1052 * invalid.
1053 */
Holger Hans Peter Freytherdf8e6e92011-05-27 14:09:55 +02001054 msg = bsc_nat_rewrite_msg(bsc->nat, msg, parsed, con->imsi);
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +02001055 talloc_free(parsed);
1056 parsed = NULL;
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +02001057 } else if (con->con_local == NAT_CON_END_USSD) {
1058 bsc_check_ussd(con, parsed, msg);
Holger Hans Peter Freyther74e0a1b2010-09-15 01:11:08 +08001059 }
Holger Hans Peter Freyther0c41b692010-10-06 00:48:36 +08001060
1061 con_bsc = con->bsc;
1062 con_msc = con->msc_con;
1063 con_filter = con->con_local;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001064 }
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +08001065
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001066 break;
1067 case SCCP_MSG_TYPE_RLC:
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +08001068 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001069 if (con) {
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001070 con_bsc = con->bsc;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001071 con_msc = con->msc_con;
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +08001072 con_filter = con->con_local;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001073 }
Holger Hans Peter Freytherf4cfc4f2010-03-31 09:15:05 +02001074 remove_sccp_src_ref(bsc, msg, parsed);
Holger Hans Peter Freytherde2b8602011-04-23 23:55:14 +02001075 bsc_maybe_close(bsc);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001076 break;
1077 case SCCP_MSG_TYPE_UDT:
1078 /* simply forward everything */
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +08001079 con = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001080 break;
1081 default:
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +08001082 LOGP(DNAT, LOGL_ERROR, "Not forwarding to msc sccp type: 0x%x\n", parsed->sccp_type);
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +08001083 con = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001084 goto exit2;
1085 break;
1086 }
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +01001087 } else if (parsed->ipa_proto == IPAC_PROTO_MGCP_OLD) {
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +02001088 bsc_mgcp_forward(bsc, msg);
1089 goto exit2;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +08001090 } else {
1091 LOGP(DNAT, LOGL_ERROR, "Not forwarding unknown stream id: 0x%x\n", parsed->ipa_proto);
1092 goto exit2;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001093 }
1094
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001095 if (con_msc && con_bsc != bsc) {
Holger Hans Peter Freytherca0c2f92010-04-21 18:49:55 +08001096 LOGP(DNAT, LOGL_ERROR, "The connection belongs to a different BTS: input: %d con: %d\n",
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001097 bsc->cfg->nr, con_bsc->cfg->nr);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001098 goto exit2;
1099 }
1100
Holger Hans Peter Freyther09ecda42010-09-15 17:39:44 +08001101 /* do not forward messages to the MSC */
1102 if (con_filter)
1103 goto exit2;
1104
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001105 if (!con_msc) {
Holger Hans Peter Freyther27640fc2010-09-15 00:14:48 +08001106 LOGP(DNAT, LOGL_ERROR, "Not forwarding data bsc_nr: %d ipa: %d type: 0x%x\n",
1107 bsc->cfg->nr,
1108 parsed ? parsed->ipa_proto : -1,
1109 parsed ? parsed->sccp_type : -1);
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001110 goto exit2;
1111 }
1112
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001113 /* send the non-filtered but maybe modified msg */
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001114 queue_for_msc(con_msc, msg);
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +02001115 if (parsed)
1116 talloc_free(parsed);
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +08001117 return 0;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +08001118
1119exit:
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +01001120 /* if we filter out the reset send an ack to the BSC */
1121 if (parsed->bssap == 0 && parsed->gsm_type == BSS_MAP_MSG_RESET) {
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001122 send_reset_ack(bsc);
1123 send_reset_ack(bsc);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001124 } else if (parsed->ipa_proto == IPAC_PROTO_IPACCESS) {
1125 /* do we know who is handling this? */
1126 if (msg->l2h[0] == IPAC_MSGT_ID_RESP) {
1127 struct tlv_parsed tvp;
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +02001128 int ret;
1129 ret = ipaccess_idtag_parse(&tvp,
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001130 (unsigned char *) msg->l2h + 2,
1131 msgb_l2len(msg) - 2);
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +02001132 if (ret < 0) {
1133 LOGP(DNAT, LOGL_ERROR, "ignoring IPA response "
1134 "message with malformed TLVs\n");
1135 return ret;
1136 }
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001137 if (TLVP_PRESENT(&tvp, IPAC_IDTAG_UNITNAME))
1138 ipaccess_auth_bsc(&tvp, bsc);
1139 }
1140
1141 goto exit2;
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +01001142 }
1143
Holger Hans Peter Freyther1498d2e2010-05-15 00:29:50 +08001144exit2:
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +08001145 if (imsi)
1146 talloc_free(imsi);
Holger Hans Peter Freyther1498d2e2010-05-15 00:29:50 +08001147 talloc_free(parsed);
1148 msgb_free(msg);
1149 return -1;
1150
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +08001151exit3:
1152 /* send a SCCP Connection Refused */
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +08001153 if (imsi)
1154 talloc_free(imsi);
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +08001155 bsc_send_con_refuse(bsc, parsed, con_type);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +08001156 talloc_free(parsed);
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +08001157 msgb_free(msg);
1158 return -1;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001159}
1160
Daniel Willmanna86bc392011-02-18 14:32:56 +01001161static struct bsc_cmd_list *bsc_get_pending(struct bsc_connection *bsc, char *id_str)
1162{
1163 struct bsc_cmd_list *cmd_entry;
1164 int id = atoi(id_str);
1165 if (id == 0)
1166 return NULL;
1167
1168 llist_for_each_entry(cmd_entry, &bsc->cmd_pending, list_entry) {
1169 if (cmd_entry->nat_id == id) {
1170 return cmd_entry;
1171 }
1172 }
1173 return NULL;
1174}
1175
1176static void bsc_del_pending(struct bsc_cmd_list *pending)
1177{
1178 llist_del(&pending->list_entry);
1179 osmo_timer_del(&pending->timeout);
1180 talloc_free(pending->cmd);
1181 talloc_free(pending);
1182}
1183
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001184static int ipaccess_bsc_read_cb(struct osmo_fd *bfd)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001185{
1186 int error;
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001187 struct bsc_connection *bsc = bfd->data;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001188 struct msgb *msg = ipaccess_read_msg(bfd, &error);
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001189 struct ipaccess_head *hh;
Daniel Willmanna86bc392011-02-18 14:32:56 +01001190 struct ipaccess_head_ext *hh_ext;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001191
1192 if (!msg) {
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001193 if (error == 0)
Holger Hans Peter Freyther19c35442010-05-01 10:37:15 +08001194 LOGP(DNAT, LOGL_ERROR,
1195 "The connection to the BSC Nr: %d was lost. Cleaning it\n",
1196 bsc->cfg ? bsc->cfg->nr : -1);
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001197 else
Holger Hans Peter Freyther19c35442010-05-01 10:37:15 +08001198 LOGP(DNAT, LOGL_ERROR,
1199 "Stream error on BSC Nr: %d. Failed to parse ip access message: %d\n",
1200 bsc->cfg ? bsc->cfg->nr : -1, error);
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001201
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +08001202 bsc_close_connection(bsc);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001203 return -1;
1204 }
1205
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001206
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02001207 LOGP(DNAT, LOGL_DEBUG, "MSG from BSC: %s proto: %d\n", osmo_hexdump(msg->data, msg->len), msg->l2h[0]);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001208
1209 /* Handle messages from the BSC */
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001210 hh = (struct ipaccess_head *) msg->data;
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001211
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001212 /* stop the pong timeout */
1213 if (hh->proto == IPAC_PROTO_IPACCESS) {
1214 if (msg->l2h[0] == IPAC_MSGT_PONG) {
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001215 osmo_timer_del(&bsc->pong_timeout);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001216 msgb_free(msg);
1217 return 0;
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001218 } else if (msg->l2h[0] == IPAC_MSGT_PING) {
1219 send_pong(bsc);
1220 msgb_free(msg);
1221 return 0;
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001222 }
Daniel Willmanna86bc392011-02-18 14:32:56 +01001223 /* Message contains the ipaccess_head_ext header, investigate further */
1224 } else if (hh->proto == IPAC_PROTO_OSMO &&
1225 msg->len > sizeof(*hh) + sizeof(*hh_ext)) {
1226
1227 hh_ext = (struct ipaccess_head_ext *) hh->data;
1228 /* l2h is where the actual command data is expected */
1229 msg->l2h = hh_ext->data;
1230
1231 if (hh_ext->proto == IPAC_PROTO_EXT_CTRL) {
1232 struct ctrl_cmd *cmd;
1233 struct bsc_cmd_list *pending;
1234 char *var, *id;
1235
1236 cmd = ctrl_cmd_parse(bsc, msg);
1237 msgb_free(msg);
1238
1239 if (!cmd) {
1240 cmd = talloc_zero(bsc, struct ctrl_cmd);
1241 if (!cmd) {
1242 LOGP(DNAT, LOGL_ERROR, "OOM!\n");
1243 return 0;
1244 }
1245 cmd->type = CTRL_TYPE_ERROR;
1246 cmd->id = "err";
1247 cmd->reply = "Failed to parse command.";
1248 ctrl_cmd_send(&bsc->write_queue, cmd);
1249 talloc_free(cmd);
1250 return 0;
1251 }
1252
1253 if (bsc->cfg) {
1254 if (!llist_empty(&bsc->cfg->lac_list)) {
1255 if (cmd->variable) {
1256 var = talloc_asprintf(cmd, "bsc.%i.%s", ((struct bsc_lac_entry *)bsc->cfg->lac_list.next)->lac,
1257 cmd->variable);
1258 if (!var) {
1259 cmd->type = CTRL_TYPE_ERROR;
1260 cmd->reply = "OOM";
1261 goto err;
1262 }
1263 talloc_free(cmd->variable);
1264 cmd->variable = var;
1265 }
1266
1267 /* Find the pending command */
1268 pending = bsc_get_pending(bsc, cmd->id);
1269 if (pending) {
1270 id = talloc_strdup(cmd, pending->cmd->id);
1271 if (!id) {
1272 cmd->type = CTRL_TYPE_ERROR;
1273 cmd->reply = "OOM";
1274 goto err;
1275 }
1276 cmd->id = id;
1277 ctrl_cmd_send(&pending->ccon->write_queue, cmd);
1278 bsc_del_pending(pending);
1279 } else {
1280 /* We need to handle TRAPS here */
1281 if ((cmd->type != CTRL_TYPE_ERROR) && (cmd->type != CTRL_TYPE_TRAP)) {
1282 LOGP(DNAT, LOGL_NOTICE, "Got control message from BSC without pending entry\n");
1283 cmd->type = CTRL_TYPE_ERROR;
1284 cmd->reply = "No request outstanding";
1285 goto err;
1286 }
1287 }
1288 }
1289 }
1290 talloc_free(cmd);
1291 return 0;
1292err:
1293 ctrl_cmd_send(&bsc->write_queue, cmd);
1294 talloc_free(cmd);
1295 return 0;
1296 }
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001297 }
1298
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001299 /* FIXME: Currently no PONG is sent to the BSC */
1300 /* FIXME: Currently no ID ACK is sent to the BSC */
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001301 forward_sccp_to_msc(bsc, msg);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001302
1303 return 0;
1304}
1305
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001306static int ipaccess_listen_bsc_cb(struct osmo_fd *bfd, unsigned int what)
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001307{
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001308 struct bsc_connection *bsc;
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001309 int fd, rc, on;
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001310 struct sockaddr_in sa;
1311 socklen_t sa_len = sizeof(sa);
1312
1313 if (!(what & BSC_FD_READ))
1314 return 0;
1315
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001316 fd = accept(bfd->fd, (struct sockaddr *) &sa, &sa_len);
1317 if (fd < 0) {
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001318 perror("accept");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001319 return fd;
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001320 }
1321
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +02001322 /* count the reconnect */
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02001323 osmo_counter_inc(nat->stats.bsc.reconn);
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +02001324
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001325 /*
1326 * if we are not connected to a msc... just close the socket
1327 */
Holger Hans Peter Freyther20ee3122010-07-05 14:39:44 +08001328 if (!bsc_nat_msc_is_connected(nat)) {
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001329 LOGP(DNAT, LOGL_NOTICE, "Disconnecting BSC due lack of MSC connection.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001330 close(fd);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001331 return 0;
1332 }
1333
Holger Hans Peter Freytherde2b8602011-04-23 23:55:14 +02001334 if (nat->blocked) {
1335 LOGP(DNAT, LOGL_NOTICE, "Disconnecting BSC due NAT being blocked.\n");
1336 close(fd);
1337 return 0;
1338 }
1339
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +08001340 on = 1;
Holger Hans Peter Freyther569ee122010-05-05 20:42:14 +08001341 rc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001342 if (rc != 0)
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +08001343 LOGP(DNAT, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
1344
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +08001345 rc = setsockopt(fd, IPPROTO_IP, IP_TOS,
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +08001346 &nat->bsc_ip_dscp, sizeof(nat->bsc_ip_dscp));
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +08001347 if (rc != 0)
1348 LOGP(DNAT, LOGL_ERROR, "Failed to set IP_TOS: %s\n", strerror(errno));
1349
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001350 /* todo... do something with the connection */
Holger Hans Peter Freytherda86c0a2010-01-12 21:35:32 +01001351 /* todo... use GNUtls to see if we want to trust this as a BTS */
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001352
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001353 /*
1354 *
1355 */
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +08001356 bsc = bsc_connection_alloc(nat);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001357 if (!bsc) {
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001358 LOGP(DNAT, LOGL_ERROR, "Failed to allocate BSC struct.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001359 close(fd);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001360 return -1;
1361 }
1362
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001363 bsc->write_queue.bfd.data = bsc;
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001364 bsc->write_queue.bfd.fd = fd;
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001365 bsc->write_queue.read_cb = ipaccess_bsc_read_cb;
Holger Hans Peter Freyther69cfa172010-10-13 20:37:13 +02001366 bsc->write_queue.write_cb = bsc_write_cb;
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001367 bsc->write_queue.bfd.when = BSC_FD_READ;
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001368 if (osmo_fd_register(&bsc->write_queue.bfd) < 0) {
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001369 LOGP(DNAT, LOGL_ERROR, "Failed to register BSC fd.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001370 close(fd);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001371 talloc_free(bsc);
1372 return -2;
1373 }
1374
Holger Hans Peter Freyther74cfab72010-05-05 17:03:44 +08001375 LOGP(DNAT, LOGL_NOTICE, "BSC connection on %d with IP: %s\n",
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001376 fd, inet_ntoa(sa.sin_addr));
Daniel Willmanna86bc392011-02-18 14:32:56 +01001377
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001378 llist_add(&bsc->list_entry, &nat->bsc_connections);
Daniel Willmanna86bc392011-02-18 14:32:56 +01001379 bsc->last_id = 0;
1380
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +01001381 send_id_ack(bsc);
1382 send_id_req(bsc);
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +02001383 send_mgcp_reset(bsc);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001384
1385 /*
1386 * start the hangup timer
1387 */
1388 bsc->id_timeout.data = bsc;
1389 bsc->id_timeout.cb = ipaccess_close_bsc;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001390 osmo_timer_schedule(&bsc->id_timeout, nat->auth_timeout, 0);
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001391 return 0;
1392}
1393
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001394static void print_usage()
1395{
1396 printf("Usage: bsc_nat\n");
1397}
1398
1399static void print_help()
1400{
1401 printf(" Some useful help...\n");
1402 printf(" -h --help this text\n");
1403 printf(" -d option --debug=DRLL:DCC:DMM:DRR:DRSL:DNM enable debugging\n");
Harald Welte2c869ef2010-08-25 19:43:54 +02001404 printf(" -D --daemonize Fork the process into a background daemon\n");
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001405 printf(" -s --disable-color\n");
1406 printf(" -c --config-file filename The config file to use.\n");
1407 printf(" -m --msc=IP. The address of the MSC.\n");
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001408 printf(" -l --local=IP. The local address of this BSC.\n");
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001409}
1410
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +08001411static void handle_options(int argc, char **argv)
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001412{
1413 while (1) {
1414 int option_index = 0, c;
1415 static struct option long_options[] = {
1416 {"help", 0, 0, 'h'},
1417 {"debug", 1, 0, 'd'},
1418 {"config-file", 1, 0, 'c'},
1419 {"disable-color", 0, 0, 's'},
1420 {"timestamp", 0, 0, 'T'},
1421 {"msc", 1, 0, 'm'},
1422 {"local", 1, 0, 'l'},
1423 {0, 0, 0, 0}
1424 };
1425
1426 c = getopt_long(argc, argv, "hd:sTPc:m:l:",
1427 long_options, &option_index);
1428 if (c == -1)
1429 break;
1430
1431 switch (c) {
1432 case 'h':
1433 print_usage();
1434 print_help();
1435 exit(0);
1436 case 's':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001437 log_set_use_color(osmo_stderr_target, 0);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001438 break;
1439 case 'd':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001440 log_parse_category_mask(osmo_stderr_target, optarg);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001441 break;
1442 case 'c':
1443 config_file = strdup(optarg);
1444 break;
1445 case 'T':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001446 log_set_print_timestamp(osmo_stderr_target, 1);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001447 break;
1448 case 'm':
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001449 msc_ip = optarg;
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001450 break;
1451 case 'l':
1452 inet_aton(optarg, &local_addr);
1453 break;
1454 default:
1455 /* ignore */
1456 break;
1457 }
1458 }
1459}
1460
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001461static void signal_handler(int signal)
1462{
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001463 switch (signal) {
1464 case SIGABRT:
1465 /* in case of abort, we want to obtain a talloc report
1466 * and then return to the caller, who will abort the process */
1467 case SIGUSR1:
1468 talloc_report_full(tall_bsc_ctx, stderr);
1469 break;
1470 default:
1471 break;
1472 }
1473}
1474
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001475static void sccp_close_unconfirmed(void *_data)
1476{
Holger Hans Peter Freytherde2b8602011-04-23 23:55:14 +02001477 int destroyed = 0;
1478 struct bsc_connection *bsc, *bsc_tmp;
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001479 struct sccp_connections *conn, *tmp1;
1480 struct timespec now;
1481 clock_gettime(CLOCK_MONOTONIC, &now);
1482
1483 llist_for_each_entry_safe(conn, tmp1, &nat->sccp_connections, list_entry) {
1484 if (conn->has_remote_ref)
1485 continue;
1486
1487 int diff = (now.tv_sec - conn->creation_time.tv_sec) / 60;
1488 if (diff < SCCP_CLOSE_TIME_TIMEOUT)
1489 continue;
1490
1491 LOGP(DNAT, LOGL_ERROR, "SCCP connection 0x%x/0x%x was never confirmed.\n",
1492 sccp_src_ref_to_int(&conn->real_ref),
1493 sccp_src_ref_to_int(&conn->patched_ref));
1494 sccp_connection_destroy(conn);
Holger Hans Peter Freytherde2b8602011-04-23 23:55:14 +02001495 destroyed = 1;
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001496 }
1497
Holger Hans Peter Freytherde2b8602011-04-23 23:55:14 +02001498 if (!destroyed)
1499 goto out;
1500
1501 /* now close out any BSC */
1502 llist_for_each_entry_safe(bsc, bsc_tmp, &nat->bsc_connections, list_entry)
1503 bsc_maybe_close(bsc);
1504
1505out:
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001506 osmo_timer_schedule(&sccp_close, SCCP_CLOSE_TIME, 0);
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001507}
1508
Holger Hans Peter Freyther0b0b31c2010-06-15 18:51:25 +08001509extern void *tall_msgb_ctx;
1510extern void *tall_ctr_ctx;
1511static void talloc_init_ctx()
1512{
1513 tall_bsc_ctx = talloc_named_const(NULL, 0, "nat");
1514 tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 0, "msgb");
1515 tall_ctr_ctx = talloc_named_const(tall_bsc_ctx, 0, "counter");
1516}
1517
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001518extern enum node_type bsc_vty_go_parent(struct vty *vty);
1519
1520static struct vty_app_info vty_info = {
Harald Welteec1921d2011-02-24 23:57:06 +01001521 .name = "OsmoBSCNAT",
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001522 .version = PACKAGE_VERSION,
1523 .go_parent_cb = bsc_vty_go_parent,
Holger Hans Peter Freyther81506b42010-09-04 11:00:01 +08001524 .is_config_node = bsc_vty_is_config_node,
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001525};
1526
Daniel Willmanna86bc392011-02-18 14:32:56 +01001527static int get_next_free_bsc_id(struct bsc_connection *bsc)
1528{
1529 int new_id, overflow = 0;
1530 struct bsc_cmd_list *pending;
1531
1532 new_id = bsc->last_id;
1533 do {
1534 new_id++;
1535 if (new_id <= 0) {
1536 new_id = 1;
1537 overflow++;
1538 }
1539
1540 llist_for_each_entry(pending, &bsc->cmd_pending, list_entry) {
1541 if (pending->nat_id == new_id)
1542 continue;
1543 }
1544
1545 /* ID is not in use */
1546 break;
1547 } while ((new_id != bsc->last_id) && (overflow < 2));
1548
1549 if ((new_id == bsc->last_id) || (overflow == 2)) {
1550 return -1;
1551 } else {
1552 bsc->last_id = new_id;
1553 return new_id;
1554 }
1555}
1556
1557static void pending_timeout_cb(void *data)
1558{
1559 struct bsc_cmd_list *pending = data;
1560 LOGP(DNAT, LOGL_ERROR, "Command timed out\n");
1561 pending->cmd->type = CTRL_TYPE_ERROR;
1562 pending->cmd->reply = "Command timed out";
1563 ctrl_cmd_send(&pending->ccon->write_queue, pending->cmd);
1564
1565 bsc_del_pending(pending);
1566}
1567
1568static void ctrl_conn_closed_cb(struct ctrl_connection *connection)
1569{
1570 struct bsc_connection *bsc;
1571 struct bsc_cmd_list *pending, *tmp;
1572
1573 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
1574 llist_for_each_entry_safe(pending, tmp, &bsc->cmd_pending, list_entry) {
1575 if (pending->ccon == connection)
1576 bsc_del_pending(pending);
1577 }
1578 }
1579}
1580
1581static int forward_to_bsc(struct ctrl_cmd *cmd)
1582{
1583 int ret = CTRL_CMD_HANDLED;
1584 struct ctrl_cmd *bsc_cmd = NULL;
1585 struct bsc_connection *bsc;
1586 struct bsc_cmd_list *pending;
1587 unsigned int lac;
1588 char *lac_str, *tmp, *saveptr;
1589
1590 /* Skip over the beginning (bsc.) */
1591 tmp = strtok_r(cmd->variable, ".", &saveptr);
1592 lac_str = strtok_r(NULL, ".", &saveptr);
1593 if (!lac_str) {
1594 cmd->reply = "command incomplete";
1595 goto err;
1596 }
1597 lac = atoi(lac_str);
1598
1599 tmp = strtok_r(NULL, "\0", &saveptr);
1600 if (!tmp) {
1601 cmd->reply = "command incomplete";
1602 goto err;
1603 }
1604
1605 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
1606 if (!bsc->cfg)
1607 continue;
1608 if (!bsc->authenticated)
1609 continue;
1610 if (bsc_config_handles_lac(bsc->cfg, lac)) {
1611 /* Add pending command to list */
1612 pending = talloc_zero(bsc, struct bsc_cmd_list);
1613 if (!pending) {
1614 cmd->reply = "OOM";
1615 goto err;
1616 }
1617
1618 pending->nat_id = get_next_free_bsc_id(bsc);
1619 if (pending->nat_id < 0) {
1620 cmd->reply = "No free ID found";
1621 goto err;
1622 }
1623
1624 bsc_cmd = ctrl_cmd_cpy(bsc, cmd);
1625 if (!bsc_cmd) {
1626 cmd->reply = "Could not forward command";
1627 goto err;
1628 }
1629
1630 talloc_free(bsc_cmd->id);
1631 bsc_cmd->id = talloc_asprintf(bsc_cmd, "%i", pending->nat_id);
1632 if (!bsc_cmd->id) {
1633 cmd->reply = "OOM";
1634 goto err;
1635 }
1636
1637 talloc_free(bsc_cmd->variable);
1638 bsc_cmd->variable = talloc_strdup(bsc_cmd, tmp);
1639 if (!bsc_cmd->variable) {
1640 cmd->reply = "OOM";
1641 goto err;
1642 }
1643
1644 if (ctrl_cmd_send(&bsc->write_queue, bsc_cmd)) {
1645 cmd->reply = "Sending failed";
1646 goto err;
1647 }
1648 pending->ccon = cmd->ccon;
1649 pending->ccon->closed_cb = ctrl_conn_closed_cb;
1650 pending->cmd = cmd;
1651
1652 /* Setup the timeout */
1653 pending->timeout.data = pending;
1654 pending->timeout.cb = pending_timeout_cb;
1655 /* TODO: Make timeout configurable */
1656 osmo_timer_schedule(&pending->timeout, 10, 0);
1657 llist_add_tail(&pending->list_entry, &bsc->cmd_pending);
1658
1659 goto done;
1660 }
1661 }
1662 /* We end up here if there's no bsc to handle our LAC */
1663 cmd->reply = "no BSC with this LAC";
1664err:
1665 ret = CTRL_CMD_ERROR;
1666done:
1667 if (bsc_cmd)
1668 talloc_free(bsc_cmd);
1669 return ret;
1670
1671}
1672
1673CTRL_CMD_DEFINE(fwd_cmd, "bsc *");
1674int get_fwd_cmd(struct ctrl_cmd *cmd, void *data)
1675{
1676 return forward_to_bsc(cmd);
1677}
1678
1679int set_fwd_cmd(struct ctrl_cmd *cmd, void *data)
1680{
1681 return forward_to_bsc(cmd);
1682}
1683
1684int verify_fwd_cmd(struct ctrl_cmd *cmd, const char *value, void *data)
1685{
1686 return 0;
1687}
1688
1689extern int controlif_setup(struct gsm_network *gsmnet, uint16_t port);
1690
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +08001691int main(int argc, char **argv)
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001692{
Harald Welte2c869ef2010-08-25 19:43:54 +02001693 int rc;
Holger Hans Peter Freyther0b0b31c2010-06-15 18:51:25 +08001694
Harald Welte2c869ef2010-08-25 19:43:54 +02001695 talloc_init_ctx();
Holger Hans Peter Freythera1597f12010-06-15 18:51:18 +08001696
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001697 osmo_init_logging(&log_info);
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +08001698
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001699 nat = bsc_nat_alloc();
1700 if (!nat) {
1701 fprintf(stderr, "Failed to allocate the BSC nat.\n");
1702 return -4;
1703 }
1704
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +00001705 nat->mgcp_cfg = mgcp_config_alloc();
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001706 if (!nat->mgcp_cfg) {
1707 fprintf(stderr, "Failed to allocate MGCP cfg.\n");
1708 return -5;
1709 }
1710
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001711 vty_info.copyright = openbsc_copyright;
1712 vty_init(&vty_info);
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01001713 logging_vty_add_cmds(&log_info);
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001714 bsc_nat_vty_init(nat);
1715
1716
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001717 /* parse options */
1718 local_addr.s_addr = INADDR_ANY;
1719 handle_options(argc, argv);
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001720
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +08001721 rate_ctr_init(tall_bsc_ctx);
1722
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001723 /* init vty and parse */
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001724 telnet_init(tall_bsc_ctx, NULL, 4244);
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001725 if (mgcp_parse_config(config_file, nat->mgcp_cfg) < 0) {
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001726 fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
1727 return -3;
1728 }
1729
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001730 /* over rule the VTY config */
1731 if (msc_ip)
1732 bsc_nat_set_msc_ip(nat, msc_ip);
1733
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001734 /* seed the PRNG */
1735 srand(time(NULL));
1736
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001737 /*
1738 * Setup the MGCP code..
1739 */
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +08001740 if (bsc_mgcp_nat_init(nat) != 0)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001741 return -4;
1742
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001743 /* connect to the MSC */
Holger Hans Peter Freythere18801052011-04-23 23:31:31 +02001744 nat->msc_con = bsc_msc_create(nat, &nat->dests);
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001745 if (!nat->msc_con) {
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +08001746 fprintf(stderr, "Creating a bsc_msc_connection failed.\n");
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001747 exit(1);
1748 }
1749
Daniel Willmanna86bc392011-02-18 14:32:56 +01001750 controlif_setup(NULL, 4250);
1751 ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_fwd_cmd);
1752
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001753 nat->msc_con->connection_loss = msc_connection_was_lost;
Holger Hans Peter Freythera99c5b92010-08-04 02:31:55 +08001754 nat->msc_con->connected = msc_connection_connected;
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001755 nat->msc_con->write_queue.read_cb = ipaccess_msc_read_cb;
1756 nat->msc_con->write_queue.write_cb = ipaccess_msc_write_cb;;
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +08001757 nat->msc_con->write_queue.bfd.data = nat->msc_con;
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001758 bsc_msc_connect(nat->msc_con);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +08001759
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001760 /* wait for the BSC */
Holger Hans Peter Freythera25d5792010-10-19 17:48:13 +02001761 rc = make_sock(&bsc_listen, IPPROTO_TCP, ntohl(local_addr.s_addr),
Holger Hans Peter Freyther7d736422011-04-07 22:14:58 +02001762 5000, 0, ipaccess_listen_bsc_cb, nat);
Holger Hans Peter Freytherf961de12010-10-12 23:28:28 +02001763 if (rc != 0) {
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001764 fprintf(stderr, "Failed to listen for BSC.\n");
1765 exit(1);
1766 }
1767
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +02001768 rc = bsc_ussd_init(nat);
1769 if (rc != 0) {
1770 LOGP(DNAT, LOGL_ERROR, "Failed to bind the USSD socket.\n");
1771 exit(1);
1772 }
1773
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001774 signal(SIGABRT, &signal_handler);
1775 signal(SIGUSR1, &signal_handler);
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001776 osmo_init_ignore_signals();
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001777
Harald Welte2c869ef2010-08-25 19:43:54 +02001778 if (daemonize) {
1779 rc = osmo_daemonize();
1780 if (rc < 0) {
1781 perror("Error during daemonize");
1782 exit(1);
1783 }
1784 }
1785
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001786 /* recycle timer */
Holger Hans Peter Freyther30e1ae92010-07-30 02:53:14 +08001787 sccp_set_log_area(DSCCP);
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001788 sccp_close.cb = sccp_close_unconfirmed;
1789 sccp_close.data = NULL;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001790 osmo_timer_schedule(&sccp_close, SCCP_CLOSE_TIME, 0);
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001791
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001792 while (1) {
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001793 osmo_select_main(0);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001794 }
1795
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001796 return 0;
1797}
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001798
1799/* Close all connections handed out to the USSD module */
1800int bsc_close_ussd_connections(struct bsc_nat *nat)
1801{
1802 struct sccp_connections *con;
1803 llist_for_each_entry(con, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +02001804 if (con->con_local != NAT_CON_END_USSD)
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001805 continue;
1806 if (!con->bsc)
1807 continue;
1808
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +02001809 nat_send_clrc_bsc(con);
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001810 nat_send_rlsd_bsc(con);
1811 }
1812
1813 return 0;
1814}