blob: b9d4639df1fa9e19075b1b88a32b29fba9d03f82 [file] [log] [blame]
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001/* BSC Multiplexer/NAT */
2
3/*
Holger Hans Peter Freythere1880102011-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>
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +010042#include <openbsc/ipaccess.h>
43#include <openbsc/abis_nm.h>
Holger Hans Peter Freytherf961de12010-10-12 23:28:28 +020044#include <openbsc/socket.h>
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080045#include <openbsc/vty.h>
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080046
Daniel Willmann6fc4a982011-07-22 17:55:42 +020047#include <openbsc/control_cmd.h>
48#include <openbsc/control_if.h>
49
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +020050#include <osmocom/core/application.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010051#include <osmocom/core/talloc.h>
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +080052
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020053#include <osmocom/gsm/tlv.h>
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +020054#include <osmocom/gsm/gsm0808.h>
Harald Welted36ff762011-03-23 18:26:56 +010055#include <osmocom/gsm/protocol/gsm_08_08.h>
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080056
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080057#include <osmocom/vty/telnet_interface.h>
58#include <osmocom/vty/vty.h>
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +010059#include <osmocom/vty/logging.h>
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080060
Harald Welted5db12c2010-08-03 15:11:51 +020061#include <osmocom/sccp/sccp.h>
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +080062
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020063#include <osmocom/abis/ipa.h>
64
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080065#include "../../bscconfig.h"
66
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +080067#define SCCP_CLOSE_TIME 20
68#define SCCP_CLOSE_TIME_TIMEOUT 19
69
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080070static const char *config_file = "bsc-nat.cfg";
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080071static struct in_addr local_addr;
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +020072static struct osmo_fd bsc_listen;
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080073static const char *msc_ip = NULL;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +020074static struct osmo_timer_list sccp_close;
Harald Welte2c869ef2010-08-25 19:43:54 +020075static int daemonize = 0;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +010076
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080077const char *openbsc_copyright =
Holger Hans Peter Freyther5f540752010-09-11 13:32:30 +080078 "Copyright (C) 2010 Holger Hans Peter Freyther and On-Waves\r\n"
Harald Welte9af6ddf2011-01-01 15:25:50 +010079 "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 +080080 "This is free software: you are free to change and redistribute it.\r\n"
81 "There is NO WARRANTY, to the extent permitted by law.\r\n";
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +010082
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080083static struct bsc_nat *nat;
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +080084static 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 +020085static void msc_send_reset(struct bsc_msc_connection *con);
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +080086static void bsc_stat_reject(int filter, struct bsc_connection *bsc, int normal);
Daniel Willmanna86bc392011-02-18 14:32:56 +010087static void bsc_del_pending(struct bsc_cmd_list *pending);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080088
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080089struct bsc_config *bsc_config_num(struct bsc_nat *nat, int num)
90{
91 struct bsc_config *conf;
92
93 llist_for_each_entry(conf, &nat->bsc_configs, entry)
94 if (conf->nr == num)
95 return conf;
96
97 return NULL;
98}
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +010099
Holger Hans Peter Freyther9d56d0c2010-04-22 19:11:37 +0800100static void queue_for_msc(struct bsc_msc_connection *con, struct msgb *msg)
101{
Holger Hans Peter Freythere8e41e62010-10-06 00:24:28 +0800102 if (!con) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200103 LOGP(DLINP, LOGL_ERROR, "No MSC Connection assigned. Check your code.\n");
Holger Hans Peter Freythere8e41e62010-10-06 00:24:28 +0800104 msgb_free(msg);
105 return;
106 }
107
108
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200109 if (osmo_wqueue_enqueue(&con->write_queue, msg) != 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200110 LOGP(DLINP, LOGL_ERROR, "Failed to enqueue the write.\n");
Holger Hans Peter Freyther9d56d0c2010-04-22 19:11:37 +0800111 msgb_free(msg);
112 }
113}
114
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100115static void send_reset_ack(struct bsc_connection *bsc)
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100116{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800117 static const uint8_t gsm_reset_ack[] = {
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100118 0x09, 0x00, 0x03, 0x07, 0x0b, 0x04, 0x43, 0x01,
119 0x00, 0xfe, 0x04, 0x43, 0x5c, 0x00, 0xfe, 0x03,
120 0x00, 0x01, 0x31,
121 };
122
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200123 bsc_send_data(bsc, gsm_reset_ack, sizeof(gsm_reset_ack), IPAC_PROTO_SCCP);
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100124}
125
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800126static void send_ping(struct bsc_connection *bsc)
127{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800128 static const uint8_t id_ping[] = {
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800129 IPAC_MSGT_PING,
130 };
131
132 bsc_send_data(bsc, id_ping, sizeof(id_ping), IPAC_PROTO_IPACCESS);
133}
134
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +0800135static void send_pong(struct bsc_connection *bsc)
136{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800137 static const uint8_t id_pong[] = {
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +0800138 IPAC_MSGT_PONG,
139 };
140
141 bsc_send_data(bsc, id_pong, sizeof(id_pong), IPAC_PROTO_IPACCESS);
142}
143
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800144static void bsc_pong_timeout(void *_bsc)
145{
146 struct bsc_connection *bsc = _bsc;
147
148 LOGP(DNAT, LOGL_ERROR, "BSC Nr: %d PONG timeout.\n", bsc->cfg->nr);
149 bsc_close_connection(bsc);
150}
151
152static void bsc_ping_timeout(void *_bsc)
153{
154 struct bsc_connection *bsc = _bsc;
155
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800156 if (bsc->nat->ping_timeout < 0)
157 return;
158
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800159 send_ping(bsc);
160
161 /* send another ping in 20 seconds */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200162 osmo_timer_schedule(&bsc->ping_timeout, bsc->nat->ping_timeout, 0);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800163
164 /* also start a pong timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200165 osmo_timer_schedule(&bsc->pong_timeout, bsc->nat->pong_timeout, 0);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800166}
167
168static void start_ping_pong(struct bsc_connection *bsc)
169{
170 bsc->pong_timeout.data = bsc;
171 bsc->pong_timeout.cb = bsc_pong_timeout;
172 bsc->ping_timeout.data = bsc;
173 bsc->ping_timeout.cb = bsc_ping_timeout;
174
175 bsc_ping_timeout(bsc);
176}
177
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100178static void send_id_ack(struct bsc_connection *bsc)
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100179{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800180 static const uint8_t id_ack[] = {
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200181 IPAC_MSGT_ID_ACK
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100182 };
183
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200184 bsc_send_data(bsc, id_ack, sizeof(id_ack), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100185}
186
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100187static void send_id_req(struct bsc_connection *bsc)
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100188{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800189 static const uint8_t id_req[] = {
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200190 IPAC_MSGT_ID_GET,
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100191 0x01, IPAC_IDTAG_UNIT,
192 0x01, IPAC_IDTAG_MACADDR,
193 0x01, IPAC_IDTAG_LOCATION1,
194 0x01, IPAC_IDTAG_LOCATION2,
195 0x01, IPAC_IDTAG_EQUIPVERS,
196 0x01, IPAC_IDTAG_SWVERSION,
197 0x01, IPAC_IDTAG_UNITNAME,
198 0x01, IPAC_IDTAG_SERNR,
199 };
200
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200201 bsc_send_data(bsc, id_req, sizeof(id_req), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100202}
203
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200204static struct msgb *nat_create_rlsd(struct sccp_connections *conn)
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200205{
206 struct sccp_connection_released *rel;
207 struct msgb *msg;
208
209 msg = msgb_alloc_headroom(4096, 128, "rlsd");
210 if (!msg) {
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200211 LOGP(DNAT, LOGL_ERROR, "Failed to allocate released.\n");
212 return NULL;
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200213 }
214
215 msg->l2h = msgb_put(msg, sizeof(*rel));
216 rel = (struct sccp_connection_released *) msg->l2h;
217 rel->type = SCCP_MSG_TYPE_RLSD;
218 rel->release_cause = SCCP_RELEASE_CAUSE_SCCP_FAILURE;
219 rel->destination_local_reference = conn->remote_ref;
220 rel->source_local_reference = conn->patched_ref;
221
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200222 return msg;
223}
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200224
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200225static void nat_send_rlsd_ussd(struct bsc_nat *nat, struct sccp_connections *conn)
226{
227 struct msgb *msg;
228
229 if (!nat->ussd_con)
230 return;
231
232 msg = nat_create_rlsd(conn);
233 if (!msg)
234 return;
235
236 bsc_do_write(&nat->ussd_con->queue, msg, IPAC_PROTO_SCCP);
237}
238
239static void nat_send_rlsd_msc(struct sccp_connections *conn)
240{
241 struct msgb *msg;
242
243 msg = nat_create_rlsd(conn);
244 if (!msg)
245 return;
246
247 ipaccess_prepend_header(msg, IPAC_PROTO_SCCP);
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800248 queue_for_msc(conn->msc_con, msg);
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200249}
250
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +0200251static void nat_send_rlsd_bsc(struct sccp_connections *conn)
252{
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +0200253 struct msgb *msg;
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200254 struct sccp_connection_released *rel;
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +0200255
256 msg = msgb_alloc_headroom(4096, 128, "rlsd");
257 if (!msg) {
258 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
259 return;
260 }
261
262 msg->l2h = msgb_put(msg, sizeof(*rel));
263 rel = (struct sccp_connection_released *) msg->l2h;
264 rel->type = SCCP_MSG_TYPE_RLSD;
265 rel->release_cause = SCCP_RELEASE_CAUSE_SCCP_FAILURE;
266 rel->destination_local_reference = conn->real_ref;
267 rel->source_local_reference = conn->remote_ref;
268
269 bsc_write(conn->bsc, msg, IPAC_PROTO_SCCP);
270}
271
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200272static struct msgb *nat_creat_clrc(struct sccp_connections *conn, uint8_t cause)
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200273{
274 struct msgb *msg;
275 struct msgb *sccp;
276
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200277 msg = gsm0808_create_clear_command(cause);
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200278 if (!msg) {
279 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200280 return NULL;
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200281 }
282
283 sccp = sccp_create_dt1(&conn->real_ref, msg->data, msg->len);
284 if (!sccp) {
285 LOGP(DNAT, LOGL_ERROR, "Failed to allocate SCCP msg.\n");
286 msgb_free(msg);
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200287 return NULL;
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200288 }
289
290 msgb_free(msg);
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200291 return sccp;
292}
293
294static int nat_send_clrc_bsc(struct sccp_connections *conn)
295{
296 struct msgb *sccp;
297
298 sccp = nat_creat_clrc(conn, 0x20);
299 if (!sccp)
300 return -1;
301 return bsc_write(conn->bsc, sccp, IPAC_PROTO_SCCP);
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200302}
303
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800304static void nat_send_rlc(struct bsc_msc_connection *msc_con,
305 struct sccp_source_reference *src,
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200306 struct sccp_source_reference *dst)
307{
308 struct sccp_connection_release_complete *rlc;
309 struct msgb *msg;
310
311 msg = msgb_alloc_headroom(4096, 128, "rlc");
312 if (!msg) {
313 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
314 return;
315 }
316
317 msg->l2h = msgb_put(msg, sizeof(*rlc));
318 rlc = (struct sccp_connection_release_complete *) msg->l2h;
319 rlc->type = SCCP_MSG_TYPE_RLC;
320 rlc->destination_local_reference = *dst;
321 rlc->source_local_reference = *src;
322
323 ipaccess_prepend_header(msg, IPAC_PROTO_SCCP);
324
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800325 queue_for_msc(msc_con, msg);
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200326}
327
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +0200328static void send_mgcp_reset(struct bsc_connection *bsc)
329{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800330 static const uint8_t mgcp_reset[] = {
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +0200331 "RSIP 1 13@mgw MGCP 1.0\r\n"
332 };
333
334 bsc_write_mgcp(bsc, mgcp_reset, sizeof mgcp_reset - 1);
335}
336
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100337/*
338 * Below is the handling of messages coming
339 * from the MSC and need to be forwarded to
340 * a real BSC.
341 */
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800342static void initialize_msc_if_needed(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100343{
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800344 if (msc_con->first_contact)
Holger Hans Peter Freytherb7527612010-04-07 11:20:36 +0200345 return;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100346
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800347 msc_con->first_contact = 1;
348 msc_send_reset(msc_con);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100349}
350
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800351static void send_id_get_response(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800352{
353 struct msgb *msg = bsc_msc_id_get_resp(nat->token);
354 if (!msg)
355 return;
356
357 ipaccess_prepend_header(msg, IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800358 queue_for_msc(msc_con, msg);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800359}
360
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100361/*
362 * Currently we are lacking refcounting so we need to copy each message.
363 */
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800364static 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 +0100365{
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100366 struct msgb *msg;
367
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200368 if (length > 4096 - 128) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200369 LOGP(DLINP, LOGL_ERROR, "Can not send message of that size.\n");
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100370 return;
371 }
372
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200373 msg = msgb_alloc_headroom(4096, 128, "to-bsc");
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100374 if (!msg) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200375 LOGP(DLINP, LOGL_ERROR, "Failed to allocate memory for BSC msg.\n");
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100376 return;
377 }
378
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200379 msg->l2h = msgb_put(msg, length);
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100380 memcpy(msg->data, data, length);
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200381
382 bsc_write(bsc, msg, proto);
Holger Hans Peter Freytherf7cb33c2010-03-26 07:20:59 +0100383}
384
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800385/*
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +0800386 * Update the release statistics
387 */
388static void bsc_stat_reject(int filter, struct bsc_connection *bsc, int normal)
389{
390 if (!bsc->cfg) {
391 LOGP(DNAT, LOGL_ERROR, "BSC is not authenticated.");
392 return;
393 }
394
395 if (filter >= 0) {
396 LOGP(DNAT, LOGL_ERROR, "Connection was not rejected");
397 return;
398 }
399
400 if (filter == -1)
401 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_ILL_PACKET]);
402 else if (normal)
403 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_REJECTED_MSG]);
404 else
405 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_REJECTED_CR]);
406}
407
408/*
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800409 * Release an established connection. We will have to release it to the BSC
410 * and to the network and we do it the following way.
411 * 1.) Give up on the MSC side
412 * 1.1) Send a RLSD message, it is a bit non standard but should work, we
413 * ignore the RLC... we might complain about it. Other options would
414 * be to send a Release Request, handle the Release Complete..
415 * 1.2) Mark the data structure to be con_local and wait for 2nd
416 *
417 * 2.) Give up on the BSC side
418 * 2.1) Depending on the con type reject the service, or just close it
419 */
420static void bsc_send_con_release(struct bsc_connection *bsc, struct sccp_connections *con)
421{
422 struct msgb *rlsd;
423 /* 1. release the network */
424 rlsd = sccp_create_rlsd(&con->patched_ref, &con->remote_ref,
425 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
426 if (!rlsd)
427 LOGP(DNAT, LOGL_ERROR, "Failed to create RLSD message.\n");
428 else {
429 ipaccess_prepend_header(rlsd, IPAC_PROTO_SCCP);
430 queue_for_msc(con->msc_con, rlsd);
431 }
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +0200432 con->con_local = NAT_CON_END_LOCAL;
Holger Hans Peter Freythereea5a1b2010-09-16 06:41:09 +0800433 con->msc_con = NULL;
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800434
435 /* 2. release the BSC side */
436 if (con->con_type == NAT_CON_TYPE_LU) {
437 struct msgb *payload, *udt;
438 payload = gsm48_create_loc_upd_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
439
440 if (payload) {
441 gsm0808_prepend_dtap_header(payload, 0);
442 udt = sccp_create_dt1(&con->real_ref, payload->data, payload->len);
443 if (udt)
444 bsc_write(bsc, udt, IPAC_PROTO_SCCP);
445 else
446 LOGP(DNAT, LOGL_ERROR, "Failed to create DT1\n");
447
448 msgb_free(payload);
449 } else {
450 LOGP(DNAT, LOGL_ERROR, "Failed to allocate LU Reject.\n");
451 }
452 }
453
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200454 nat_send_clrc_bsc(con);
455
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800456 rlsd = sccp_create_rlsd(&con->remote_ref, &con->real_ref,
457 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
458 if (!rlsd) {
459 LOGP(DNAT, LOGL_ERROR, "Failed to allocate RLSD for the BSC.\n");
460 sccp_connection_destroy(con);
461 return;
462 }
463
464 con->con_type = NAT_CON_TYPE_LOCAL_REJECT;
465 bsc_write(bsc, rlsd, IPAC_PROTO_SCCP);
466}
467
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800468static void bsc_send_con_refuse(struct bsc_connection *bsc,
469 struct bsc_nat_parsed *parsed, int con_type)
470{
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800471 struct msgb *payload;
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800472 struct msgb *refuse;
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800473
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800474 if (con_type == NAT_CON_TYPE_LU)
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800475 payload = gsm48_create_loc_upd_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800476 else if (con_type == NAT_CON_TYPE_CM_SERV_REQ)
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800477 payload = gsm48_create_mm_serv_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
Holger Hans Peter Freyther8d7b10e2010-07-23 19:43:12 +0800478 else {
479 LOGP(DNAT, LOGL_ERROR, "Unknown connection type: %d\n", con_type);
480 payload = NULL;
481 }
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800482
483 /*
484 * Some BSCs do not handle the payload inside a SCCP CREF msg
485 * so we will need to:
486 * 1.) Allocate a local connection and mark it as local..
487 * 2.) queue data for downstream.. and the RLC should delete everything
488 */
489 if (payload) {
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200490 struct msgb *cc, *udt, *clear, *rlsd;
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800491 struct sccp_connections *con;
492 con = create_sccp_src_ref(bsc, parsed);
493 if (!con)
494 goto send_refuse;
495
496 /* declare it local and assign a unique remote_ref */
497 con->con_type = NAT_CON_TYPE_LOCAL_REJECT;
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +0200498 con->con_local = NAT_CON_END_LOCAL;
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800499 con->has_remote_ref = 1;
500 con->remote_ref = con->patched_ref;
501
502 /* 1. create a confirmation */
503 cc = sccp_create_cc(&con->remote_ref, &con->real_ref);
504 if (!cc)
505 goto send_refuse;
506
507 /* 2. create the DT1 */
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800508 gsm0808_prepend_dtap_header(payload, 0);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800509 udt = sccp_create_dt1(&con->real_ref, payload->data, payload->len);
510 if (!udt) {
511 msgb_free(cc);
512 goto send_refuse;
513 }
514
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200515 /* 3. send a Clear Command */
516 clear = nat_creat_clrc(con, 0x20);
517 if (!clear) {
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800518 msgb_free(cc);
519 msgb_free(udt);
520 goto send_refuse;
521 }
522
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200523 /* 4. send a RLSD */
524 rlsd = sccp_create_rlsd(&con->remote_ref, &con->real_ref,
525 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
526 if (!rlsd) {
527 msgb_free(cc);
528 msgb_free(udt);
529 msgb_free(clear);
530 goto send_refuse;
531 }
532
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800533 bsc_write(bsc, cc, IPAC_PROTO_SCCP);
534 bsc_write(bsc, udt, IPAC_PROTO_SCCP);
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200535 bsc_write(bsc, clear, IPAC_PROTO_SCCP);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800536 bsc_write(bsc, rlsd, IPAC_PROTO_SCCP);
537 msgb_free(payload);
538 return;
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800539 }
540
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800541
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800542send_refuse:
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800543 if (payload)
544 msgb_free(payload);
545
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800546 refuse = sccp_create_refuse(parsed->src_local_ref,
547 SCCP_REFUSAL_SCCP_FAILURE, NULL, 0);
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800548 if (!refuse) {
549 LOGP(DNAT, LOGL_ERROR,
550 "Creating refuse msg failed for SCCP 0x%x on BSC Nr: %d.\n",
551 sccp_src_ref_to_int(parsed->src_local_ref), bsc->cfg->nr);
552 return;
553 }
554
555 bsc_write(bsc, refuse, IPAC_PROTO_SCCP);
556}
557
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200558static void bsc_nat_send_paging(struct bsc_connection *bsc, struct msgb *msg)
559{
560 if (bsc->cfg->forbid_paging) {
561 LOGP(DNAT, LOGL_DEBUG, "Paging forbidden for BTS: %d\n", bsc->cfg->nr);
562 return;
563 }
564
565 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), IPAC_PROTO_SCCP);
566}
567
568static void bsc_nat_handle_paging(struct bsc_nat *nat, struct msgb *msg)
569{
570 struct bsc_connection *bsc;
571 const uint8_t *paging_start;
Holger Hans Peter Freyther0dc36f12011-05-02 20:03:17 +0200572 int paging_length, i, ret;
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200573
Holger Hans Peter Freyther0dc36f12011-05-02 20:03:17 +0200574 ret = bsc_nat_find_paging(msg, &paging_start, &paging_length);
575 if (ret != 0) {
576 LOGP(DNAT, LOGL_ERROR, "Could not parse paging message: %d\n", ret);
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200577 return;
578 }
579
580 /* This is quite expensive now */
581 for (i = 0; i < paging_length; i += 2) {
582 unsigned int _lac = ntohs(*(unsigned int *) &paging_start[i]);
583 unsigned int paged = 0;
584 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
585 if (!bsc->cfg)
586 continue;
587 if (!bsc->authenticated)
588 continue;
589 if (!bsc_config_handles_lac(bsc->cfg, _lac))
590 continue;
591 bsc_nat_send_paging(bsc, msg);
592 paged += 1;
593 }
594
595 /* highlight a possible config issue */
596 if (paged == 0)
597 LOGP(DNAT, LOGL_ERROR, "No BSC for LAC %d/0x%d\n", _lac, _lac);
598
599 }
600}
601
602
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200603/*
604 * Update the auth status. This can be either a CIPHER MODE COMAMND or
605 * a CM Serivce Accept. Maybe also LU Accept or such in the future.
606 */
607static void update_con_authorize(struct sccp_connections *con,
608 struct bsc_nat_parsed *parsed,
609 struct msgb *msg)
610{
611 if (!con)
612 return;
613 if (con->authorized)
614 return;
615
616 if (parsed->bssap == BSSAP_MSG_BSS_MANAGEMENT &&
617 parsed->gsm_type == BSS_MAP_MSG_CIPHER_MODE_CMD) {
618 con->authorized = 1;
619 } else if (parsed->bssap == BSSAP_MSG_DTAP) {
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200620 uint8_t msg_type, proto;
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200621 uint32_t len;
622 struct gsm48_hdr *hdr48;
623 hdr48 = bsc_unpack_dtap(parsed, msg, &len);
624 if (!hdr48)
625 return;
626
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200627 proto = hdr48->proto_discr & 0x0f;
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200628 msg_type = hdr48->msg_type & 0xbf;
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200629 if (proto == GSM48_PDISC_MM &&
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200630 msg_type == GSM48_MT_MM_CM_SERV_ACC)
631 con->authorized = 1;
632 }
633}
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800634
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800635static int forward_sccp_to_bts(struct bsc_msc_connection *msc_con, struct msgb *msg)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100636{
Holger Hans Peter Freyther8d7b10e2010-07-23 19:43:12 +0800637 struct sccp_connections *con = NULL;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800638 struct bsc_connection *bsc;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800639 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200640 int proto;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100641
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100642 /* filter, drop, patch the message? */
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800643 parsed = bsc_nat_parse(msg);
644 if (!parsed) {
645 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100646 return -1;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800647 }
648
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100649 if (bsc_nat_filter_ipa(DIR_BSC, msg, parsed))
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800650 goto exit;
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800651
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200652 proto = parsed->ipa_proto;
653
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100654 /* Route and modify the SCCP packet */
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200655 if (proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100656 switch (parsed->sccp_type) {
657 case SCCP_MSG_TYPE_UDT:
658 /* forward UDT messages to every BSC */
659 goto send_to_all;
660 break;
661 case SCCP_MSG_TYPE_RLSD:
Holger Hans Peter Freyther0b03f162011-04-21 17:13:51 +0200662 if (con && con->con_local == NAT_CON_END_USSD) {
663 LOGP(DNAT, LOGL_NOTICE, "RLSD for a USSD connection. Ignoring.\n");
664 con = NULL;
665 }
666 /* fall through */
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100667 case SCCP_MSG_TYPE_CREF:
668 case SCCP_MSG_TYPE_DT1:
Holger Hans Peter Freytherf46ce532010-04-06 10:22:34 +0200669 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800670 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800671 if (parsed->gsm_type == BSS_MAP_MSG_ASSIGMENT_RQST) {
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200672 osmo_counter_inc(nat->stats.sccp.calls);
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200673
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800674 if (con) {
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800675 struct rate_ctr_group *ctrg;
676 ctrg = con->bsc->cfg->stats.ctrg;
677 rate_ctr_inc(&ctrg->ctr[BCFG_CTR_SCCP_CALLS]);
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800678 if (bsc_mgcp_assign_patch(con, msg) != 0)
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800679 LOGP(DNAT, LOGL_ERROR, "Failed to assign...\n");
680 } else
681 LOGP(DNAT, LOGL_ERROR, "Assignment command but no BSC.\n");
Holger Hans Peter Freyther0b03f162011-04-21 17:13:51 +0200682 } else if (con && con->con_local == NAT_CON_END_USSD &&
683 parsed->gsm_type == BSS_MAP_MSG_CLEAR_CMD) {
684 LOGP(DNAT, LOGL_NOTICE, "Clear Command for USSD Connection. Ignoring.\n");
685 con = NULL;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800686 }
Holger Hans Peter Freyther16a6f702010-03-29 17:18:42 +0200687 break;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100688 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800689 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
690 if (!con || update_sccp_src_ref(con, parsed) != 0)
Holger Hans Peter Freyther16a6f702010-03-29 17:18:42 +0200691 goto exit;
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800692 break;
693 case SCCP_MSG_TYPE_RLC:
694 LOGP(DNAT, LOGL_ERROR, "Unexpected release complete from MSC.\n");
695 goto exit;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100696 break;
697 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100698 /* MSC never opens a SCCP connection, fall through */
699 default:
700 goto exit;
701 }
Holger Hans Peter Freytherf464ea52010-04-06 16:07:44 +0200702
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200703 if (!con && parsed->sccp_type == SCCP_MSG_TYPE_RLSD) {
704 LOGP(DNAT, LOGL_NOTICE, "Sending fake RLC on RLSD message to network.\n");
705 /* Exchange src/dest for the reply */
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800706 nat_send_rlc(msc_con, parsed->dest_local_ref, parsed->src_local_ref);
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200707 } else if (!con)
Holger Hans Peter Freyther5f10c6d2010-05-15 19:13:52 +0800708 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 +0100709 }
710
711 talloc_free(parsed);
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800712 if (!con)
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100713 return -1;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800714 if (!con->bsc->authenticated) {
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +0800715 LOGP(DNAT, LOGL_ERROR, "Selected BSC not authenticated.\n");
Holger Hans Peter Freyther3f37b8f2010-02-08 23:24:32 +0100716 return -1;
717 }
718
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200719 update_con_authorize(con, parsed, msg);
720
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200721 bsc_send_data(con->bsc, msg->l2h, msgb_l2len(msg), proto);
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100722 return 0;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100723
724send_to_all:
Holger Hans Peter Freyther45d11812010-06-15 18:46:36 +0800725 /*
726 * Filter Paging from the network. We do not want to send a PAGING
727 * Command to every BSC in our network. We will analys the PAGING
728 * message and then send it to the authenticated messages...
729 */
730 if (parsed->ipa_proto == IPAC_PROTO_SCCP && parsed->gsm_type == BSS_MAP_MSG_PAGING) {
Holger Hans Peter Freyther1ffe98c2011-05-02 16:20:32 +0200731 bsc_nat_handle_paging(nat, msg);
Holger Hans Peter Freyther45d11812010-06-15 18:46:36 +0800732 goto exit;
733 }
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100734 /* currently send this to every BSC connected */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800735 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther3f37b8f2010-02-08 23:24:32 +0100736 if (!bsc->authenticated)
737 continue;
738
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200739 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100740 }
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800741
742exit:
743 talloc_free(parsed);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100744 return 0;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100745}
746
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800747static void msc_connection_was_lost(struct bsc_msc_connection *con)
748{
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200749 struct bsc_connection *bsc, *tmp;
750
751 LOGP(DMSC, LOGL_ERROR, "Closing all connections downstream.\n");
752 llist_for_each_entry_safe(bsc, tmp, &nat->bsc_connections, list_entry)
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800753 bsc_close_connection(bsc);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200754
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200755 bsc_mgcp_free_endpoints(nat);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200756 bsc_msc_schedule_connect(con);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800757}
758
Holger Hans Peter Freythera99c5b92010-08-04 02:31:55 +0800759static void msc_connection_connected(struct bsc_msc_connection *con)
760{
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200761 osmo_counter_inc(nat->stats.msc.reconn);
Holger Hans Peter Freythera99c5b92010-08-04 02:31:55 +0800762}
763
Holger Hans Peter Freyther02aee142010-04-08 10:31:07 +0200764static void msc_send_reset(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200765{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800766 static const uint8_t reset[] = {
Holger Hans Peter Freyther7cab1662010-04-07 11:11:11 +0200767 0x00, 0x12, 0xfd,
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200768 0x09, 0x00, 0x03, 0x05, 0x07, 0x02, 0x42, 0xfe,
769 0x02, 0x42, 0xfe, 0x06, 0x00, 0x04, 0x30, 0x04,
770 0x01, 0x20
771 };
772
773 struct msgb *msg;
774
775 msg = msgb_alloc_headroom(4096, 128, "08.08 reset");
776 if (!msg) {
777 LOGP(DMSC, LOGL_ERROR, "Failed to allocate reset msg.\n");
778 return;
779 }
780
781 msg->l2h = msgb_put(msg, sizeof(reset));
782 memcpy(msg->l2h, reset, msgb_l2len(msg));
783
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800784 queue_for_msc(msc_con, msg);
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200785
786 LOGP(DMSC, LOGL_NOTICE, "Scheduled GSM0808 reset msg for the MSC.\n");
787}
788
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200789static int ipaccess_msc_read_cb(struct osmo_fd *bfd)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100790{
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800791 struct bsc_msc_connection *msc_con;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200792 struct msgb *msg;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100793 struct ipaccess_head *hh;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200794 int ret;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100795
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800796 msc_con = (struct bsc_msc_connection *) bfd->data;
797
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200798 ret = ipa_msg_recv(bfd->fd, &msg);
799 if (ret <= 0) {
800 if (ret == 0)
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +0100801 LOGP(DNAT, LOGL_FATAL, "The connection the MSC was lost, exiting\n");
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800802 else
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200803 LOGP(DNAT, LOGL_ERROR, "Failed to parse ip access message: %d\n", ret);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100804
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800805 bsc_msc_lost(msc_con);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100806 return -1;
807 }
808
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200809 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 +0100810
811 /* handle base message handling */
812 hh = (struct ipaccess_head *) msg->data;
813 ipaccess_rcvmsg_base(msg, bfd);
814
815 /* initialize the networking. This includes sending a GSM08.08 message */
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800816 if (hh->proto == IPAC_PROTO_IPACCESS) {
817 if (msg->l2h[0] == IPAC_MSGT_ID_ACK)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800818 initialize_msc_if_needed(msc_con);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800819 else if (msg->l2h[0] == IPAC_MSGT_ID_GET)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800820 send_id_get_response(msc_con);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800821 } else if (hh->proto == IPAC_PROTO_SCCP)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800822 forward_sccp_to_bts(msc_con, msg);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100823
Holger Hans Peter Freytheraad68b52010-06-15 18:46:48 +0800824 msgb_free(msg);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100825 return 0;
826}
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +0800827
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200828static int ipaccess_msc_write_cb(struct osmo_fd *bfd, struct msgb *msg)
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800829{
830 int rc;
831 rc = write(bfd->fd, msg->data, msg->len);
832
833 if (rc != msg->len) {
834 LOGP(DNAT, LOGL_ERROR, "Failed to write MSG to MSC.\n");
835 return -1;
836 }
837
838 return rc;
839}
840
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100841/*
842 * Below is the handling of messages coming
843 * from the BSC and need to be forwarded to
844 * a real BSC.
845 */
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100846
847/*
848 * Remove the connection from the connections list,
849 * remove it from the patching of SCCP header lists
850 * as well. Maybe in the future even close connection..
851 */
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800852void bsc_close_connection(struct bsc_connection *connection)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100853{
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100854 struct sccp_connections *sccp_patch, *tmp;
Daniel Willmanna86bc392011-02-18 14:32:56 +0100855 struct bsc_cmd_list *cmd_entry, *cmd_tmp;
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800856 struct rate_ctr *ctr = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100857
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800858 /* stop the timeout timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200859 osmo_timer_del(&connection->id_timeout);
860 osmo_timer_del(&connection->ping_timeout);
861 osmo_timer_del(&connection->pong_timeout);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800862
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800863 if (connection->cfg)
864 ctr = &connection->cfg->stats.ctrg->ctr[BCFG_CTR_DROPPED_SCCP];
865
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100866 /* remove all SCCP connections */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800867 llist_for_each_entry_safe(sccp_patch, tmp, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100868 if (sccp_patch->bsc != connection)
869 continue;
870
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800871 if (ctr)
872 rate_ctr_inc(ctr);
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200873 if (sccp_patch->has_remote_ref) {
874 if (sccp_patch->con_local == NAT_CON_END_MSC)
875 nat_send_rlsd_msc(sccp_patch);
876 else if (sccp_patch->con_local == NAT_CON_END_USSD)
877 nat_send_rlsd_ussd(nat, sccp_patch);
878 }
879
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200880 sccp_connection_destroy(sccp_patch);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100881 }
882
Daniel Willmanna86bc392011-02-18 14:32:56 +0100883 /* Reply to all outstanding commands */
884 llist_for_each_entry_safe(cmd_entry, cmd_tmp, &connection->cmd_pending, list_entry) {
885 cmd_entry->cmd->type = CTRL_TYPE_ERROR;
886 cmd_entry->cmd->reply = "BSC closed the connection";
887 ctrl_cmd_send(&cmd_entry->ccon->write_queue, cmd_entry->cmd);
888 bsc_del_pending(cmd_entry);
889 }
890
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +0200891 /* close endpoints allocated by this BSC */
892 bsc_mgcp_clear_endpoints_for(connection);
893
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200894 osmo_fd_unregister(&connection->write_queue.bfd);
Holger Hans Peter Freythere464ed42010-04-22 12:04:36 +0800895 close(connection->write_queue.bfd.fd);
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200896 osmo_wqueue_clear(&connection->write_queue);
Holger Hans Peter Freythere464ed42010-04-22 12:04:36 +0800897 llist_del(&connection->list_entry);
898
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100899 talloc_free(connection);
900}
901
Holger Hans Peter Freytherde2b8602011-04-23 23:55:14 +0200902static void bsc_maybe_close(struct bsc_connection *bsc)
903{
904 struct sccp_connections *sccp;
905 if (!bsc->nat->blocked)
906 return;
907
908 /* are there any connections left */
909 llist_for_each_entry(sccp, &bsc->nat->sccp_connections, list_entry)
910 if (sccp->bsc == bsc)
911 return;
912
913 /* nothing left, close the BSC */
914 LOGP(DNAT, LOGL_NOTICE, "Cleaning up BSC %d in blocking mode.\n",
915 bsc->cfg ? bsc->cfg->nr : -1);
916 bsc_close_connection(bsc);
917}
918
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800919static void ipaccess_close_bsc(void *data)
920{
Holger Hans Peter Freyther6d5a6002010-04-17 07:58:17 +0200921 struct sockaddr_in sock;
922 socklen_t len = sizeof(sock);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800923 struct bsc_connection *conn = data;
924
Holger Hans Peter Freyther6d5a6002010-04-17 07:58:17 +0200925
926 getpeername(conn->write_queue.bfd.fd, (struct sockaddr *) &sock, &len);
927 LOGP(DNAT, LOGL_ERROR, "BSC on %s didn't respond to identity request. Closing.\n",
928 inet_ntoa(sock.sin_addr));
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800929 bsc_close_connection(conn);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800930}
931
932static void ipaccess_auth_bsc(struct tlv_parsed *tvp, struct bsc_connection *bsc)
933{
934 struct bsc_config *conf;
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +0800935 const char *token = (const char *) TLVP_VAL(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freythera09b9662010-10-14 17:19:58 +0200936 const int len = TLVP_LEN(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800937
Holger Hans Peter Freyther5cdcfa62010-05-02 18:58:10 +0800938 if (bsc->cfg) {
939 LOGP(DNAT, LOGL_ERROR, "Reauth on fd %d bsc nr %d\n",
940 bsc->write_queue.bfd.fd, bsc->cfg->nr);
941 return;
942 }
943
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800944 llist_for_each_entry(conf, &bsc->nat->bsc_configs, entry) {
Holger Hans Peter Freythera09b9662010-10-14 17:19:58 +0200945 if (strncmp(conf->token, token, len) == 0) {
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800946 rate_ctr_inc(&conf->stats.ctrg->ctr[BCFG_CTR_NET_RECONN]);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800947 bsc->authenticated = 1;
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200948 bsc->cfg = conf;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200949 osmo_timer_del(&bsc->id_timeout);
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800950 LOGP(DNAT, LOGL_NOTICE, "Authenticated bsc nr: %d on fd %d\n",
951 conf->nr, bsc->write_queue.bfd.fd);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800952 start_ping_pong(bsc);
Holger Hans Peter Freytherc615c262010-04-17 07:59:57 +0200953 return;
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800954 }
955 }
Holger Hans Peter Freytherc615c262010-04-17 07:59:57 +0200956
Holger Hans Peter Freyther74cfab72010-05-05 17:03:44 +0800957 LOGP(DNAT, LOGL_ERROR, "No bsc found for token %s on fd: %d.\n", token,
958 bsc->write_queue.bfd.fd);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800959}
960
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +0800961static void handle_con_stats(struct sccp_connections *con)
962{
963 struct rate_ctr_group *ctrg;
964 int id = bsc_conn_type_to_ctr(con);
965
966 if (id == -1)
967 return;
968
969 if (!con->bsc || !con->bsc->cfg)
970 return;
971
972 ctrg = con->bsc->cfg->stats.ctrg;
973 rate_ctr_inc(&ctrg->ctr[id]);
974}
975
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +0100976static int forward_sccp_to_msc(struct bsc_connection *bsc, struct msgb *msg)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100977{
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +0800978 int con_filter = 0;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800979 char *imsi = NULL;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800980 struct bsc_msc_connection *con_msc = NULL;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800981 struct bsc_connection *con_bsc = NULL;
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800982 int con_type;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800983 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100984
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800985 /* Parse and filter messages */
986 parsed = bsc_nat_parse(msg);
987 if (!parsed) {
988 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freytherd7657ff2010-03-30 07:35:46 +0200989 msgb_free(msg);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800990 return -1;
991 }
992
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100993 if (bsc_nat_filter_ipa(DIR_MSC, msg, parsed))
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800994 goto exit;
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800995
Holger Hans Peter Freytherbbb9d392010-04-02 03:42:44 +0200996 /*
997 * check authentication after filtering to not reject auth
998 * responses coming from the BSC. We have to make sure that
999 * nothing from the exit path will forward things to the MSC
1000 */
1001 if (!bsc->authenticated) {
1002 LOGP(DNAT, LOGL_ERROR, "BSC is not authenticated.\n");
1003 msgb_free(msg);
1004 return -1;
1005 }
1006
1007
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001008 /* modify the SCCP entries */
1009 if (parsed->ipa_proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther3837f992010-09-15 00:38:54 +08001010 int filter;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001011 struct sccp_connections *con;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001012 switch (parsed->sccp_type) {
1013 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +08001014 filter = bsc_nat_filter_sccp_cr(bsc, msg, parsed, &con_type, &imsi);
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +08001015 if (filter < 0) {
1016 bsc_stat_reject(filter, bsc, 0);
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +08001017 goto exit3;
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +08001018 }
1019
Holger Hans Peter Freytherfa20c942010-05-16 16:51:31 +08001020 if (!create_sccp_src_ref(bsc, parsed))
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001021 goto exit2;
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +08001022 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther3a77e612010-07-05 13:33:18 +08001023 con->msc_con = bsc->nat->msc_con;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001024 con_msc = con->msc_con;
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +08001025 con->con_type = con_type;
Holger Hans Peter Freyther909e61f2010-09-15 00:41:19 +08001026 con->imsi_checked = filter;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +08001027 if (imsi)
1028 con->imsi = talloc_steal(con, imsi);
1029 imsi = NULL;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001030 con_bsc = con->bsc;
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +08001031 handle_con_stats(con);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001032 break;
1033 case SCCP_MSG_TYPE_RLSD:
1034 case SCCP_MSG_TYPE_CREF:
1035 case SCCP_MSG_TYPE_DT1:
1036 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freytherf46ce532010-04-06 10:22:34 +02001037 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +08001038 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001039 if (con) {
Holger Hans Peter Freyther0c41b692010-10-06 00:48:36 +08001040 /* only filter non local connections */
1041 if (!con->con_local) {
1042 filter = bsc_nat_filter_dt(bsc, msg, con, parsed);
1043 if (filter < 0) {
1044 bsc_stat_reject(filter, bsc, 1);
1045 bsc_send_con_release(bsc, con);
1046 con = NULL;
1047 goto exit2;
1048 }
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +08001049
1050 /* hand data to a side channel */
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +02001051 if (bsc_check_ussd(con, parsed, msg) == 1)
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +02001052 con->con_local = NAT_CON_END_USSD;
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +02001053
1054 /*
1055 * Optionally rewrite setup message. This can
1056 * replace the msg and the parsed structure becomes
1057 * invalid.
1058 */
Holger Hans Peter Freytherdf8e6e92011-05-27 14:09:55 +02001059 msg = bsc_nat_rewrite_msg(bsc->nat, msg, parsed, con->imsi);
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +02001060 talloc_free(parsed);
1061 parsed = NULL;
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +02001062 } else if (con->con_local == NAT_CON_END_USSD) {
1063 bsc_check_ussd(con, parsed, msg);
Holger Hans Peter Freyther74e0a1b2010-09-15 01:11:08 +08001064 }
Holger Hans Peter Freyther0c41b692010-10-06 00:48:36 +08001065
1066 con_bsc = con->bsc;
1067 con_msc = con->msc_con;
1068 con_filter = con->con_local;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001069 }
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +08001070
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001071 break;
1072 case SCCP_MSG_TYPE_RLC:
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +08001073 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001074 if (con) {
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001075 con_bsc = con->bsc;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001076 con_msc = con->msc_con;
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +08001077 con_filter = con->con_local;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001078 }
Holger Hans Peter Freytherf4cfc4f2010-03-31 09:15:05 +02001079 remove_sccp_src_ref(bsc, msg, parsed);
Holger Hans Peter Freytherde2b8602011-04-23 23:55:14 +02001080 bsc_maybe_close(bsc);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001081 break;
1082 case SCCP_MSG_TYPE_UDT:
1083 /* simply forward everything */
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +08001084 con = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001085 break;
1086 default:
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +08001087 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 +08001088 con = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001089 goto exit2;
1090 break;
1091 }
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +01001092 } else if (parsed->ipa_proto == IPAC_PROTO_MGCP_OLD) {
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +02001093 bsc_mgcp_forward(bsc, msg);
1094 goto exit2;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +08001095 } else {
1096 LOGP(DNAT, LOGL_ERROR, "Not forwarding unknown stream id: 0x%x\n", parsed->ipa_proto);
1097 goto exit2;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001098 }
1099
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001100 if (con_msc && con_bsc != bsc) {
Holger Hans Peter Freytherca0c2f92010-04-21 18:49:55 +08001101 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 +08001102 bsc->cfg->nr, con_bsc->cfg->nr);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001103 goto exit2;
1104 }
1105
Holger Hans Peter Freyther09ecda42010-09-15 17:39:44 +08001106 /* do not forward messages to the MSC */
1107 if (con_filter)
1108 goto exit2;
1109
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001110 if (!con_msc) {
Holger Hans Peter Freyther27640fc2010-09-15 00:14:48 +08001111 LOGP(DNAT, LOGL_ERROR, "Not forwarding data bsc_nr: %d ipa: %d type: 0x%x\n",
1112 bsc->cfg->nr,
1113 parsed ? parsed->ipa_proto : -1,
1114 parsed ? parsed->sccp_type : -1);
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001115 goto exit2;
1116 }
1117
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001118 /* send the non-filtered but maybe modified msg */
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001119 queue_for_msc(con_msc, msg);
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +02001120 if (parsed)
1121 talloc_free(parsed);
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +08001122 return 0;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +08001123
1124exit:
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +01001125 /* if we filter out the reset send an ack to the BSC */
1126 if (parsed->bssap == 0 && parsed->gsm_type == BSS_MAP_MSG_RESET) {
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001127 send_reset_ack(bsc);
1128 send_reset_ack(bsc);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001129 } else if (parsed->ipa_proto == IPAC_PROTO_IPACCESS) {
1130 /* do we know who is handling this? */
1131 if (msg->l2h[0] == IPAC_MSGT_ID_RESP) {
1132 struct tlv_parsed tvp;
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +02001133 int ret;
1134 ret = ipaccess_idtag_parse(&tvp,
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001135 (unsigned char *) msg->l2h + 2,
1136 msgb_l2len(msg) - 2);
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +02001137 if (ret < 0) {
1138 LOGP(DNAT, LOGL_ERROR, "ignoring IPA response "
1139 "message with malformed TLVs\n");
1140 return ret;
1141 }
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001142 if (TLVP_PRESENT(&tvp, IPAC_IDTAG_UNITNAME))
1143 ipaccess_auth_bsc(&tvp, bsc);
1144 }
1145
1146 goto exit2;
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +01001147 }
1148
Holger Hans Peter Freyther1498d2e2010-05-15 00:29:50 +08001149exit2:
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +08001150 if (imsi)
1151 talloc_free(imsi);
Holger Hans Peter Freyther1498d2e2010-05-15 00:29:50 +08001152 talloc_free(parsed);
1153 msgb_free(msg);
1154 return -1;
1155
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +08001156exit3:
1157 /* send a SCCP Connection Refused */
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +08001158 if (imsi)
1159 talloc_free(imsi);
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +08001160 bsc_send_con_refuse(bsc, parsed, con_type);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +08001161 talloc_free(parsed);
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +08001162 msgb_free(msg);
1163 return -1;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001164}
1165
Daniel Willmanna86bc392011-02-18 14:32:56 +01001166static struct bsc_cmd_list *bsc_get_pending(struct bsc_connection *bsc, char *id_str)
1167{
1168 struct bsc_cmd_list *cmd_entry;
1169 int id = atoi(id_str);
1170 if (id == 0)
1171 return NULL;
1172
1173 llist_for_each_entry(cmd_entry, &bsc->cmd_pending, list_entry) {
1174 if (cmd_entry->nat_id == id) {
1175 return cmd_entry;
1176 }
1177 }
1178 return NULL;
1179}
1180
1181static void bsc_del_pending(struct bsc_cmd_list *pending)
1182{
1183 llist_del(&pending->list_entry);
1184 osmo_timer_del(&pending->timeout);
1185 talloc_free(pending->cmd);
1186 talloc_free(pending);
1187}
1188
Harald Weltef8e49dd2011-07-13 14:43:37 +02001189
1190static int handle_ctrlif_msg(struct bsc_connection *bsc, struct msgb *msg)
1191{
1192 struct ctrl_cmd *cmd;
1193 struct bsc_cmd_list *pending;
1194 char *var, *id;
1195
1196 cmd = ctrl_cmd_parse(bsc, msg);
1197 msgb_free(msg);
1198
1199 if (!cmd) {
1200 cmd = talloc_zero(bsc, struct ctrl_cmd);
1201 if (!cmd) {
1202 LOGP(DNAT, LOGL_ERROR, "OOM!\n");
Harald Welte65520472011-07-13 14:45:21 +02001203 return -ENOMEM;
Harald Weltef8e49dd2011-07-13 14:43:37 +02001204 }
1205 cmd->type = CTRL_TYPE_ERROR;
1206 cmd->id = "err";
1207 cmd->reply = "Failed to parse command.";
Harald Welte65520472011-07-13 14:45:21 +02001208 goto err;
Harald Weltef8e49dd2011-07-13 14:43:37 +02001209 }
1210
Harald Weltef071e162011-07-13 14:47:34 +02001211 if (bsc->cfg && !llist_empty(&bsc->cfg->lac_list)) {
1212 if (cmd->variable) {
Harald Welte7017fa72011-07-13 14:50:46 +02001213 struct bsc_lac_entry *bsc_lac;
1214 bsc_lac = llist_entry(bsc->cfg->lac_list.next,
1215 struct bsc_lac_entry, entry);
1216 var = talloc_asprintf(cmd, "bsc.%i.%s", bsc_lac->lac,
1217 cmd->variable);
Harald Weltef071e162011-07-13 14:47:34 +02001218 if (!var) {
1219 cmd->type = CTRL_TYPE_ERROR;
1220 cmd->reply = "OOM";
1221 goto err;
Harald Weltef8e49dd2011-07-13 14:43:37 +02001222 }
Harald Weltef071e162011-07-13 14:47:34 +02001223 talloc_free(cmd->variable);
1224 cmd->variable = var;
1225 }
Harald Weltef8e49dd2011-07-13 14:43:37 +02001226
Harald Weltef071e162011-07-13 14:47:34 +02001227 /* Find the pending command */
1228 pending = bsc_get_pending(bsc, cmd->id);
1229 if (pending) {
1230 id = talloc_strdup(cmd, pending->cmd->id);
1231 if (!id) {
1232 cmd->type = CTRL_TYPE_ERROR;
1233 cmd->reply = "OOM";
1234 goto err;
1235 }
1236 cmd->id = id;
1237 ctrl_cmd_send(&pending->ccon->write_queue, cmd);
1238 bsc_del_pending(pending);
1239 } else {
1240 /* We need to handle TRAPS here */
Harald Welte7017fa72011-07-13 14:50:46 +02001241 if ((cmd->type != CTRL_TYPE_ERROR) &&
1242 (cmd->type != CTRL_TYPE_TRAP)) {
1243 LOGP(DNAT, LOGL_NOTICE, "Got control message "
1244 "from BSC without pending entry\n");
Harald Weltef071e162011-07-13 14:47:34 +02001245 cmd->type = CTRL_TYPE_ERROR;
1246 cmd->reply = "No request outstanding";
1247 goto err;
Harald Weltef8e49dd2011-07-13 14:43:37 +02001248 }
1249 }
1250 }
1251 talloc_free(cmd);
1252 return 0;
1253err:
1254 ctrl_cmd_send(&bsc->write_queue, cmd);
1255 talloc_free(cmd);
1256 return 0;
1257}
1258
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001259static int ipaccess_bsc_read_cb(struct osmo_fd *bfd)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001260{
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001261 struct bsc_connection *bsc = bfd->data;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001262 struct msgb *msg;
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001263 struct ipaccess_head *hh;
Daniel Willmanna86bc392011-02-18 14:32:56 +01001264 struct ipaccess_head_ext *hh_ext;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001265 int ret;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001266
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001267 ret = ipa_msg_recv(bfd->fd, &msg);
1268 if (ret <= 0) {
1269 if (ret == 0)
Holger Hans Peter Freyther19c35442010-05-01 10:37:15 +08001270 LOGP(DNAT, LOGL_ERROR,
1271 "The connection to the BSC Nr: %d was lost. Cleaning it\n",
1272 bsc->cfg ? bsc->cfg->nr : -1);
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001273 else
Holger Hans Peter Freyther19c35442010-05-01 10:37:15 +08001274 LOGP(DNAT, LOGL_ERROR,
1275 "Stream error on BSC Nr: %d. Failed to parse ip access message: %d\n",
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001276 bsc->cfg ? bsc->cfg->nr : -1, ret);
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001277
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +08001278 bsc_close_connection(bsc);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001279 return -1;
1280 }
1281
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001282
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02001283 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 +01001284
1285 /* Handle messages from the BSC */
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001286 hh = (struct ipaccess_head *) msg->data;
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001287
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001288 /* stop the pong timeout */
1289 if (hh->proto == IPAC_PROTO_IPACCESS) {
1290 if (msg->l2h[0] == IPAC_MSGT_PONG) {
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001291 osmo_timer_del(&bsc->pong_timeout);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001292 msgb_free(msg);
1293 return 0;
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001294 } else if (msg->l2h[0] == IPAC_MSGT_PING) {
1295 send_pong(bsc);
1296 msgb_free(msg);
1297 return 0;
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001298 }
Daniel Willmanna86bc392011-02-18 14:32:56 +01001299 /* Message contains the ipaccess_head_ext header, investigate further */
1300 } else if (hh->proto == IPAC_PROTO_OSMO &&
1301 msg->len > sizeof(*hh) + sizeof(*hh_ext)) {
1302
1303 hh_ext = (struct ipaccess_head_ext *) hh->data;
1304 /* l2h is where the actual command data is expected */
1305 msg->l2h = hh_ext->data;
1306
Harald Weltef8e49dd2011-07-13 14:43:37 +02001307 if (hh_ext->proto == IPAC_PROTO_EXT_CTRL)
1308 return handle_ctrlif_msg(bsc, msg);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001309 }
1310
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001311 /* FIXME: Currently no PONG is sent to the BSC */
1312 /* FIXME: Currently no ID ACK is sent to the BSC */
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001313 forward_sccp_to_msc(bsc, msg);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001314
1315 return 0;
1316}
1317
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001318static int ipaccess_listen_bsc_cb(struct osmo_fd *bfd, unsigned int what)
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001319{
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001320 struct bsc_connection *bsc;
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001321 int fd, rc, on;
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001322 struct sockaddr_in sa;
1323 socklen_t sa_len = sizeof(sa);
1324
1325 if (!(what & BSC_FD_READ))
1326 return 0;
1327
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001328 fd = accept(bfd->fd, (struct sockaddr *) &sa, &sa_len);
1329 if (fd < 0) {
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001330 perror("accept");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001331 return fd;
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001332 }
1333
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +02001334 /* count the reconnect */
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02001335 osmo_counter_inc(nat->stats.bsc.reconn);
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +02001336
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001337 /*
1338 * if we are not connected to a msc... just close the socket
1339 */
Holger Hans Peter Freyther20ee3122010-07-05 14:39:44 +08001340 if (!bsc_nat_msc_is_connected(nat)) {
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001341 LOGP(DNAT, LOGL_NOTICE, "Disconnecting BSC due lack of MSC connection.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001342 close(fd);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001343 return 0;
1344 }
1345
Holger Hans Peter Freytherde2b8602011-04-23 23:55:14 +02001346 if (nat->blocked) {
1347 LOGP(DNAT, LOGL_NOTICE, "Disconnecting BSC due NAT being blocked.\n");
1348 close(fd);
1349 return 0;
1350 }
1351
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +08001352 on = 1;
Holger Hans Peter Freyther569ee122010-05-05 20:42:14 +08001353 rc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001354 if (rc != 0)
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +08001355 LOGP(DNAT, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
1356
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +08001357 rc = setsockopt(fd, IPPROTO_IP, IP_TOS,
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +08001358 &nat->bsc_ip_dscp, sizeof(nat->bsc_ip_dscp));
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +08001359 if (rc != 0)
1360 LOGP(DNAT, LOGL_ERROR, "Failed to set IP_TOS: %s\n", strerror(errno));
1361
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001362 /* todo... do something with the connection */
Holger Hans Peter Freytherda86c0a2010-01-12 21:35:32 +01001363 /* todo... use GNUtls to see if we want to trust this as a BTS */
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001364
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001365 /*
1366 *
1367 */
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +08001368 bsc = bsc_connection_alloc(nat);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001369 if (!bsc) {
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001370 LOGP(DNAT, LOGL_ERROR, "Failed to allocate BSC struct.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001371 close(fd);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001372 return -1;
1373 }
1374
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001375 bsc->write_queue.bfd.data = bsc;
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001376 bsc->write_queue.bfd.fd = fd;
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001377 bsc->write_queue.read_cb = ipaccess_bsc_read_cb;
Holger Hans Peter Freyther69cfa172010-10-13 20:37:13 +02001378 bsc->write_queue.write_cb = bsc_write_cb;
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001379 bsc->write_queue.bfd.when = BSC_FD_READ;
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001380 if (osmo_fd_register(&bsc->write_queue.bfd) < 0) {
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001381 LOGP(DNAT, LOGL_ERROR, "Failed to register BSC fd.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001382 close(fd);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001383 talloc_free(bsc);
1384 return -2;
1385 }
1386
Holger Hans Peter Freyther74cfab72010-05-05 17:03:44 +08001387 LOGP(DNAT, LOGL_NOTICE, "BSC connection on %d with IP: %s\n",
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001388 fd, inet_ntoa(sa.sin_addr));
Daniel Willmanna86bc392011-02-18 14:32:56 +01001389
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001390 llist_add(&bsc->list_entry, &nat->bsc_connections);
Daniel Willmanna86bc392011-02-18 14:32:56 +01001391 bsc->last_id = 0;
1392
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +01001393 send_id_ack(bsc);
1394 send_id_req(bsc);
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +02001395 send_mgcp_reset(bsc);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001396
1397 /*
1398 * start the hangup timer
1399 */
1400 bsc->id_timeout.data = bsc;
1401 bsc->id_timeout.cb = ipaccess_close_bsc;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001402 osmo_timer_schedule(&bsc->id_timeout, nat->auth_timeout, 0);
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001403 return 0;
1404}
1405
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001406static void print_usage()
1407{
1408 printf("Usage: bsc_nat\n");
1409}
1410
1411static void print_help()
1412{
1413 printf(" Some useful help...\n");
1414 printf(" -h --help this text\n");
1415 printf(" -d option --debug=DRLL:DCC:DMM:DRR:DRSL:DNM enable debugging\n");
Harald Welte2c869ef2010-08-25 19:43:54 +02001416 printf(" -D --daemonize Fork the process into a background daemon\n");
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001417 printf(" -s --disable-color\n");
1418 printf(" -c --config-file filename The config file to use.\n");
1419 printf(" -m --msc=IP. The address of the MSC.\n");
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001420 printf(" -l --local=IP. The local address of this BSC.\n");
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001421}
1422
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +08001423static void handle_options(int argc, char **argv)
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001424{
1425 while (1) {
1426 int option_index = 0, c;
1427 static struct option long_options[] = {
1428 {"help", 0, 0, 'h'},
1429 {"debug", 1, 0, 'd'},
1430 {"config-file", 1, 0, 'c'},
1431 {"disable-color", 0, 0, 's'},
1432 {"timestamp", 0, 0, 'T'},
1433 {"msc", 1, 0, 'm'},
1434 {"local", 1, 0, 'l'},
1435 {0, 0, 0, 0}
1436 };
1437
1438 c = getopt_long(argc, argv, "hd:sTPc:m:l:",
1439 long_options, &option_index);
1440 if (c == -1)
1441 break;
1442
1443 switch (c) {
1444 case 'h':
1445 print_usage();
1446 print_help();
1447 exit(0);
1448 case 's':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001449 log_set_use_color(osmo_stderr_target, 0);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001450 break;
1451 case 'd':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001452 log_parse_category_mask(osmo_stderr_target, optarg);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001453 break;
1454 case 'c':
1455 config_file = strdup(optarg);
1456 break;
1457 case 'T':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001458 log_set_print_timestamp(osmo_stderr_target, 1);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001459 break;
1460 case 'm':
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001461 msc_ip = optarg;
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001462 break;
1463 case 'l':
1464 inet_aton(optarg, &local_addr);
1465 break;
1466 default:
1467 /* ignore */
1468 break;
1469 }
1470 }
1471}
1472
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001473static void signal_handler(int signal)
1474{
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001475 switch (signal) {
1476 case SIGABRT:
1477 /* in case of abort, we want to obtain a talloc report
1478 * and then return to the caller, who will abort the process */
1479 case SIGUSR1:
1480 talloc_report_full(tall_bsc_ctx, stderr);
1481 break;
1482 default:
1483 break;
1484 }
1485}
1486
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001487static void sccp_close_unconfirmed(void *_data)
1488{
Holger Hans Peter Freytherde2b8602011-04-23 23:55:14 +02001489 int destroyed = 0;
1490 struct bsc_connection *bsc, *bsc_tmp;
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001491 struct sccp_connections *conn, *tmp1;
1492 struct timespec now;
1493 clock_gettime(CLOCK_MONOTONIC, &now);
1494
1495 llist_for_each_entry_safe(conn, tmp1, &nat->sccp_connections, list_entry) {
1496 if (conn->has_remote_ref)
1497 continue;
1498
1499 int diff = (now.tv_sec - conn->creation_time.tv_sec) / 60;
1500 if (diff < SCCP_CLOSE_TIME_TIMEOUT)
1501 continue;
1502
1503 LOGP(DNAT, LOGL_ERROR, "SCCP connection 0x%x/0x%x was never confirmed.\n",
1504 sccp_src_ref_to_int(&conn->real_ref),
1505 sccp_src_ref_to_int(&conn->patched_ref));
1506 sccp_connection_destroy(conn);
Holger Hans Peter Freytherde2b8602011-04-23 23:55:14 +02001507 destroyed = 1;
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001508 }
1509
Holger Hans Peter Freytherde2b8602011-04-23 23:55:14 +02001510 if (!destroyed)
1511 goto out;
1512
1513 /* now close out any BSC */
1514 llist_for_each_entry_safe(bsc, bsc_tmp, &nat->bsc_connections, list_entry)
1515 bsc_maybe_close(bsc);
1516
1517out:
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001518 osmo_timer_schedule(&sccp_close, SCCP_CLOSE_TIME, 0);
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001519}
1520
Holger Hans Peter Freyther0b0b31c2010-06-15 18:51:25 +08001521extern void *tall_msgb_ctx;
1522extern void *tall_ctr_ctx;
1523static void talloc_init_ctx()
1524{
1525 tall_bsc_ctx = talloc_named_const(NULL, 0, "nat");
1526 tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 0, "msgb");
1527 tall_ctr_ctx = talloc_named_const(tall_bsc_ctx, 0, "counter");
1528}
1529
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001530extern enum node_type bsc_vty_go_parent(struct vty *vty);
1531
1532static struct vty_app_info vty_info = {
Harald Welteec1921d2011-02-24 23:57:06 +01001533 .name = "OsmoBSCNAT",
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001534 .version = PACKAGE_VERSION,
1535 .go_parent_cb = bsc_vty_go_parent,
Holger Hans Peter Freyther81506b42010-09-04 11:00:01 +08001536 .is_config_node = bsc_vty_is_config_node,
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001537};
1538
Daniel Willmanne54db172011-07-16 21:42:53 +02001539static int bsc_id_unused(int id, struct bsc_connection *bsc)
1540{
1541 struct bsc_cmd_list *pending;
1542
1543 llist_for_each_entry(pending, &bsc->cmd_pending, list_entry) {
1544 if (pending->nat_id == id)
1545 return 0;
1546 }
1547 return 1;
1548}
1549
1550#define NAT_MAX_CTRL_ID 65535
1551
Daniel Willmanna86bc392011-02-18 14:32:56 +01001552static int get_next_free_bsc_id(struct bsc_connection *bsc)
1553{
1554 int new_id, overflow = 0;
Daniel Willmanna86bc392011-02-18 14:32:56 +01001555
1556 new_id = bsc->last_id;
Daniel Willmanne54db172011-07-16 21:42:53 +02001557
Daniel Willmanna86bc392011-02-18 14:32:56 +01001558 do {
1559 new_id++;
Daniel Willmanne54db172011-07-16 21:42:53 +02001560 if (new_id == NAT_MAX_CTRL_ID) {
Daniel Willmanna86bc392011-02-18 14:32:56 +01001561 new_id = 1;
1562 overflow++;
1563 }
1564
Daniel Willmanne54db172011-07-16 21:42:53 +02001565 if (bsc_id_unused(new_id, bsc)) {
1566 bsc->last_id = new_id;
1567 return new_id;
Daniel Willmanna86bc392011-02-18 14:32:56 +01001568 }
Daniel Willmanne54db172011-07-16 21:42:53 +02001569 } while (overflow != 2);
Daniel Willmanna86bc392011-02-18 14:32:56 +01001570
Daniel Willmanne54db172011-07-16 21:42:53 +02001571 return -1;
Daniel Willmanna86bc392011-02-18 14:32:56 +01001572}
1573
1574static void pending_timeout_cb(void *data)
1575{
1576 struct bsc_cmd_list *pending = data;
1577 LOGP(DNAT, LOGL_ERROR, "Command timed out\n");
1578 pending->cmd->type = CTRL_TYPE_ERROR;
1579 pending->cmd->reply = "Command timed out";
1580 ctrl_cmd_send(&pending->ccon->write_queue, pending->cmd);
1581
1582 bsc_del_pending(pending);
1583}
1584
1585static void ctrl_conn_closed_cb(struct ctrl_connection *connection)
1586{
1587 struct bsc_connection *bsc;
1588 struct bsc_cmd_list *pending, *tmp;
1589
1590 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
1591 llist_for_each_entry_safe(pending, tmp, &bsc->cmd_pending, list_entry) {
1592 if (pending->ccon == connection)
1593 bsc_del_pending(pending);
1594 }
1595 }
1596}
1597
1598static int forward_to_bsc(struct ctrl_cmd *cmd)
1599{
1600 int ret = CTRL_CMD_HANDLED;
1601 struct ctrl_cmd *bsc_cmd = NULL;
1602 struct bsc_connection *bsc;
1603 struct bsc_cmd_list *pending;
1604 unsigned int lac;
1605 char *lac_str, *tmp, *saveptr;
1606
1607 /* Skip over the beginning (bsc.) */
1608 tmp = strtok_r(cmd->variable, ".", &saveptr);
1609 lac_str = strtok_r(NULL, ".", &saveptr);
1610 if (!lac_str) {
1611 cmd->reply = "command incomplete";
1612 goto err;
1613 }
1614 lac = atoi(lac_str);
1615
1616 tmp = strtok_r(NULL, "\0", &saveptr);
1617 if (!tmp) {
1618 cmd->reply = "command incomplete";
1619 goto err;
1620 }
1621
1622 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
1623 if (!bsc->cfg)
1624 continue;
1625 if (!bsc->authenticated)
1626 continue;
1627 if (bsc_config_handles_lac(bsc->cfg, lac)) {
1628 /* Add pending command to list */
1629 pending = talloc_zero(bsc, struct bsc_cmd_list);
1630 if (!pending) {
1631 cmd->reply = "OOM";
1632 goto err;
1633 }
1634
1635 pending->nat_id = get_next_free_bsc_id(bsc);
1636 if (pending->nat_id < 0) {
1637 cmd->reply = "No free ID found";
1638 goto err;
1639 }
1640
1641 bsc_cmd = ctrl_cmd_cpy(bsc, cmd);
1642 if (!bsc_cmd) {
1643 cmd->reply = "Could not forward command";
1644 goto err;
1645 }
1646
1647 talloc_free(bsc_cmd->id);
1648 bsc_cmd->id = talloc_asprintf(bsc_cmd, "%i", pending->nat_id);
1649 if (!bsc_cmd->id) {
1650 cmd->reply = "OOM";
1651 goto err;
1652 }
1653
1654 talloc_free(bsc_cmd->variable);
1655 bsc_cmd->variable = talloc_strdup(bsc_cmd, tmp);
1656 if (!bsc_cmd->variable) {
1657 cmd->reply = "OOM";
1658 goto err;
1659 }
1660
1661 if (ctrl_cmd_send(&bsc->write_queue, bsc_cmd)) {
1662 cmd->reply = "Sending failed";
1663 goto err;
1664 }
1665 pending->ccon = cmd->ccon;
1666 pending->ccon->closed_cb = ctrl_conn_closed_cb;
1667 pending->cmd = cmd;
1668
1669 /* Setup the timeout */
1670 pending->timeout.data = pending;
1671 pending->timeout.cb = pending_timeout_cb;
1672 /* TODO: Make timeout configurable */
1673 osmo_timer_schedule(&pending->timeout, 10, 0);
1674 llist_add_tail(&pending->list_entry, &bsc->cmd_pending);
1675
1676 goto done;
1677 }
1678 }
1679 /* We end up here if there's no bsc to handle our LAC */
1680 cmd->reply = "no BSC with this LAC";
1681err:
1682 ret = CTRL_CMD_ERROR;
1683done:
1684 if (bsc_cmd)
1685 talloc_free(bsc_cmd);
1686 return ret;
1687
1688}
1689
1690CTRL_CMD_DEFINE(fwd_cmd, "bsc *");
Daniel Willmann57630932011-08-05 11:48:18 +02001691static int get_fwd_cmd(struct ctrl_cmd *cmd, void *data)
Daniel Willmanna86bc392011-02-18 14:32:56 +01001692{
1693 return forward_to_bsc(cmd);
1694}
1695
Daniel Willmann57630932011-08-05 11:48:18 +02001696static int set_fwd_cmd(struct ctrl_cmd *cmd, void *data)
Daniel Willmanna86bc392011-02-18 14:32:56 +01001697{
1698 return forward_to_bsc(cmd);
1699}
1700
Daniel Willmann57630932011-08-05 11:48:18 +02001701static int verify_fwd_cmd(struct ctrl_cmd *cmd, const char *value, void *data)
Daniel Willmanna86bc392011-02-18 14:32:56 +01001702{
1703 return 0;
1704}
1705
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +08001706int main(int argc, char **argv)
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001707{
Harald Welte2c869ef2010-08-25 19:43:54 +02001708 int rc;
Holger Hans Peter Freyther0b0b31c2010-06-15 18:51:25 +08001709
Harald Welte2c869ef2010-08-25 19:43:54 +02001710 talloc_init_ctx();
Holger Hans Peter Freythera1597f12010-06-15 18:51:18 +08001711
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001712 osmo_init_logging(&log_info);
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +08001713
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001714 nat = bsc_nat_alloc();
1715 if (!nat) {
1716 fprintf(stderr, "Failed to allocate the BSC nat.\n");
1717 return -4;
1718 }
1719
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +00001720 nat->mgcp_cfg = mgcp_config_alloc();
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001721 if (!nat->mgcp_cfg) {
1722 fprintf(stderr, "Failed to allocate MGCP cfg.\n");
1723 return -5;
1724 }
1725
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001726 vty_info.copyright = openbsc_copyright;
1727 vty_init(&vty_info);
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01001728 logging_vty_add_cmds(&log_info);
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001729 bsc_nat_vty_init(nat);
1730
1731
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001732 /* parse options */
1733 local_addr.s_addr = INADDR_ANY;
1734 handle_options(argc, argv);
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001735
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +08001736 rate_ctr_init(tall_bsc_ctx);
1737
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001738 /* init vty and parse */
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001739 telnet_init(tall_bsc_ctx, NULL, 4244);
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001740 if (mgcp_parse_config(config_file, nat->mgcp_cfg) < 0) {
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001741 fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
1742 return -3;
1743 }
1744
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001745 /* over rule the VTY config */
1746 if (msc_ip)
1747 bsc_nat_set_msc_ip(nat, msc_ip);
1748
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001749 /* seed the PRNG */
1750 srand(time(NULL));
1751
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001752 /*
1753 * Setup the MGCP code..
1754 */
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +08001755 if (bsc_mgcp_nat_init(nat) != 0)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001756 return -4;
1757
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001758 /* connect to the MSC */
Holger Hans Peter Freythere1880102011-04-23 23:31:31 +02001759 nat->msc_con = bsc_msc_create(nat, &nat->dests);
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001760 if (!nat->msc_con) {
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +08001761 fprintf(stderr, "Creating a bsc_msc_connection failed.\n");
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001762 exit(1);
1763 }
1764
Daniel Willmann6fc4a982011-07-22 17:55:42 +02001765 nat->ctrl = controlif_setup(NULL, 4250);
Daniel Willmanna86bc392011-02-18 14:32:56 +01001766 ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_fwd_cmd);
1767
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001768 nat->msc_con->connection_loss = msc_connection_was_lost;
Holger Hans Peter Freythera99c5b92010-08-04 02:31:55 +08001769 nat->msc_con->connected = msc_connection_connected;
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001770 nat->msc_con->write_queue.read_cb = ipaccess_msc_read_cb;
1771 nat->msc_con->write_queue.write_cb = ipaccess_msc_write_cb;;
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +08001772 nat->msc_con->write_queue.bfd.data = nat->msc_con;
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001773 bsc_msc_connect(nat->msc_con);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +08001774
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001775 /* wait for the BSC */
Holger Hans Peter Freythera25d5792010-10-19 17:48:13 +02001776 rc = make_sock(&bsc_listen, IPPROTO_TCP, ntohl(local_addr.s_addr),
Holger Hans Peter Freyther7d736422011-04-07 22:14:58 +02001777 5000, 0, ipaccess_listen_bsc_cb, nat);
Holger Hans Peter Freytherf961de12010-10-12 23:28:28 +02001778 if (rc != 0) {
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001779 fprintf(stderr, "Failed to listen for BSC.\n");
1780 exit(1);
1781 }
1782
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +02001783 rc = bsc_ussd_init(nat);
1784 if (rc != 0) {
1785 LOGP(DNAT, LOGL_ERROR, "Failed to bind the USSD socket.\n");
1786 exit(1);
1787 }
1788
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001789 signal(SIGABRT, &signal_handler);
1790 signal(SIGUSR1, &signal_handler);
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001791 osmo_init_ignore_signals();
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001792
Harald Welte2c869ef2010-08-25 19:43:54 +02001793 if (daemonize) {
1794 rc = osmo_daemonize();
1795 if (rc < 0) {
1796 perror("Error during daemonize");
1797 exit(1);
1798 }
1799 }
1800
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001801 /* recycle timer */
Holger Hans Peter Freyther30e1ae92010-07-30 02:53:14 +08001802 sccp_set_log_area(DSCCP);
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001803 sccp_close.cb = sccp_close_unconfirmed;
1804 sccp_close.data = NULL;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001805 osmo_timer_schedule(&sccp_close, SCCP_CLOSE_TIME, 0);
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001806
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001807 while (1) {
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001808 osmo_select_main(0);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001809 }
1810
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001811 return 0;
1812}
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001813
1814/* Close all connections handed out to the USSD module */
1815int bsc_close_ussd_connections(struct bsc_nat *nat)
1816{
1817 struct sccp_connections *con;
1818 llist_for_each_entry(con, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +02001819 if (con->con_local != NAT_CON_END_USSD)
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001820 continue;
1821 if (!con->bsc)
1822 continue;
1823
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +02001824 nat_send_clrc_bsc(con);
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001825 nat_send_rlsd_bsc(con);
1826 }
1827
1828 return 0;
1829}