blob: 2950745935d3a3f4f9a3898b9e3a8f2ccba7ba7a [file] [log] [blame]
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001/* BSC Multiplexer/NAT */
2
3/*
4 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
Holger Hans Peter Freytherdf6143a2010-06-15 18:46:56 +08005 * (C) 2010 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
Harald Welted36ff762011-03-23 18:26:56 +010047#include <osmocom/gsm/gsm0808.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010048#include <osmocom/core/talloc.h>
49#include <osmocom/core/process.h>
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +080050
Harald Welted36ff762011-03-23 18:26:56 +010051#include <osmocom/gsm/protocol/gsm_08_08.h>
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080052
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080053#include <osmocom/vty/telnet_interface.h>
54#include <osmocom/vty/vty.h>
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +010055#include <osmocom/vty/logging.h>
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080056
Harald Welted5db12c2010-08-03 15:11:51 +020057#include <osmocom/sccp/sccp.h>
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +080058
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080059#include "../../bscconfig.h"
60
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +080061#define SCCP_CLOSE_TIME 20
62#define SCCP_CLOSE_TIME_TIMEOUT 19
63
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +080064struct log_target *stderr_target;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080065static const char *config_file = "bsc-nat.cfg";
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080066static struct in_addr local_addr;
Holger Hans Peter Freyther2d677c62010-03-26 06:51:04 +010067static struct bsc_fd bsc_listen;
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080068static const char *msc_ip = NULL;
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +080069static struct timer_list sccp_close;
Harald Welte2c869ef2010-08-25 19:43:54 +020070static int daemonize = 0;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +010071
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080072const char *openbsc_copyright =
Holger Hans Peter Freyther5f540752010-09-11 13:32:30 +080073 "Copyright (C) 2010 Holger Hans Peter Freyther and On-Waves\r\n"
Harald Welte9af6ddf2011-01-01 15:25:50 +010074 "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 +080075 "This is free software: you are free to change and redistribute it.\r\n"
76 "There is NO WARRANTY, to the extent permitted by law.\r\n";
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +010077
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080078static struct bsc_nat *nat;
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +080079static 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 +020080static void msc_send_reset(struct bsc_msc_connection *con);
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +080081static void bsc_stat_reject(int filter, struct bsc_connection *bsc, int normal);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080082
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080083struct bsc_config *bsc_config_num(struct bsc_nat *nat, int num)
84{
85 struct bsc_config *conf;
86
87 llist_for_each_entry(conf, &nat->bsc_configs, entry)
88 if (conf->nr == num)
89 return conf;
90
91 return NULL;
92}
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +010093
Holger Hans Peter Freyther9d56d0c2010-04-22 19:11:37 +080094static void queue_for_msc(struct bsc_msc_connection *con, struct msgb *msg)
95{
Holger Hans Peter Freythere8e41e62010-10-06 00:24:28 +080096 if (!con) {
97 LOGP(DINP, LOGL_ERROR, "No MSC Connection assigned. Check your code.\n");
98 msgb_free(msg);
99 return;
100 }
101
102
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800103 if (write_queue_enqueue(&con->write_queue, msg) != 0) {
Holger Hans Peter Freyther9d56d0c2010-04-22 19:11:37 +0800104 LOGP(DINP, LOGL_ERROR, "Failed to enqueue the write.\n");
105 msgb_free(msg);
106 }
107}
108
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100109static void send_reset_ack(struct bsc_connection *bsc)
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100110{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800111 static const uint8_t gsm_reset_ack[] = {
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100112 0x09, 0x00, 0x03, 0x07, 0x0b, 0x04, 0x43, 0x01,
113 0x00, 0xfe, 0x04, 0x43, 0x5c, 0x00, 0xfe, 0x03,
114 0x00, 0x01, 0x31,
115 };
116
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200117 bsc_send_data(bsc, gsm_reset_ack, sizeof(gsm_reset_ack), IPAC_PROTO_SCCP);
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100118}
119
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800120static void send_ping(struct bsc_connection *bsc)
121{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800122 static const uint8_t id_ping[] = {
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800123 IPAC_MSGT_PING,
124 };
125
126 bsc_send_data(bsc, id_ping, sizeof(id_ping), IPAC_PROTO_IPACCESS);
127}
128
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +0800129static void send_pong(struct bsc_connection *bsc)
130{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800131 static const uint8_t id_pong[] = {
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +0800132 IPAC_MSGT_PONG,
133 };
134
135 bsc_send_data(bsc, id_pong, sizeof(id_pong), IPAC_PROTO_IPACCESS);
136}
137
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800138static void bsc_pong_timeout(void *_bsc)
139{
140 struct bsc_connection *bsc = _bsc;
141
142 LOGP(DNAT, LOGL_ERROR, "BSC Nr: %d PONG timeout.\n", bsc->cfg->nr);
143 bsc_close_connection(bsc);
144}
145
146static void bsc_ping_timeout(void *_bsc)
147{
148 struct bsc_connection *bsc = _bsc;
149
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800150 if (bsc->nat->ping_timeout < 0)
151 return;
152
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800153 send_ping(bsc);
154
155 /* send another ping in 20 seconds */
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800156 bsc_schedule_timer(&bsc->ping_timeout, bsc->nat->ping_timeout, 0);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800157
158 /* also start a pong timer */
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800159 bsc_schedule_timer(&bsc->pong_timeout, bsc->nat->pong_timeout, 0);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800160}
161
162static void start_ping_pong(struct bsc_connection *bsc)
163{
164 bsc->pong_timeout.data = bsc;
165 bsc->pong_timeout.cb = bsc_pong_timeout;
166 bsc->ping_timeout.data = bsc;
167 bsc->ping_timeout.cb = bsc_ping_timeout;
168
169 bsc_ping_timeout(bsc);
170}
171
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100172static void send_id_ack(struct bsc_connection *bsc)
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100173{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800174 static const uint8_t id_ack[] = {
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200175 IPAC_MSGT_ID_ACK
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100176 };
177
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200178 bsc_send_data(bsc, id_ack, sizeof(id_ack), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100179}
180
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100181static void send_id_req(struct bsc_connection *bsc)
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100182{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800183 static const uint8_t id_req[] = {
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200184 IPAC_MSGT_ID_GET,
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100185 0x01, IPAC_IDTAG_UNIT,
186 0x01, IPAC_IDTAG_MACADDR,
187 0x01, IPAC_IDTAG_LOCATION1,
188 0x01, IPAC_IDTAG_LOCATION2,
189 0x01, IPAC_IDTAG_EQUIPVERS,
190 0x01, IPAC_IDTAG_SWVERSION,
191 0x01, IPAC_IDTAG_UNITNAME,
192 0x01, IPAC_IDTAG_SERNR,
193 };
194
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200195 bsc_send_data(bsc, id_req, sizeof(id_req), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100196}
197
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200198static struct msgb *nat_create_rlsd(struct sccp_connections *conn)
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200199{
200 struct sccp_connection_released *rel;
201 struct msgb *msg;
202
203 msg = msgb_alloc_headroom(4096, 128, "rlsd");
204 if (!msg) {
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200205 LOGP(DNAT, LOGL_ERROR, "Failed to allocate released.\n");
206 return NULL;
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200207 }
208
209 msg->l2h = msgb_put(msg, sizeof(*rel));
210 rel = (struct sccp_connection_released *) msg->l2h;
211 rel->type = SCCP_MSG_TYPE_RLSD;
212 rel->release_cause = SCCP_RELEASE_CAUSE_SCCP_FAILURE;
213 rel->destination_local_reference = conn->remote_ref;
214 rel->source_local_reference = conn->patched_ref;
215
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200216 return msg;
217}
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200218
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200219static void nat_send_rlsd_ussd(struct bsc_nat *nat, struct sccp_connections *conn)
220{
221 struct msgb *msg;
222
223 if (!nat->ussd_con)
224 return;
225
226 msg = nat_create_rlsd(conn);
227 if (!msg)
228 return;
229
230 bsc_do_write(&nat->ussd_con->queue, msg, IPAC_PROTO_SCCP);
231}
232
233static void nat_send_rlsd_msc(struct sccp_connections *conn)
234{
235 struct msgb *msg;
236
237 msg = nat_create_rlsd(conn);
238 if (!msg)
239 return;
240
241 ipaccess_prepend_header(msg, IPAC_PROTO_SCCP);
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800242 queue_for_msc(conn->msc_con, msg);
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200243}
244
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +0200245static void nat_send_rlsd_bsc(struct sccp_connections *conn)
246{
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +0200247 struct msgb *msg;
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200248 struct sccp_connection_released *rel;
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +0200249
250 msg = msgb_alloc_headroom(4096, 128, "rlsd");
251 if (!msg) {
252 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
253 return;
254 }
255
256 msg->l2h = msgb_put(msg, sizeof(*rel));
257 rel = (struct sccp_connection_released *) msg->l2h;
258 rel->type = SCCP_MSG_TYPE_RLSD;
259 rel->release_cause = SCCP_RELEASE_CAUSE_SCCP_FAILURE;
260 rel->destination_local_reference = conn->real_ref;
261 rel->source_local_reference = conn->remote_ref;
262
263 bsc_write(conn->bsc, msg, IPAC_PROTO_SCCP);
264}
265
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200266static struct msgb *nat_creat_clrc(struct sccp_connections *conn, uint8_t cause)
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200267{
268 struct msgb *msg;
269 struct msgb *sccp;
270
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200271 msg = gsm0808_create_clear_command(cause);
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200272 if (!msg) {
273 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200274 return NULL;
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200275 }
276
277 sccp = sccp_create_dt1(&conn->real_ref, msg->data, msg->len);
278 if (!sccp) {
279 LOGP(DNAT, LOGL_ERROR, "Failed to allocate SCCP msg.\n");
280 msgb_free(msg);
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200281 return NULL;
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200282 }
283
284 msgb_free(msg);
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200285 return sccp;
286}
287
288static int nat_send_clrc_bsc(struct sccp_connections *conn)
289{
290 struct msgb *sccp;
291
292 sccp = nat_creat_clrc(conn, 0x20);
293 if (!sccp)
294 return -1;
295 return bsc_write(conn->bsc, sccp, IPAC_PROTO_SCCP);
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +0200296}
297
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800298static void nat_send_rlc(struct bsc_msc_connection *msc_con,
299 struct sccp_source_reference *src,
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200300 struct sccp_source_reference *dst)
301{
302 struct sccp_connection_release_complete *rlc;
303 struct msgb *msg;
304
305 msg = msgb_alloc_headroom(4096, 128, "rlc");
306 if (!msg) {
307 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
308 return;
309 }
310
311 msg->l2h = msgb_put(msg, sizeof(*rlc));
312 rlc = (struct sccp_connection_release_complete *) msg->l2h;
313 rlc->type = SCCP_MSG_TYPE_RLC;
314 rlc->destination_local_reference = *dst;
315 rlc->source_local_reference = *src;
316
317 ipaccess_prepend_header(msg, IPAC_PROTO_SCCP);
318
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800319 queue_for_msc(msc_con, msg);
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200320}
321
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +0200322static void send_mgcp_reset(struct bsc_connection *bsc)
323{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800324 static const uint8_t mgcp_reset[] = {
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +0200325 "RSIP 1 13@mgw MGCP 1.0\r\n"
326 };
327
328 bsc_write_mgcp(bsc, mgcp_reset, sizeof mgcp_reset - 1);
329}
330
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100331/*
332 * Below is the handling of messages coming
333 * from the MSC and need to be forwarded to
334 * a real BSC.
335 */
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800336static void initialize_msc_if_needed(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100337{
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800338 if (msc_con->first_contact)
Holger Hans Peter Freytherb7527612010-04-07 11:20:36 +0200339 return;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100340
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800341 msc_con->first_contact = 1;
342 msc_send_reset(msc_con);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100343}
344
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800345static void send_id_get_response(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800346{
347 struct msgb *msg = bsc_msc_id_get_resp(nat->token);
348 if (!msg)
349 return;
350
351 ipaccess_prepend_header(msg, IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800352 queue_for_msc(msc_con, msg);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800353}
354
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100355/*
356 * Currently we are lacking refcounting so we need to copy each message.
357 */
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800358static 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 +0100359{
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100360 struct msgb *msg;
361
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200362 if (length > 4096 - 128) {
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100363 LOGP(DINP, LOGL_ERROR, "Can not send message of that size.\n");
364 return;
365 }
366
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200367 msg = msgb_alloc_headroom(4096, 128, "to-bsc");
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100368 if (!msg) {
369 LOGP(DINP, LOGL_ERROR, "Failed to allocate memory for BSC msg.\n");
370 return;
371 }
372
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200373 msg->l2h = msgb_put(msg, length);
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100374 memcpy(msg->data, data, length);
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200375
376 bsc_write(bsc, msg, proto);
Holger Hans Peter Freytherf7cb33c2010-03-26 07:20:59 +0100377}
378
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800379/*
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +0800380 * Update the release statistics
381 */
382static void bsc_stat_reject(int filter, struct bsc_connection *bsc, int normal)
383{
384 if (!bsc->cfg) {
385 LOGP(DNAT, LOGL_ERROR, "BSC is not authenticated.");
386 return;
387 }
388
389 if (filter >= 0) {
390 LOGP(DNAT, LOGL_ERROR, "Connection was not rejected");
391 return;
392 }
393
394 if (filter == -1)
395 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_ILL_PACKET]);
396 else if (normal)
397 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_REJECTED_MSG]);
398 else
399 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_REJECTED_CR]);
400}
401
402/*
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800403 * Release an established connection. We will have to release it to the BSC
404 * and to the network and we do it the following way.
405 * 1.) Give up on the MSC side
406 * 1.1) Send a RLSD message, it is a bit non standard but should work, we
407 * ignore the RLC... we might complain about it. Other options would
408 * be to send a Release Request, handle the Release Complete..
409 * 1.2) Mark the data structure to be con_local and wait for 2nd
410 *
411 * 2.) Give up on the BSC side
412 * 2.1) Depending on the con type reject the service, or just close it
413 */
414static void bsc_send_con_release(struct bsc_connection *bsc, struct sccp_connections *con)
415{
416 struct msgb *rlsd;
417 /* 1. release the network */
418 rlsd = sccp_create_rlsd(&con->patched_ref, &con->remote_ref,
419 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
420 if (!rlsd)
421 LOGP(DNAT, LOGL_ERROR, "Failed to create RLSD message.\n");
422 else {
423 ipaccess_prepend_header(rlsd, IPAC_PROTO_SCCP);
424 queue_for_msc(con->msc_con, rlsd);
425 }
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +0200426 con->con_local = NAT_CON_END_LOCAL;
Holger Hans Peter Freythereea5a1b2010-09-16 06:41:09 +0800427 con->msc_con = NULL;
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800428
429 /* 2. release the BSC side */
430 if (con->con_type == NAT_CON_TYPE_LU) {
431 struct msgb *payload, *udt;
432 payload = gsm48_create_loc_upd_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
433
434 if (payload) {
435 gsm0808_prepend_dtap_header(payload, 0);
436 udt = sccp_create_dt1(&con->real_ref, payload->data, payload->len);
437 if (udt)
438 bsc_write(bsc, udt, IPAC_PROTO_SCCP);
439 else
440 LOGP(DNAT, LOGL_ERROR, "Failed to create DT1\n");
441
442 msgb_free(payload);
443 } else {
444 LOGP(DNAT, LOGL_ERROR, "Failed to allocate LU Reject.\n");
445 }
446 }
447
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200448 nat_send_clrc_bsc(con);
449
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800450 rlsd = sccp_create_rlsd(&con->remote_ref, &con->real_ref,
451 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
452 if (!rlsd) {
453 LOGP(DNAT, LOGL_ERROR, "Failed to allocate RLSD for the BSC.\n");
454 sccp_connection_destroy(con);
455 return;
456 }
457
458 con->con_type = NAT_CON_TYPE_LOCAL_REJECT;
459 bsc_write(bsc, rlsd, IPAC_PROTO_SCCP);
460}
461
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800462static void bsc_send_con_refuse(struct bsc_connection *bsc,
463 struct bsc_nat_parsed *parsed, int con_type)
464{
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800465 struct msgb *payload;
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800466 struct msgb *refuse;
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800467
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800468 if (con_type == NAT_CON_TYPE_LU)
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800469 payload = gsm48_create_loc_upd_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800470 else if (con_type == NAT_CON_TYPE_CM_SERV_REQ)
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800471 payload = gsm48_create_mm_serv_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
Holger Hans Peter Freyther8d7b10e2010-07-23 19:43:12 +0800472 else {
473 LOGP(DNAT, LOGL_ERROR, "Unknown connection type: %d\n", con_type);
474 payload = NULL;
475 }
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800476
477 /*
478 * Some BSCs do not handle the payload inside a SCCP CREF msg
479 * so we will need to:
480 * 1.) Allocate a local connection and mark it as local..
481 * 2.) queue data for downstream.. and the RLC should delete everything
482 */
483 if (payload) {
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200484 struct msgb *cc, *udt, *clear, *rlsd;
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800485 struct sccp_connections *con;
486 con = create_sccp_src_ref(bsc, parsed);
487 if (!con)
488 goto send_refuse;
489
490 /* declare it local and assign a unique remote_ref */
491 con->con_type = NAT_CON_TYPE_LOCAL_REJECT;
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +0200492 con->con_local = NAT_CON_END_LOCAL;
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800493 con->has_remote_ref = 1;
494 con->remote_ref = con->patched_ref;
495
496 /* 1. create a confirmation */
497 cc = sccp_create_cc(&con->remote_ref, &con->real_ref);
498 if (!cc)
499 goto send_refuse;
500
501 /* 2. create the DT1 */
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800502 gsm0808_prepend_dtap_header(payload, 0);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800503 udt = sccp_create_dt1(&con->real_ref, payload->data, payload->len);
504 if (!udt) {
505 msgb_free(cc);
506 goto send_refuse;
507 }
508
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200509 /* 3. send a Clear Command */
510 clear = nat_creat_clrc(con, 0x20);
511 if (!clear) {
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800512 msgb_free(cc);
513 msgb_free(udt);
514 goto send_refuse;
515 }
516
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200517 /* 4. send a RLSD */
518 rlsd = sccp_create_rlsd(&con->remote_ref, &con->real_ref,
519 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
520 if (!rlsd) {
521 msgb_free(cc);
522 msgb_free(udt);
523 msgb_free(clear);
524 goto send_refuse;
525 }
526
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800527 bsc_write(bsc, cc, IPAC_PROTO_SCCP);
528 bsc_write(bsc, udt, IPAC_PROTO_SCCP);
Holger Hans Peter Freyther43eb1a32010-10-29 17:05:28 +0200529 bsc_write(bsc, clear, IPAC_PROTO_SCCP);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800530 bsc_write(bsc, rlsd, IPAC_PROTO_SCCP);
531 msgb_free(payload);
532 return;
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800533 }
534
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800535
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800536send_refuse:
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800537 if (payload)
538 msgb_free(payload);
539
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800540 refuse = sccp_create_refuse(parsed->src_local_ref,
541 SCCP_REFUSAL_SCCP_FAILURE, NULL, 0);
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800542 if (!refuse) {
543 LOGP(DNAT, LOGL_ERROR,
544 "Creating refuse msg failed for SCCP 0x%x on BSC Nr: %d.\n",
545 sccp_src_ref_to_int(parsed->src_local_ref), bsc->cfg->nr);
546 return;
547 }
548
549 bsc_write(bsc, refuse, IPAC_PROTO_SCCP);
550}
551
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200552/*
553 * Update the auth status. This can be either a CIPHER MODE COMAMND or
554 * a CM Serivce Accept. Maybe also LU Accept or such in the future.
555 */
556static void update_con_authorize(struct sccp_connections *con,
557 struct bsc_nat_parsed *parsed,
558 struct msgb *msg)
559{
560 if (!con)
561 return;
562 if (con->authorized)
563 return;
564
565 if (parsed->bssap == BSSAP_MSG_BSS_MANAGEMENT &&
566 parsed->gsm_type == BSS_MAP_MSG_CIPHER_MODE_CMD) {
567 con->authorized = 1;
568 } else if (parsed->bssap == BSSAP_MSG_DTAP) {
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200569 uint8_t msg_type, proto;
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200570 uint32_t len;
571 struct gsm48_hdr *hdr48;
572 hdr48 = bsc_unpack_dtap(parsed, msg, &len);
573 if (!hdr48)
574 return;
575
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200576 proto = hdr48->proto_discr & 0x0f;
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200577 msg_type = hdr48->msg_type & 0xbf;
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200578 if (proto == GSM48_PDISC_MM &&
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200579 msg_type == GSM48_MT_MM_CM_SERV_ACC)
580 con->authorized = 1;
581 }
582}
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800583
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800584static int forward_sccp_to_bts(struct bsc_msc_connection *msc_con, struct msgb *msg)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100585{
Holger Hans Peter Freyther8d7b10e2010-07-23 19:43:12 +0800586 struct sccp_connections *con = NULL;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800587 struct bsc_connection *bsc;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800588 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200589 int proto;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100590
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100591 /* filter, drop, patch the message? */
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800592 parsed = bsc_nat_parse(msg);
593 if (!parsed) {
594 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100595 return -1;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800596 }
597
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100598 if (bsc_nat_filter_ipa(DIR_BSC, msg, parsed))
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800599 goto exit;
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800600
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200601 proto = parsed->ipa_proto;
602
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100603 /* Route and modify the SCCP packet */
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200604 if (proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100605 switch (parsed->sccp_type) {
606 case SCCP_MSG_TYPE_UDT:
607 /* forward UDT messages to every BSC */
608 goto send_to_all;
609 break;
610 case SCCP_MSG_TYPE_RLSD:
Holger Hans Peter Freyther0b03f162011-04-21 17:13:51 +0200611 if (con && con->con_local == NAT_CON_END_USSD) {
612 LOGP(DNAT, LOGL_NOTICE, "RLSD for a USSD connection. Ignoring.\n");
613 con = NULL;
614 }
615 /* fall through */
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100616 case SCCP_MSG_TYPE_CREF:
617 case SCCP_MSG_TYPE_DT1:
Holger Hans Peter Freytherf46ce532010-04-06 10:22:34 +0200618 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800619 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800620 if (parsed->gsm_type == BSS_MAP_MSG_ASSIGMENT_RQST) {
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200621 counter_inc(nat->stats.sccp.calls);
622
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800623 if (con) {
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800624 struct rate_ctr_group *ctrg;
625 ctrg = con->bsc->cfg->stats.ctrg;
626 rate_ctr_inc(&ctrg->ctr[BCFG_CTR_SCCP_CALLS]);
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800627 if (bsc_mgcp_assign_patch(con, msg) != 0)
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800628 LOGP(DNAT, LOGL_ERROR, "Failed to assign...\n");
629 } else
630 LOGP(DNAT, LOGL_ERROR, "Assignment command but no BSC.\n");
Holger Hans Peter Freyther0b03f162011-04-21 17:13:51 +0200631 } else if (con && con->con_local == NAT_CON_END_USSD &&
632 parsed->gsm_type == BSS_MAP_MSG_CLEAR_CMD) {
633 LOGP(DNAT, LOGL_NOTICE, "Clear Command for USSD Connection. Ignoring.\n");
634 con = NULL;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800635 }
Holger Hans Peter Freyther16a6f702010-03-29 17:18:42 +0200636 break;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100637 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800638 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
639 if (!con || update_sccp_src_ref(con, parsed) != 0)
Holger Hans Peter Freyther16a6f702010-03-29 17:18:42 +0200640 goto exit;
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800641 break;
642 case SCCP_MSG_TYPE_RLC:
643 LOGP(DNAT, LOGL_ERROR, "Unexpected release complete from MSC.\n");
644 goto exit;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100645 break;
646 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100647 /* MSC never opens a SCCP connection, fall through */
648 default:
649 goto exit;
650 }
Holger Hans Peter Freytherf464ea52010-04-06 16:07:44 +0200651
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200652 if (!con && parsed->sccp_type == SCCP_MSG_TYPE_RLSD) {
653 LOGP(DNAT, LOGL_NOTICE, "Sending fake RLC on RLSD message to network.\n");
654 /* Exchange src/dest for the reply */
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800655 nat_send_rlc(msc_con, parsed->dest_local_ref, parsed->src_local_ref);
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200656 } else if (!con)
Holger Hans Peter Freyther5f10c6d2010-05-15 19:13:52 +0800657 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 +0100658 }
659
660 talloc_free(parsed);
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800661 if (!con)
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100662 return -1;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800663 if (!con->bsc->authenticated) {
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +0800664 LOGP(DNAT, LOGL_ERROR, "Selected BSC not authenticated.\n");
Holger Hans Peter Freyther3f37b8f2010-02-08 23:24:32 +0100665 return -1;
666 }
667
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200668 update_con_authorize(con, parsed, msg);
669
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200670 bsc_send_data(con->bsc, msg->l2h, msgb_l2len(msg), proto);
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100671 return 0;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100672
673send_to_all:
Holger Hans Peter Freyther45d11812010-06-15 18:46:36 +0800674 /*
675 * Filter Paging from the network. We do not want to send a PAGING
676 * Command to every BSC in our network. We will analys the PAGING
677 * message and then send it to the authenticated messages...
678 */
679 if (parsed->ipa_proto == IPAC_PROTO_SCCP && parsed->gsm_type == BSS_MAP_MSG_PAGING) {
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200680 int lac;
681 bsc = bsc_nat_find_bsc(nat, msg, &lac);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800682 if (bsc && bsc->cfg->forbid_paging)
Holger Hans Peter Freythera34585e2010-04-21 20:17:18 +0800683 LOGP(DNAT, LOGL_DEBUG, "Paging forbidden for BTS: %d\n", bsc->cfg->nr);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800684 else if (bsc)
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200685 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freytherda340632010-08-06 20:15:40 +0800686 else if (lac != -1)
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200687 LOGP(DNAT, LOGL_ERROR, "Could not determine BSC for paging on lac: %d/0x%x\n",
688 lac, lac);
Holger Hans Peter Freyther45d11812010-06-15 18:46:36 +0800689
690 goto exit;
691 }
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100692 /* currently send this to every BSC connected */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800693 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther3f37b8f2010-02-08 23:24:32 +0100694 if (!bsc->authenticated)
695 continue;
696
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200697 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100698 }
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800699
700exit:
701 talloc_free(parsed);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100702 return 0;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100703}
704
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800705static void msc_connection_was_lost(struct bsc_msc_connection *con)
706{
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200707 struct bsc_connection *bsc, *tmp;
708
709 LOGP(DMSC, LOGL_ERROR, "Closing all connections downstream.\n");
710 llist_for_each_entry_safe(bsc, tmp, &nat->bsc_connections, list_entry)
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800711 bsc_close_connection(bsc);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200712
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200713 bsc_mgcp_free_endpoints(nat);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200714 bsc_msc_schedule_connect(con);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800715}
716
Holger Hans Peter Freythera99c5b92010-08-04 02:31:55 +0800717static void msc_connection_connected(struct bsc_msc_connection *con)
718{
719 counter_inc(nat->stats.msc.reconn);
720}
721
Holger Hans Peter Freyther02aee142010-04-08 10:31:07 +0200722static void msc_send_reset(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200723{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800724 static const uint8_t reset[] = {
Holger Hans Peter Freyther7cab1662010-04-07 11:11:11 +0200725 0x00, 0x12, 0xfd,
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200726 0x09, 0x00, 0x03, 0x05, 0x07, 0x02, 0x42, 0xfe,
727 0x02, 0x42, 0xfe, 0x06, 0x00, 0x04, 0x30, 0x04,
728 0x01, 0x20
729 };
730
731 struct msgb *msg;
732
733 msg = msgb_alloc_headroom(4096, 128, "08.08 reset");
734 if (!msg) {
735 LOGP(DMSC, LOGL_ERROR, "Failed to allocate reset msg.\n");
736 return;
737 }
738
739 msg->l2h = msgb_put(msg, sizeof(reset));
740 memcpy(msg->l2h, reset, msgb_l2len(msg));
741
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800742 queue_for_msc(msc_con, msg);
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200743
744 LOGP(DMSC, LOGL_NOTICE, "Scheduled GSM0808 reset msg for the MSC.\n");
745}
746
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800747static int ipaccess_msc_read_cb(struct bsc_fd *bfd)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100748{
749 int error;
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800750 struct bsc_msc_connection *msc_con;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100751 struct msgb *msg = ipaccess_read_msg(bfd, &error);
752 struct ipaccess_head *hh;
753
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800754 msc_con = (struct bsc_msc_connection *) bfd->data;
755
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100756 if (!msg) {
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800757 if (error == 0)
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +0100758 LOGP(DNAT, LOGL_FATAL, "The connection the MSC was lost, exiting\n");
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800759 else
760 LOGP(DNAT, LOGL_ERROR, "Failed to parse ip access message: %d\n", error);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100761
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800762 bsc_msc_lost(msc_con);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100763 return -1;
764 }
765
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +0100766 LOGP(DNAT, LOGL_DEBUG, "MSG from MSC: %s proto: %d\n", hexdump(msg->data, msg->len), msg->l2h[0]);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100767
768 /* handle base message handling */
769 hh = (struct ipaccess_head *) msg->data;
770 ipaccess_rcvmsg_base(msg, bfd);
771
772 /* initialize the networking. This includes sending a GSM08.08 message */
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800773 if (hh->proto == IPAC_PROTO_IPACCESS) {
774 if (msg->l2h[0] == IPAC_MSGT_ID_ACK)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800775 initialize_msc_if_needed(msc_con);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800776 else if (msg->l2h[0] == IPAC_MSGT_ID_GET)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800777 send_id_get_response(msc_con);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800778 } else if (hh->proto == IPAC_PROTO_SCCP)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800779 forward_sccp_to_bts(msc_con, msg);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100780
Holger Hans Peter Freytheraad68b52010-06-15 18:46:48 +0800781 msgb_free(msg);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100782 return 0;
783}
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +0800784
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800785static int ipaccess_msc_write_cb(struct bsc_fd *bfd, struct msgb *msg)
786{
787 int rc;
788 rc = write(bfd->fd, msg->data, msg->len);
789
790 if (rc != msg->len) {
791 LOGP(DNAT, LOGL_ERROR, "Failed to write MSG to MSC.\n");
792 return -1;
793 }
794
795 return rc;
796}
797
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100798/*
799 * Below is the handling of messages coming
800 * from the BSC and need to be forwarded to
801 * a real BSC.
802 */
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100803
804/*
805 * Remove the connection from the connections list,
806 * remove it from the patching of SCCP header lists
807 * as well. Maybe in the future even close connection..
808 */
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800809void bsc_close_connection(struct bsc_connection *connection)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100810{
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100811 struct sccp_connections *sccp_patch, *tmp;
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800812 struct rate_ctr *ctr = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100813
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800814 /* stop the timeout timer */
815 bsc_del_timer(&connection->id_timeout);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800816 bsc_del_timer(&connection->ping_timeout);
817 bsc_del_timer(&connection->pong_timeout);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800818
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800819 if (connection->cfg)
820 ctr = &connection->cfg->stats.ctrg->ctr[BCFG_CTR_DROPPED_SCCP];
821
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100822 /* remove all SCCP connections */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800823 llist_for_each_entry_safe(sccp_patch, tmp, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100824 if (sccp_patch->bsc != connection)
825 continue;
826
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800827 if (ctr)
828 rate_ctr_inc(ctr);
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200829 if (sccp_patch->has_remote_ref) {
830 if (sccp_patch->con_local == NAT_CON_END_MSC)
831 nat_send_rlsd_msc(sccp_patch);
832 else if (sccp_patch->con_local == NAT_CON_END_USSD)
833 nat_send_rlsd_ussd(nat, sccp_patch);
834 }
835
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200836 sccp_connection_destroy(sccp_patch);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100837 }
838
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +0200839 /* close endpoints allocated by this BSC */
840 bsc_mgcp_clear_endpoints_for(connection);
841
Holger Hans Peter Freythere464ed42010-04-22 12:04:36 +0800842 bsc_unregister_fd(&connection->write_queue.bfd);
843 close(connection->write_queue.bfd.fd);
844 write_queue_clear(&connection->write_queue);
845 llist_del(&connection->list_entry);
846
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100847 talloc_free(connection);
848}
849
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800850static void ipaccess_close_bsc(void *data)
851{
Holger Hans Peter Freyther6d5a6002010-04-17 07:58:17 +0200852 struct sockaddr_in sock;
853 socklen_t len = sizeof(sock);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800854 struct bsc_connection *conn = data;
855
Holger Hans Peter Freyther6d5a6002010-04-17 07:58:17 +0200856
857 getpeername(conn->write_queue.bfd.fd, (struct sockaddr *) &sock, &len);
858 LOGP(DNAT, LOGL_ERROR, "BSC on %s didn't respond to identity request. Closing.\n",
859 inet_ntoa(sock.sin_addr));
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800860 bsc_close_connection(conn);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800861}
862
863static void ipaccess_auth_bsc(struct tlv_parsed *tvp, struct bsc_connection *bsc)
864{
865 struct bsc_config *conf;
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +0800866 const char *token = (const char *) TLVP_VAL(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freythera09b9662010-10-14 17:19:58 +0200867 const int len = TLVP_LEN(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800868
Holger Hans Peter Freyther5cdcfa62010-05-02 18:58:10 +0800869 if (bsc->cfg) {
870 LOGP(DNAT, LOGL_ERROR, "Reauth on fd %d bsc nr %d\n",
871 bsc->write_queue.bfd.fd, bsc->cfg->nr);
872 return;
873 }
874
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800875 llist_for_each_entry(conf, &bsc->nat->bsc_configs, entry) {
Holger Hans Peter Freythera09b9662010-10-14 17:19:58 +0200876 if (strncmp(conf->token, token, len) == 0) {
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800877 rate_ctr_inc(&conf->stats.ctrg->ctr[BCFG_CTR_NET_RECONN]);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800878 bsc->authenticated = 1;
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200879 bsc->cfg = conf;
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800880 bsc_del_timer(&bsc->id_timeout);
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800881 LOGP(DNAT, LOGL_NOTICE, "Authenticated bsc nr: %d on fd %d\n",
882 conf->nr, bsc->write_queue.bfd.fd);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800883 start_ping_pong(bsc);
Holger Hans Peter Freytherc615c262010-04-17 07:59:57 +0200884 return;
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800885 }
886 }
Holger Hans Peter Freytherc615c262010-04-17 07:59:57 +0200887
Holger Hans Peter Freyther74cfab72010-05-05 17:03:44 +0800888 LOGP(DNAT, LOGL_ERROR, "No bsc found for token %s on fd: %d.\n", token,
889 bsc->write_queue.bfd.fd);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800890}
891
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +0800892static void handle_con_stats(struct sccp_connections *con)
893{
894 struct rate_ctr_group *ctrg;
895 int id = bsc_conn_type_to_ctr(con);
896
897 if (id == -1)
898 return;
899
900 if (!con->bsc || !con->bsc->cfg)
901 return;
902
903 ctrg = con->bsc->cfg->stats.ctrg;
904 rate_ctr_inc(&ctrg->ctr[id]);
905}
906
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +0100907static int forward_sccp_to_msc(struct bsc_connection *bsc, struct msgb *msg)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100908{
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +0800909 int con_filter = 0;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800910 char *imsi = NULL;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800911 struct bsc_msc_connection *con_msc = NULL;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800912 struct bsc_connection *con_bsc = NULL;
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800913 int con_type;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800914 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100915
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800916 /* Parse and filter messages */
917 parsed = bsc_nat_parse(msg);
918 if (!parsed) {
919 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freytherd7657ff2010-03-30 07:35:46 +0200920 msgb_free(msg);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800921 return -1;
922 }
923
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100924 if (bsc_nat_filter_ipa(DIR_MSC, msg, parsed))
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800925 goto exit;
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800926
Holger Hans Peter Freytherbbb9d392010-04-02 03:42:44 +0200927 /*
928 * check authentication after filtering to not reject auth
929 * responses coming from the BSC. We have to make sure that
930 * nothing from the exit path will forward things to the MSC
931 */
932 if (!bsc->authenticated) {
933 LOGP(DNAT, LOGL_ERROR, "BSC is not authenticated.\n");
934 msgb_free(msg);
935 return -1;
936 }
937
938
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100939 /* modify the SCCP entries */
940 if (parsed->ipa_proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther3837f992010-09-15 00:38:54 +0800941 int filter;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800942 struct sccp_connections *con;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100943 switch (parsed->sccp_type) {
944 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800945 filter = bsc_nat_filter_sccp_cr(bsc, msg, parsed, &con_type, &imsi);
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +0800946 if (filter < 0) {
947 bsc_stat_reject(filter, bsc, 0);
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800948 goto exit3;
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +0800949 }
950
Holger Hans Peter Freytherfa20c942010-05-16 16:51:31 +0800951 if (!create_sccp_src_ref(bsc, parsed))
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100952 goto exit2;
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +0800953 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther3a77e612010-07-05 13:33:18 +0800954 con->msc_con = bsc->nat->msc_con;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800955 con_msc = con->msc_con;
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800956 con->con_type = con_type;
Holger Hans Peter Freyther909e61f2010-09-15 00:41:19 +0800957 con->imsi_checked = filter;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800958 if (imsi)
959 con->imsi = talloc_steal(con, imsi);
960 imsi = NULL;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800961 con_bsc = con->bsc;
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +0800962 handle_con_stats(con);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100963 break;
964 case SCCP_MSG_TYPE_RLSD:
965 case SCCP_MSG_TYPE_CREF:
966 case SCCP_MSG_TYPE_DT1:
967 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freytherf46ce532010-04-06 10:22:34 +0200968 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +0800969 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800970 if (con) {
Holger Hans Peter Freyther0c41b692010-10-06 00:48:36 +0800971 /* only filter non local connections */
972 if (!con->con_local) {
973 filter = bsc_nat_filter_dt(bsc, msg, con, parsed);
974 if (filter < 0) {
975 bsc_stat_reject(filter, bsc, 1);
976 bsc_send_con_release(bsc, con);
977 con = NULL;
978 goto exit2;
979 }
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800980
981 /* hand data to a side channel */
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200982 if (bsc_check_ussd(con, parsed, msg) == 1)
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +0200983 con->con_local = NAT_CON_END_USSD;
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +0200984
985 /*
986 * Optionally rewrite setup message. This can
987 * replace the msg and the parsed structure becomes
988 * invalid.
989 */
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200990 msg = bsc_nat_rewrite_setup(bsc->nat, msg, parsed, con->imsi);
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +0200991 talloc_free(parsed);
992 parsed = NULL;
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200993 } else if (con->con_local == NAT_CON_END_USSD) {
994 bsc_check_ussd(con, parsed, msg);
Holger Hans Peter Freyther74e0a1b2010-09-15 01:11:08 +0800995 }
Holger Hans Peter Freyther0c41b692010-10-06 00:48:36 +0800996
997 con_bsc = con->bsc;
998 con_msc = con->msc_con;
999 con_filter = con->con_local;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001000 }
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +08001001
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001002 break;
1003 case SCCP_MSG_TYPE_RLC:
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +08001004 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001005 if (con) {
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001006 con_bsc = con->bsc;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001007 con_msc = con->msc_con;
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +08001008 con_filter = con->con_local;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +08001009 }
Holger Hans Peter Freytherf4cfc4f2010-03-31 09:15:05 +02001010 remove_sccp_src_ref(bsc, msg, parsed);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001011 break;
1012 case SCCP_MSG_TYPE_UDT:
1013 /* simply forward everything */
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +08001014 con = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001015 break;
1016 default:
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +08001017 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 +08001018 con = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001019 goto exit2;
1020 break;
1021 }
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +01001022 } else if (parsed->ipa_proto == IPAC_PROTO_MGCP_OLD) {
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +02001023 bsc_mgcp_forward(bsc, msg);
1024 goto exit2;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +08001025 } else {
1026 LOGP(DNAT, LOGL_ERROR, "Not forwarding unknown stream id: 0x%x\n", parsed->ipa_proto);
1027 goto exit2;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001028 }
1029
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001030 if (con_msc && con_bsc != bsc) {
Holger Hans Peter Freytherca0c2f92010-04-21 18:49:55 +08001031 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 +08001032 bsc->cfg->nr, con_bsc->cfg->nr);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001033 goto exit2;
1034 }
1035
Holger Hans Peter Freyther09ecda42010-09-15 17:39:44 +08001036 /* do not forward messages to the MSC */
1037 if (con_filter)
1038 goto exit2;
1039
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001040 if (!con_msc) {
Holger Hans Peter Freyther27640fc2010-09-15 00:14:48 +08001041 LOGP(DNAT, LOGL_ERROR, "Not forwarding data bsc_nr: %d ipa: %d type: 0x%x\n",
1042 bsc->cfg->nr,
1043 parsed ? parsed->ipa_proto : -1,
1044 parsed ? parsed->sccp_type : -1);
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001045 goto exit2;
1046 }
1047
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001048 /* send the non-filtered but maybe modified msg */
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001049 queue_for_msc(con_msc, msg);
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +02001050 if (parsed)
1051 talloc_free(parsed);
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +08001052 return 0;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +08001053
1054exit:
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +01001055 /* if we filter out the reset send an ack to the BSC */
1056 if (parsed->bssap == 0 && parsed->gsm_type == BSS_MAP_MSG_RESET) {
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001057 send_reset_ack(bsc);
1058 send_reset_ack(bsc);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001059 } else if (parsed->ipa_proto == IPAC_PROTO_IPACCESS) {
1060 /* do we know who is handling this? */
1061 if (msg->l2h[0] == IPAC_MSGT_ID_RESP) {
1062 struct tlv_parsed tvp;
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +02001063 int ret;
1064 ret = ipaccess_idtag_parse(&tvp,
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001065 (unsigned char *) msg->l2h + 2,
1066 msgb_l2len(msg) - 2);
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +02001067 if (ret < 0) {
1068 LOGP(DNAT, LOGL_ERROR, "ignoring IPA response "
1069 "message with malformed TLVs\n");
1070 return ret;
1071 }
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001072 if (TLVP_PRESENT(&tvp, IPAC_IDTAG_UNITNAME))
1073 ipaccess_auth_bsc(&tvp, bsc);
1074 }
1075
1076 goto exit2;
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +01001077 }
1078
Holger Hans Peter Freyther1498d2e2010-05-15 00:29:50 +08001079exit2:
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +08001080 if (imsi)
1081 talloc_free(imsi);
Holger Hans Peter Freyther1498d2e2010-05-15 00:29:50 +08001082 talloc_free(parsed);
1083 msgb_free(msg);
1084 return -1;
1085
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +08001086exit3:
1087 /* send a SCCP Connection Refused */
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +08001088 if (imsi)
1089 talloc_free(imsi);
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +08001090 bsc_send_con_refuse(bsc, parsed, con_type);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +08001091 talloc_free(parsed);
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +08001092 msgb_free(msg);
1093 return -1;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001094}
1095
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001096static int ipaccess_bsc_read_cb(struct bsc_fd *bfd)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001097{
1098 int error;
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001099 struct bsc_connection *bsc = bfd->data;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001100 struct msgb *msg = ipaccess_read_msg(bfd, &error);
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001101 struct ipaccess_head *hh;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001102
1103 if (!msg) {
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001104 if (error == 0)
Holger Hans Peter Freyther19c35442010-05-01 10:37:15 +08001105 LOGP(DNAT, LOGL_ERROR,
1106 "The connection to the BSC Nr: %d was lost. Cleaning it\n",
1107 bsc->cfg ? bsc->cfg->nr : -1);
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001108 else
Holger Hans Peter Freyther19c35442010-05-01 10:37:15 +08001109 LOGP(DNAT, LOGL_ERROR,
1110 "Stream error on BSC Nr: %d. Failed to parse ip access message: %d\n",
1111 bsc->cfg ? bsc->cfg->nr : -1, error);
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001112
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +08001113 bsc_close_connection(bsc);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001114 return -1;
1115 }
1116
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001117
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001118 LOGP(DNAT, LOGL_DEBUG, "MSG from BSC: %s proto: %d\n", hexdump(msg->data, msg->len), msg->l2h[0]);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001119
1120 /* Handle messages from the BSC */
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001121 hh = (struct ipaccess_head *) msg->data;
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001122
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001123 /* stop the pong timeout */
1124 if (hh->proto == IPAC_PROTO_IPACCESS) {
1125 if (msg->l2h[0] == IPAC_MSGT_PONG) {
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001126 bsc_del_timer(&bsc->pong_timeout);
1127 msgb_free(msg);
1128 return 0;
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001129 } else if (msg->l2h[0] == IPAC_MSGT_PING) {
1130 send_pong(bsc);
1131 msgb_free(msg);
1132 return 0;
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001133 }
1134 }
1135
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001136 /* FIXME: Currently no PONG is sent to the BSC */
1137 /* FIXME: Currently no ID ACK is sent to the BSC */
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001138 forward_sccp_to_msc(bsc, msg);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001139
1140 return 0;
1141}
1142
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001143static int ipaccess_listen_bsc_cb(struct bsc_fd *bfd, unsigned int what)
1144{
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001145 struct bsc_connection *bsc;
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001146 int fd, rc, on;
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001147 struct sockaddr_in sa;
1148 socklen_t sa_len = sizeof(sa);
1149
1150 if (!(what & BSC_FD_READ))
1151 return 0;
1152
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001153 fd = accept(bfd->fd, (struct sockaddr *) &sa, &sa_len);
1154 if (fd < 0) {
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001155 perror("accept");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001156 return fd;
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001157 }
1158
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +02001159 /* count the reconnect */
1160 counter_inc(nat->stats.bsc.reconn);
1161
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001162 /*
1163 * if we are not connected to a msc... just close the socket
1164 */
Holger Hans Peter Freyther20ee3122010-07-05 14:39:44 +08001165 if (!bsc_nat_msc_is_connected(nat)) {
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001166 LOGP(DNAT, LOGL_NOTICE, "Disconnecting BSC due lack of MSC connection.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001167 close(fd);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001168 return 0;
1169 }
1170
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +08001171 on = 1;
Holger Hans Peter Freyther569ee122010-05-05 20:42:14 +08001172 rc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001173 if (rc != 0)
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +08001174 LOGP(DNAT, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
1175
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +08001176 rc = setsockopt(fd, IPPROTO_IP, IP_TOS,
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +08001177 &nat->bsc_ip_dscp, sizeof(nat->bsc_ip_dscp));
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +08001178 if (rc != 0)
1179 LOGP(DNAT, LOGL_ERROR, "Failed to set IP_TOS: %s\n", strerror(errno));
1180
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001181 /* todo... do something with the connection */
Holger Hans Peter Freytherda86c0a2010-01-12 21:35:32 +01001182 /* todo... use GNUtls to see if we want to trust this as a BTS */
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001183
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001184 /*
1185 *
1186 */
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +08001187 bsc = bsc_connection_alloc(nat);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001188 if (!bsc) {
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001189 LOGP(DNAT, LOGL_ERROR, "Failed to allocate BSC struct.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001190 close(fd);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001191 return -1;
1192 }
1193
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001194 bsc->write_queue.bfd.data = bsc;
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001195 bsc->write_queue.bfd.fd = fd;
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001196 bsc->write_queue.read_cb = ipaccess_bsc_read_cb;
Holger Hans Peter Freyther69cfa172010-10-13 20:37:13 +02001197 bsc->write_queue.write_cb = bsc_write_cb;
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001198 bsc->write_queue.bfd.when = BSC_FD_READ;
1199 if (bsc_register_fd(&bsc->write_queue.bfd) < 0) {
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001200 LOGP(DNAT, LOGL_ERROR, "Failed to register BSC fd.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001201 close(fd);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001202 talloc_free(bsc);
1203 return -2;
1204 }
1205
Holger Hans Peter Freyther74cfab72010-05-05 17:03:44 +08001206 LOGP(DNAT, LOGL_NOTICE, "BSC connection on %d with IP: %s\n",
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001207 fd, inet_ntoa(sa.sin_addr));
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001208 llist_add(&bsc->list_entry, &nat->bsc_connections);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +01001209 send_id_ack(bsc);
1210 send_id_req(bsc);
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +02001211 send_mgcp_reset(bsc);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001212
1213 /*
1214 * start the hangup timer
1215 */
1216 bsc->id_timeout.data = bsc;
1217 bsc->id_timeout.cb = ipaccess_close_bsc;
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +08001218 bsc_schedule_timer(&bsc->id_timeout, nat->auth_timeout, 0);
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001219 return 0;
1220}
1221
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001222static void print_usage()
1223{
1224 printf("Usage: bsc_nat\n");
1225}
1226
1227static void print_help()
1228{
1229 printf(" Some useful help...\n");
1230 printf(" -h --help this text\n");
1231 printf(" -d option --debug=DRLL:DCC:DMM:DRR:DRSL:DNM enable debugging\n");
Harald Welte2c869ef2010-08-25 19:43:54 +02001232 printf(" -D --daemonize Fork the process into a background daemon\n");
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001233 printf(" -s --disable-color\n");
1234 printf(" -c --config-file filename The config file to use.\n");
1235 printf(" -m --msc=IP. The address of the MSC.\n");
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001236 printf(" -l --local=IP. The local address of this BSC.\n");
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001237}
1238
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +08001239static void handle_options(int argc, char **argv)
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001240{
1241 while (1) {
1242 int option_index = 0, c;
1243 static struct option long_options[] = {
1244 {"help", 0, 0, 'h'},
1245 {"debug", 1, 0, 'd'},
1246 {"config-file", 1, 0, 'c'},
1247 {"disable-color", 0, 0, 's'},
1248 {"timestamp", 0, 0, 'T'},
1249 {"msc", 1, 0, 'm'},
1250 {"local", 1, 0, 'l'},
1251 {0, 0, 0, 0}
1252 };
1253
1254 c = getopt_long(argc, argv, "hd:sTPc:m:l:",
1255 long_options, &option_index);
1256 if (c == -1)
1257 break;
1258
1259 switch (c) {
1260 case 'h':
1261 print_usage();
1262 print_help();
1263 exit(0);
1264 case 's':
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001265 log_set_use_color(stderr_target, 0);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001266 break;
1267 case 'd':
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001268 log_parse_category_mask(stderr_target, optarg);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001269 break;
1270 case 'c':
1271 config_file = strdup(optarg);
1272 break;
1273 case 'T':
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001274 log_set_print_timestamp(stderr_target, 1);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001275 break;
1276 case 'm':
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001277 msc_ip = optarg;
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001278 break;
1279 case 'l':
1280 inet_aton(optarg, &local_addr);
1281 break;
1282 default:
1283 /* ignore */
1284 break;
1285 }
1286 }
1287}
1288
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001289static void signal_handler(int signal)
1290{
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001291 switch (signal) {
1292 case SIGABRT:
1293 /* in case of abort, we want to obtain a talloc report
1294 * and then return to the caller, who will abort the process */
1295 case SIGUSR1:
1296 talloc_report_full(tall_bsc_ctx, stderr);
1297 break;
1298 default:
1299 break;
1300 }
1301}
1302
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001303static void sccp_close_unconfirmed(void *_data)
1304{
1305 struct sccp_connections *conn, *tmp1;
1306 struct timespec now;
1307 clock_gettime(CLOCK_MONOTONIC, &now);
1308
1309 llist_for_each_entry_safe(conn, tmp1, &nat->sccp_connections, list_entry) {
1310 if (conn->has_remote_ref)
1311 continue;
1312
1313 int diff = (now.tv_sec - conn->creation_time.tv_sec) / 60;
1314 if (diff < SCCP_CLOSE_TIME_TIMEOUT)
1315 continue;
1316
1317 LOGP(DNAT, LOGL_ERROR, "SCCP connection 0x%x/0x%x was never confirmed.\n",
1318 sccp_src_ref_to_int(&conn->real_ref),
1319 sccp_src_ref_to_int(&conn->patched_ref));
1320 sccp_connection_destroy(conn);
1321 }
1322
1323 bsc_schedule_timer(&sccp_close, SCCP_CLOSE_TIME, 0);
1324}
1325
Holger Hans Peter Freyther0b0b31c2010-06-15 18:51:25 +08001326extern void *tall_msgb_ctx;
1327extern void *tall_ctr_ctx;
1328static void talloc_init_ctx()
1329{
1330 tall_bsc_ctx = talloc_named_const(NULL, 0, "nat");
1331 tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 0, "msgb");
1332 tall_ctr_ctx = talloc_named_const(tall_bsc_ctx, 0, "counter");
1333}
1334
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001335extern enum node_type bsc_vty_go_parent(struct vty *vty);
1336
1337static struct vty_app_info vty_info = {
Harald Welteec1921d2011-02-24 23:57:06 +01001338 .name = "OsmoBSCNAT",
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001339 .version = PACKAGE_VERSION,
1340 .go_parent_cb = bsc_vty_go_parent,
Holger Hans Peter Freyther81506b42010-09-04 11:00:01 +08001341 .is_config_node = bsc_vty_is_config_node,
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001342};
1343
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +08001344int main(int argc, char **argv)
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001345{
Harald Welte2c869ef2010-08-25 19:43:54 +02001346 int rc;
Holger Hans Peter Freyther0b0b31c2010-06-15 18:51:25 +08001347
Harald Welte2c869ef2010-08-25 19:43:54 +02001348 talloc_init_ctx();
Holger Hans Peter Freythera1597f12010-06-15 18:51:18 +08001349
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001350 log_init(&log_info);
1351 stderr_target = log_target_create_stderr();
1352 log_add_target(stderr_target);
1353 log_set_all_filter(stderr_target, 1);
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +08001354
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001355 nat = bsc_nat_alloc();
1356 if (!nat) {
1357 fprintf(stderr, "Failed to allocate the BSC nat.\n");
1358 return -4;
1359 }
1360
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +00001361 nat->mgcp_cfg = mgcp_config_alloc();
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001362 if (!nat->mgcp_cfg) {
1363 fprintf(stderr, "Failed to allocate MGCP cfg.\n");
1364 return -5;
1365 }
1366
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001367 vty_info.copyright = openbsc_copyright;
1368 vty_init(&vty_info);
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01001369 logging_vty_add_cmds(&log_info);
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001370 bsc_nat_vty_init(nat);
1371
1372
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001373 /* parse options */
1374 local_addr.s_addr = INADDR_ANY;
1375 handle_options(argc, argv);
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001376
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +08001377 rate_ctr_init(tall_bsc_ctx);
1378
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001379 /* init vty and parse */
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001380 telnet_init(tall_bsc_ctx, NULL, 4244);
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001381 if (mgcp_parse_config(config_file, nat->mgcp_cfg) < 0) {
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001382 fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
1383 return -3;
1384 }
1385
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001386 /* over rule the VTY config */
1387 if (msc_ip)
1388 bsc_nat_set_msc_ip(nat, msc_ip);
1389
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001390 /* seed the PRNG */
1391 srand(time(NULL));
1392
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001393 /*
1394 * Setup the MGCP code..
1395 */
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +08001396 if (bsc_mgcp_nat_init(nat) != 0)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001397 return -4;
1398
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001399 /* connect to the MSC */
Holger Hans Peter Freytherca999a92010-06-15 18:52:38 +08001400 nat->msc_con = bsc_msc_create(nat->msc_ip, nat->msc_port, 0);
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001401 if (!nat->msc_con) {
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +08001402 fprintf(stderr, "Creating a bsc_msc_connection failed.\n");
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001403 exit(1);
1404 }
1405
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001406 nat->msc_con->connection_loss = msc_connection_was_lost;
Holger Hans Peter Freythera99c5b92010-08-04 02:31:55 +08001407 nat->msc_con->connected = msc_connection_connected;
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001408 nat->msc_con->write_queue.read_cb = ipaccess_msc_read_cb;
1409 nat->msc_con->write_queue.write_cb = ipaccess_msc_write_cb;;
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +08001410 nat->msc_con->write_queue.bfd.data = nat->msc_con;
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001411 bsc_msc_connect(nat->msc_con);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +08001412
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001413 /* wait for the BSC */
Holger Hans Peter Freythera25d5792010-10-19 17:48:13 +02001414 rc = make_sock(&bsc_listen, IPPROTO_TCP, ntohl(local_addr.s_addr),
Holger Hans Peter Freyther7d736422011-04-07 22:14:58 +02001415 5000, 0, ipaccess_listen_bsc_cb, nat);
Holger Hans Peter Freytherf961de12010-10-12 23:28:28 +02001416 if (rc != 0) {
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001417 fprintf(stderr, "Failed to listen for BSC.\n");
1418 exit(1);
1419 }
1420
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +02001421 rc = bsc_ussd_init(nat);
1422 if (rc != 0) {
1423 LOGP(DNAT, LOGL_ERROR, "Failed to bind the USSD socket.\n");
1424 exit(1);
1425 }
1426
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001427 signal(SIGABRT, &signal_handler);
1428 signal(SIGUSR1, &signal_handler);
1429 signal(SIGPIPE, SIG_IGN);
1430
Harald Welte2c869ef2010-08-25 19:43:54 +02001431 if (daemonize) {
1432 rc = osmo_daemonize();
1433 if (rc < 0) {
1434 perror("Error during daemonize");
1435 exit(1);
1436 }
1437 }
1438
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001439 /* recycle timer */
Holger Hans Peter Freyther30e1ae92010-07-30 02:53:14 +08001440 sccp_set_log_area(DSCCP);
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001441 sccp_close.cb = sccp_close_unconfirmed;
1442 sccp_close.data = NULL;
1443 bsc_schedule_timer(&sccp_close, SCCP_CLOSE_TIME, 0);
1444
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001445 while (1) {
1446 bsc_select_main(0);
1447 }
1448
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001449 return 0;
1450}
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001451
1452/* Close all connections handed out to the USSD module */
1453int bsc_close_ussd_connections(struct bsc_nat *nat)
1454{
1455 struct sccp_connections *con;
1456 llist_for_each_entry(con, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +02001457 if (con->con_local != NAT_CON_END_USSD)
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001458 continue;
1459 if (!con->bsc)
1460 continue;
1461
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +02001462 nat_send_clrc_bsc(con);
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001463 nat_send_rlsd_bsc(con);
1464 }
1465
1466 return 0;
1467}