blob: c9c9b7bfe423da6d9de9c07a46e57b46644ded98 [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:
611 case SCCP_MSG_TYPE_CREF:
612 case SCCP_MSG_TYPE_DT1:
Holger Hans Peter Freytherf46ce532010-04-06 10:22:34 +0200613 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800614 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800615 if (parsed->gsm_type == BSS_MAP_MSG_ASSIGMENT_RQST) {
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200616 counter_inc(nat->stats.sccp.calls);
617
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800618 if (con) {
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800619 struct rate_ctr_group *ctrg;
620 ctrg = con->bsc->cfg->stats.ctrg;
621 rate_ctr_inc(&ctrg->ctr[BCFG_CTR_SCCP_CALLS]);
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800622 if (bsc_mgcp_assign_patch(con, msg) != 0)
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800623 LOGP(DNAT, LOGL_ERROR, "Failed to assign...\n");
624 } else
625 LOGP(DNAT, LOGL_ERROR, "Assignment command but no BSC.\n");
626 }
Holger Hans Peter Freyther16a6f702010-03-29 17:18:42 +0200627 break;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100628 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800629 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
630 if (!con || update_sccp_src_ref(con, parsed) != 0)
Holger Hans Peter Freyther16a6f702010-03-29 17:18:42 +0200631 goto exit;
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800632 break;
633 case SCCP_MSG_TYPE_RLC:
634 LOGP(DNAT, LOGL_ERROR, "Unexpected release complete from MSC.\n");
635 goto exit;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100636 break;
637 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100638 /* MSC never opens a SCCP connection, fall through */
639 default:
640 goto exit;
641 }
Holger Hans Peter Freytherf464ea52010-04-06 16:07:44 +0200642
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200643 if (!con && parsed->sccp_type == SCCP_MSG_TYPE_RLSD) {
644 LOGP(DNAT, LOGL_NOTICE, "Sending fake RLC on RLSD message to network.\n");
645 /* Exchange src/dest for the reply */
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800646 nat_send_rlc(msc_con, parsed->dest_local_ref, parsed->src_local_ref);
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200647 } else if (!con)
Holger Hans Peter Freyther5f10c6d2010-05-15 19:13:52 +0800648 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 +0100649 }
650
651 talloc_free(parsed);
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800652 if (!con)
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100653 return -1;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800654 if (!con->bsc->authenticated) {
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +0800655 LOGP(DNAT, LOGL_ERROR, "Selected BSC not authenticated.\n");
Holger Hans Peter Freyther3f37b8f2010-02-08 23:24:32 +0100656 return -1;
657 }
658
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200659 update_con_authorize(con, parsed, msg);
660
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200661 bsc_send_data(con->bsc, msg->l2h, msgb_l2len(msg), proto);
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100662 return 0;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100663
664send_to_all:
Holger Hans Peter Freyther45d11812010-06-15 18:46:36 +0800665 /*
666 * Filter Paging from the network. We do not want to send a PAGING
667 * Command to every BSC in our network. We will analys the PAGING
668 * message and then send it to the authenticated messages...
669 */
670 if (parsed->ipa_proto == IPAC_PROTO_SCCP && parsed->gsm_type == BSS_MAP_MSG_PAGING) {
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200671 int lac;
672 bsc = bsc_nat_find_bsc(nat, msg, &lac);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800673 if (bsc && bsc->cfg->forbid_paging)
Holger Hans Peter Freythera34585e2010-04-21 20:17:18 +0800674 LOGP(DNAT, LOGL_DEBUG, "Paging forbidden for BTS: %d\n", bsc->cfg->nr);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800675 else if (bsc)
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200676 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freytherda340632010-08-06 20:15:40 +0800677 else if (lac != -1)
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200678 LOGP(DNAT, LOGL_ERROR, "Could not determine BSC for paging on lac: %d/0x%x\n",
679 lac, lac);
Holger Hans Peter Freyther45d11812010-06-15 18:46:36 +0800680
681 goto exit;
682 }
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100683 /* currently send this to every BSC connected */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800684 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther3f37b8f2010-02-08 23:24:32 +0100685 if (!bsc->authenticated)
686 continue;
687
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200688 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100689 }
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800690
691exit:
692 talloc_free(parsed);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100693 return 0;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100694}
695
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800696static void msc_connection_was_lost(struct bsc_msc_connection *con)
697{
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200698 struct bsc_connection *bsc, *tmp;
699
700 LOGP(DMSC, LOGL_ERROR, "Closing all connections downstream.\n");
701 llist_for_each_entry_safe(bsc, tmp, &nat->bsc_connections, list_entry)
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800702 bsc_close_connection(bsc);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200703
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200704 bsc_mgcp_free_endpoints(nat);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200705 bsc_msc_schedule_connect(con);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800706}
707
Holger Hans Peter Freythera99c5b92010-08-04 02:31:55 +0800708static void msc_connection_connected(struct bsc_msc_connection *con)
709{
710 counter_inc(nat->stats.msc.reconn);
711}
712
Holger Hans Peter Freyther02aee142010-04-08 10:31:07 +0200713static void msc_send_reset(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200714{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800715 static const uint8_t reset[] = {
Holger Hans Peter Freyther7cab1662010-04-07 11:11:11 +0200716 0x00, 0x12, 0xfd,
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200717 0x09, 0x00, 0x03, 0x05, 0x07, 0x02, 0x42, 0xfe,
718 0x02, 0x42, 0xfe, 0x06, 0x00, 0x04, 0x30, 0x04,
719 0x01, 0x20
720 };
721
722 struct msgb *msg;
723
724 msg = msgb_alloc_headroom(4096, 128, "08.08 reset");
725 if (!msg) {
726 LOGP(DMSC, LOGL_ERROR, "Failed to allocate reset msg.\n");
727 return;
728 }
729
730 msg->l2h = msgb_put(msg, sizeof(reset));
731 memcpy(msg->l2h, reset, msgb_l2len(msg));
732
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800733 queue_for_msc(msc_con, msg);
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200734
735 LOGP(DMSC, LOGL_NOTICE, "Scheduled GSM0808 reset msg for the MSC.\n");
736}
737
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800738static int ipaccess_msc_read_cb(struct bsc_fd *bfd)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100739{
740 int error;
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800741 struct bsc_msc_connection *msc_con;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100742 struct msgb *msg = ipaccess_read_msg(bfd, &error);
743 struct ipaccess_head *hh;
744
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800745 msc_con = (struct bsc_msc_connection *) bfd->data;
746
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100747 if (!msg) {
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800748 if (error == 0)
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +0100749 LOGP(DNAT, LOGL_FATAL, "The connection the MSC was lost, exiting\n");
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800750 else
751 LOGP(DNAT, LOGL_ERROR, "Failed to parse ip access message: %d\n", error);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100752
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800753 bsc_msc_lost(msc_con);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100754 return -1;
755 }
756
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +0100757 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 +0100758
759 /* handle base message handling */
760 hh = (struct ipaccess_head *) msg->data;
761 ipaccess_rcvmsg_base(msg, bfd);
762
763 /* initialize the networking. This includes sending a GSM08.08 message */
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800764 if (hh->proto == IPAC_PROTO_IPACCESS) {
765 if (msg->l2h[0] == IPAC_MSGT_ID_ACK)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800766 initialize_msc_if_needed(msc_con);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800767 else if (msg->l2h[0] == IPAC_MSGT_ID_GET)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800768 send_id_get_response(msc_con);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800769 } else if (hh->proto == IPAC_PROTO_SCCP)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800770 forward_sccp_to_bts(msc_con, msg);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100771
Holger Hans Peter Freytheraad68b52010-06-15 18:46:48 +0800772 msgb_free(msg);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100773 return 0;
774}
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +0800775
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800776static int ipaccess_msc_write_cb(struct bsc_fd *bfd, struct msgb *msg)
777{
778 int rc;
779 rc = write(bfd->fd, msg->data, msg->len);
780
781 if (rc != msg->len) {
782 LOGP(DNAT, LOGL_ERROR, "Failed to write MSG to MSC.\n");
783 return -1;
784 }
785
786 return rc;
787}
788
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100789/*
790 * Below is the handling of messages coming
791 * from the BSC and need to be forwarded to
792 * a real BSC.
793 */
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100794
795/*
796 * Remove the connection from the connections list,
797 * remove it from the patching of SCCP header lists
798 * as well. Maybe in the future even close connection..
799 */
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800800void bsc_close_connection(struct bsc_connection *connection)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100801{
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100802 struct sccp_connections *sccp_patch, *tmp;
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800803 struct rate_ctr *ctr = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100804
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800805 /* stop the timeout timer */
806 bsc_del_timer(&connection->id_timeout);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800807 bsc_del_timer(&connection->ping_timeout);
808 bsc_del_timer(&connection->pong_timeout);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800809
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800810 if (connection->cfg)
811 ctr = &connection->cfg->stats.ctrg->ctr[BCFG_CTR_DROPPED_SCCP];
812
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100813 /* remove all SCCP connections */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800814 llist_for_each_entry_safe(sccp_patch, tmp, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100815 if (sccp_patch->bsc != connection)
816 continue;
817
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800818 if (ctr)
819 rate_ctr_inc(ctr);
Holger Hans Peter Freyther91b9a452011-04-16 17:01:47 +0200820 if (sccp_patch->has_remote_ref) {
821 if (sccp_patch->con_local == NAT_CON_END_MSC)
822 nat_send_rlsd_msc(sccp_patch);
823 else if (sccp_patch->con_local == NAT_CON_END_USSD)
824 nat_send_rlsd_ussd(nat, sccp_patch);
825 }
826
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200827 sccp_connection_destroy(sccp_patch);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100828 }
829
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +0200830 /* close endpoints allocated by this BSC */
831 bsc_mgcp_clear_endpoints_for(connection);
832
Holger Hans Peter Freythere464ed42010-04-22 12:04:36 +0800833 bsc_unregister_fd(&connection->write_queue.bfd);
834 close(connection->write_queue.bfd.fd);
835 write_queue_clear(&connection->write_queue);
836 llist_del(&connection->list_entry);
837
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100838 talloc_free(connection);
839}
840
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800841static void ipaccess_close_bsc(void *data)
842{
Holger Hans Peter Freyther6d5a6002010-04-17 07:58:17 +0200843 struct sockaddr_in sock;
844 socklen_t len = sizeof(sock);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800845 struct bsc_connection *conn = data;
846
Holger Hans Peter Freyther6d5a6002010-04-17 07:58:17 +0200847
848 getpeername(conn->write_queue.bfd.fd, (struct sockaddr *) &sock, &len);
849 LOGP(DNAT, LOGL_ERROR, "BSC on %s didn't respond to identity request. Closing.\n",
850 inet_ntoa(sock.sin_addr));
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800851 bsc_close_connection(conn);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800852}
853
854static void ipaccess_auth_bsc(struct tlv_parsed *tvp, struct bsc_connection *bsc)
855{
856 struct bsc_config *conf;
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +0800857 const char *token = (const char *) TLVP_VAL(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freythera09b9662010-10-14 17:19:58 +0200858 const int len = TLVP_LEN(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800859
Holger Hans Peter Freyther5cdcfa62010-05-02 18:58:10 +0800860 if (bsc->cfg) {
861 LOGP(DNAT, LOGL_ERROR, "Reauth on fd %d bsc nr %d\n",
862 bsc->write_queue.bfd.fd, bsc->cfg->nr);
863 return;
864 }
865
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800866 llist_for_each_entry(conf, &bsc->nat->bsc_configs, entry) {
Holger Hans Peter Freythera09b9662010-10-14 17:19:58 +0200867 if (strncmp(conf->token, token, len) == 0) {
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800868 rate_ctr_inc(&conf->stats.ctrg->ctr[BCFG_CTR_NET_RECONN]);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800869 bsc->authenticated = 1;
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200870 bsc->cfg = conf;
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800871 bsc_del_timer(&bsc->id_timeout);
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800872 LOGP(DNAT, LOGL_NOTICE, "Authenticated bsc nr: %d on fd %d\n",
873 conf->nr, bsc->write_queue.bfd.fd);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800874 start_ping_pong(bsc);
Holger Hans Peter Freytherc615c262010-04-17 07:59:57 +0200875 return;
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800876 }
877 }
Holger Hans Peter Freytherc615c262010-04-17 07:59:57 +0200878
Holger Hans Peter Freyther74cfab72010-05-05 17:03:44 +0800879 LOGP(DNAT, LOGL_ERROR, "No bsc found for token %s on fd: %d.\n", token,
880 bsc->write_queue.bfd.fd);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800881}
882
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +0800883static void handle_con_stats(struct sccp_connections *con)
884{
885 struct rate_ctr_group *ctrg;
886 int id = bsc_conn_type_to_ctr(con);
887
888 if (id == -1)
889 return;
890
891 if (!con->bsc || !con->bsc->cfg)
892 return;
893
894 ctrg = con->bsc->cfg->stats.ctrg;
895 rate_ctr_inc(&ctrg->ctr[id]);
896}
897
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +0100898static int forward_sccp_to_msc(struct bsc_connection *bsc, struct msgb *msg)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100899{
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +0800900 int con_filter = 0;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800901 char *imsi = NULL;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800902 struct bsc_msc_connection *con_msc = NULL;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800903 struct bsc_connection *con_bsc = NULL;
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800904 int con_type;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800905 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100906
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800907 /* Parse and filter messages */
908 parsed = bsc_nat_parse(msg);
909 if (!parsed) {
910 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freytherd7657ff2010-03-30 07:35:46 +0200911 msgb_free(msg);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800912 return -1;
913 }
914
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100915 if (bsc_nat_filter_ipa(DIR_MSC, msg, parsed))
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800916 goto exit;
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800917
Holger Hans Peter Freytherbbb9d392010-04-02 03:42:44 +0200918 /*
919 * check authentication after filtering to not reject auth
920 * responses coming from the BSC. We have to make sure that
921 * nothing from the exit path will forward things to the MSC
922 */
923 if (!bsc->authenticated) {
924 LOGP(DNAT, LOGL_ERROR, "BSC is not authenticated.\n");
925 msgb_free(msg);
926 return -1;
927 }
928
929
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100930 /* modify the SCCP entries */
931 if (parsed->ipa_proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther3837f992010-09-15 00:38:54 +0800932 int filter;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800933 struct sccp_connections *con;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100934 switch (parsed->sccp_type) {
935 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800936 filter = bsc_nat_filter_sccp_cr(bsc, msg, parsed, &con_type, &imsi);
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +0800937 if (filter < 0) {
938 bsc_stat_reject(filter, bsc, 0);
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800939 goto exit3;
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +0800940 }
941
Holger Hans Peter Freytherfa20c942010-05-16 16:51:31 +0800942 if (!create_sccp_src_ref(bsc, parsed))
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100943 goto exit2;
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +0800944 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther3a77e612010-07-05 13:33:18 +0800945 con->msc_con = bsc->nat->msc_con;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800946 con_msc = con->msc_con;
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800947 con->con_type = con_type;
Holger Hans Peter Freyther909e61f2010-09-15 00:41:19 +0800948 con->imsi_checked = filter;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800949 if (imsi)
950 con->imsi = talloc_steal(con, imsi);
951 imsi = NULL;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800952 con_bsc = con->bsc;
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +0800953 handle_con_stats(con);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100954 break;
955 case SCCP_MSG_TYPE_RLSD:
956 case SCCP_MSG_TYPE_CREF:
957 case SCCP_MSG_TYPE_DT1:
958 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freytherf46ce532010-04-06 10:22:34 +0200959 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +0800960 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800961 if (con) {
Holger Hans Peter Freyther0c41b692010-10-06 00:48:36 +0800962 /* only filter non local connections */
963 if (!con->con_local) {
964 filter = bsc_nat_filter_dt(bsc, msg, con, parsed);
965 if (filter < 0) {
966 bsc_stat_reject(filter, bsc, 1);
967 bsc_send_con_release(bsc, con);
968 con = NULL;
969 goto exit2;
970 }
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800971
972 /* hand data to a side channel */
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200973 if (bsc_check_ussd(con, parsed, msg) == 1)
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +0200974 con->con_local = NAT_CON_END_USSD;
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +0200975
976 /*
977 * Optionally rewrite setup message. This can
978 * replace the msg and the parsed structure becomes
979 * invalid.
980 */
Holger Hans Peter Freyther73bbf892010-10-21 14:46:57 +0200981 msg = bsc_nat_rewrite_setup(bsc->nat, msg, parsed, con->imsi);
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +0200982 talloc_free(parsed);
983 parsed = NULL;
Holger Hans Peter Freyther74e0a1b2010-09-15 01:11:08 +0800984 }
Holger Hans Peter Freyther0c41b692010-10-06 00:48:36 +0800985
986 con_bsc = con->bsc;
987 con_msc = con->msc_con;
988 con_filter = con->con_local;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800989 }
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800990
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100991 break;
992 case SCCP_MSG_TYPE_RLC:
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +0800993 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800994 if (con) {
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800995 con_bsc = con->bsc;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800996 con_msc = con->msc_con;
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +0800997 con_filter = con->con_local;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800998 }
Holger Hans Peter Freytherf4cfc4f2010-03-31 09:15:05 +0200999 remove_sccp_src_ref(bsc, msg, parsed);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001000 break;
1001 case SCCP_MSG_TYPE_UDT:
1002 /* simply forward everything */
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +08001003 con = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001004 break;
1005 default:
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +08001006 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 +08001007 con = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001008 goto exit2;
1009 break;
1010 }
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +01001011 } else if (parsed->ipa_proto == IPAC_PROTO_MGCP_OLD) {
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +02001012 bsc_mgcp_forward(bsc, msg);
1013 goto exit2;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +08001014 } else {
1015 LOGP(DNAT, LOGL_ERROR, "Not forwarding unknown stream id: 0x%x\n", parsed->ipa_proto);
1016 goto exit2;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001017 }
1018
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001019 if (con_msc && con_bsc != bsc) {
Holger Hans Peter Freytherca0c2f92010-04-21 18:49:55 +08001020 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 +08001021 bsc->cfg->nr, con_bsc->cfg->nr);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +01001022 goto exit2;
1023 }
1024
Holger Hans Peter Freyther09ecda42010-09-15 17:39:44 +08001025 /* do not forward messages to the MSC */
1026 if (con_filter)
1027 goto exit2;
1028
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001029 if (!con_msc) {
Holger Hans Peter Freyther27640fc2010-09-15 00:14:48 +08001030 LOGP(DNAT, LOGL_ERROR, "Not forwarding data bsc_nr: %d ipa: %d type: 0x%x\n",
1031 bsc->cfg->nr,
1032 parsed ? parsed->ipa_proto : -1,
1033 parsed ? parsed->sccp_type : -1);
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001034 goto exit2;
1035 }
1036
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001037 /* send the non-filtered but maybe modified msg */
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +08001038 queue_for_msc(con_msc, msg);
Holger Hans Peter Freythera914daf2010-10-21 12:12:57 +02001039 if (parsed)
1040 talloc_free(parsed);
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +08001041 return 0;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +08001042
1043exit:
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +01001044 /* if we filter out the reset send an ack to the BSC */
1045 if (parsed->bssap == 0 && parsed->gsm_type == BSS_MAP_MSG_RESET) {
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001046 send_reset_ack(bsc);
1047 send_reset_ack(bsc);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001048 } else if (parsed->ipa_proto == IPAC_PROTO_IPACCESS) {
1049 /* do we know who is handling this? */
1050 if (msg->l2h[0] == IPAC_MSGT_ID_RESP) {
1051 struct tlv_parsed tvp;
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +02001052 int ret;
1053 ret = ipaccess_idtag_parse(&tvp,
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001054 (unsigned char *) msg->l2h + 2,
1055 msgb_l2len(msg) - 2);
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +02001056 if (ret < 0) {
1057 LOGP(DNAT, LOGL_ERROR, "ignoring IPA response "
1058 "message with malformed TLVs\n");
1059 return ret;
1060 }
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001061 if (TLVP_PRESENT(&tvp, IPAC_IDTAG_UNITNAME))
1062 ipaccess_auth_bsc(&tvp, bsc);
1063 }
1064
1065 goto exit2;
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +01001066 }
1067
Holger Hans Peter Freyther1498d2e2010-05-15 00:29:50 +08001068exit2:
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +08001069 if (imsi)
1070 talloc_free(imsi);
Holger Hans Peter Freyther1498d2e2010-05-15 00:29:50 +08001071 talloc_free(parsed);
1072 msgb_free(msg);
1073 return -1;
1074
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +08001075exit3:
1076 /* send a SCCP Connection Refused */
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +08001077 if (imsi)
1078 talloc_free(imsi);
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +08001079 bsc_send_con_refuse(bsc, parsed, con_type);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +08001080 talloc_free(parsed);
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +08001081 msgb_free(msg);
1082 return -1;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001083}
1084
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001085static int ipaccess_bsc_read_cb(struct bsc_fd *bfd)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001086{
1087 int error;
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001088 struct bsc_connection *bsc = bfd->data;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001089 struct msgb *msg = ipaccess_read_msg(bfd, &error);
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001090 struct ipaccess_head *hh;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001091
1092 if (!msg) {
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001093 if (error == 0)
Holger Hans Peter Freyther19c35442010-05-01 10:37:15 +08001094 LOGP(DNAT, LOGL_ERROR,
1095 "The connection to the BSC Nr: %d was lost. Cleaning it\n",
1096 bsc->cfg ? bsc->cfg->nr : -1);
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001097 else
Holger Hans Peter Freyther19c35442010-05-01 10:37:15 +08001098 LOGP(DNAT, LOGL_ERROR,
1099 "Stream error on BSC Nr: %d. Failed to parse ip access message: %d\n",
1100 bsc->cfg ? bsc->cfg->nr : -1, error);
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001101
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +08001102 bsc_close_connection(bsc);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001103 return -1;
1104 }
1105
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001106
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001107 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 +01001108
1109 /* Handle messages from the BSC */
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001110 hh = (struct ipaccess_head *) msg->data;
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001111
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001112 /* stop the pong timeout */
1113 if (hh->proto == IPAC_PROTO_IPACCESS) {
1114 if (msg->l2h[0] == IPAC_MSGT_PONG) {
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001115 bsc_del_timer(&bsc->pong_timeout);
1116 msgb_free(msg);
1117 return 0;
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001118 } else if (msg->l2h[0] == IPAC_MSGT_PING) {
1119 send_pong(bsc);
1120 msgb_free(msg);
1121 return 0;
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001122 }
1123 }
1124
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001125 /* FIXME: Currently no PONG is sent to the BSC */
1126 /* FIXME: Currently no ID ACK is sent to the BSC */
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001127 forward_sccp_to_msc(bsc, msg);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001128
1129 return 0;
1130}
1131
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001132static int ipaccess_listen_bsc_cb(struct bsc_fd *bfd, unsigned int what)
1133{
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001134 struct bsc_connection *bsc;
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001135 int fd, rc, on;
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001136 struct sockaddr_in sa;
1137 socklen_t sa_len = sizeof(sa);
1138
1139 if (!(what & BSC_FD_READ))
1140 return 0;
1141
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001142 fd = accept(bfd->fd, (struct sockaddr *) &sa, &sa_len);
1143 if (fd < 0) {
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001144 perror("accept");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001145 return fd;
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001146 }
1147
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +02001148 /* count the reconnect */
1149 counter_inc(nat->stats.bsc.reconn);
1150
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001151 /*
1152 * if we are not connected to a msc... just close the socket
1153 */
Holger Hans Peter Freyther20ee3122010-07-05 14:39:44 +08001154 if (!bsc_nat_msc_is_connected(nat)) {
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001155 LOGP(DNAT, LOGL_NOTICE, "Disconnecting BSC due lack of MSC connection.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001156 close(fd);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001157 return 0;
1158 }
1159
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +08001160 on = 1;
Holger Hans Peter Freyther569ee122010-05-05 20:42:14 +08001161 rc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001162 if (rc != 0)
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +08001163 LOGP(DNAT, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
1164
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +08001165 rc = setsockopt(fd, IPPROTO_IP, IP_TOS,
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +08001166 &nat->bsc_ip_dscp, sizeof(nat->bsc_ip_dscp));
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +08001167 if (rc != 0)
1168 LOGP(DNAT, LOGL_ERROR, "Failed to set IP_TOS: %s\n", strerror(errno));
1169
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001170 /* todo... do something with the connection */
Holger Hans Peter Freytherda86c0a2010-01-12 21:35:32 +01001171 /* todo... use GNUtls to see if we want to trust this as a BTS */
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001172
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001173 /*
1174 *
1175 */
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +08001176 bsc = bsc_connection_alloc(nat);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001177 if (!bsc) {
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001178 LOGP(DNAT, LOGL_ERROR, "Failed to allocate BSC struct.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001179 close(fd);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001180 return -1;
1181 }
1182
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001183 bsc->write_queue.bfd.data = bsc;
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001184 bsc->write_queue.bfd.fd = fd;
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001185 bsc->write_queue.read_cb = ipaccess_bsc_read_cb;
Holger Hans Peter Freyther69cfa172010-10-13 20:37:13 +02001186 bsc->write_queue.write_cb = bsc_write_cb;
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001187 bsc->write_queue.bfd.when = BSC_FD_READ;
1188 if (bsc_register_fd(&bsc->write_queue.bfd) < 0) {
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001189 LOGP(DNAT, LOGL_ERROR, "Failed to register BSC fd.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001190 close(fd);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001191 talloc_free(bsc);
1192 return -2;
1193 }
1194
Holger Hans Peter Freyther74cfab72010-05-05 17:03:44 +08001195 LOGP(DNAT, LOGL_NOTICE, "BSC connection on %d with IP: %s\n",
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001196 fd, inet_ntoa(sa.sin_addr));
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001197 llist_add(&bsc->list_entry, &nat->bsc_connections);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +01001198 send_id_ack(bsc);
1199 send_id_req(bsc);
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +02001200 send_mgcp_reset(bsc);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001201
1202 /*
1203 * start the hangup timer
1204 */
1205 bsc->id_timeout.data = bsc;
1206 bsc->id_timeout.cb = ipaccess_close_bsc;
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +08001207 bsc_schedule_timer(&bsc->id_timeout, nat->auth_timeout, 0);
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001208 return 0;
1209}
1210
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001211static void print_usage()
1212{
1213 printf("Usage: bsc_nat\n");
1214}
1215
1216static void print_help()
1217{
1218 printf(" Some useful help...\n");
1219 printf(" -h --help this text\n");
1220 printf(" -d option --debug=DRLL:DCC:DMM:DRR:DRSL:DNM enable debugging\n");
Harald Welte2c869ef2010-08-25 19:43:54 +02001221 printf(" -D --daemonize Fork the process into a background daemon\n");
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001222 printf(" -s --disable-color\n");
1223 printf(" -c --config-file filename The config file to use.\n");
1224 printf(" -m --msc=IP. The address of the MSC.\n");
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001225 printf(" -l --local=IP. The local address of this BSC.\n");
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001226}
1227
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +08001228static void handle_options(int argc, char **argv)
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001229{
1230 while (1) {
1231 int option_index = 0, c;
1232 static struct option long_options[] = {
1233 {"help", 0, 0, 'h'},
1234 {"debug", 1, 0, 'd'},
1235 {"config-file", 1, 0, 'c'},
1236 {"disable-color", 0, 0, 's'},
1237 {"timestamp", 0, 0, 'T'},
1238 {"msc", 1, 0, 'm'},
1239 {"local", 1, 0, 'l'},
1240 {0, 0, 0, 0}
1241 };
1242
1243 c = getopt_long(argc, argv, "hd:sTPc:m:l:",
1244 long_options, &option_index);
1245 if (c == -1)
1246 break;
1247
1248 switch (c) {
1249 case 'h':
1250 print_usage();
1251 print_help();
1252 exit(0);
1253 case 's':
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001254 log_set_use_color(stderr_target, 0);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001255 break;
1256 case 'd':
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001257 log_parse_category_mask(stderr_target, optarg);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001258 break;
1259 case 'c':
1260 config_file = strdup(optarg);
1261 break;
1262 case 'T':
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001263 log_set_print_timestamp(stderr_target, 1);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001264 break;
1265 case 'm':
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001266 msc_ip = optarg;
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001267 break;
1268 case 'l':
1269 inet_aton(optarg, &local_addr);
1270 break;
1271 default:
1272 /* ignore */
1273 break;
1274 }
1275 }
1276}
1277
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001278static void signal_handler(int signal)
1279{
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001280 switch (signal) {
1281 case SIGABRT:
1282 /* in case of abort, we want to obtain a talloc report
1283 * and then return to the caller, who will abort the process */
1284 case SIGUSR1:
1285 talloc_report_full(tall_bsc_ctx, stderr);
1286 break;
1287 default:
1288 break;
1289 }
1290}
1291
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001292static void sccp_close_unconfirmed(void *_data)
1293{
1294 struct sccp_connections *conn, *tmp1;
1295 struct timespec now;
1296 clock_gettime(CLOCK_MONOTONIC, &now);
1297
1298 llist_for_each_entry_safe(conn, tmp1, &nat->sccp_connections, list_entry) {
1299 if (conn->has_remote_ref)
1300 continue;
1301
1302 int diff = (now.tv_sec - conn->creation_time.tv_sec) / 60;
1303 if (diff < SCCP_CLOSE_TIME_TIMEOUT)
1304 continue;
1305
1306 LOGP(DNAT, LOGL_ERROR, "SCCP connection 0x%x/0x%x was never confirmed.\n",
1307 sccp_src_ref_to_int(&conn->real_ref),
1308 sccp_src_ref_to_int(&conn->patched_ref));
1309 sccp_connection_destroy(conn);
1310 }
1311
1312 bsc_schedule_timer(&sccp_close, SCCP_CLOSE_TIME, 0);
1313}
1314
Holger Hans Peter Freyther0b0b31c2010-06-15 18:51:25 +08001315extern void *tall_msgb_ctx;
1316extern void *tall_ctr_ctx;
1317static void talloc_init_ctx()
1318{
1319 tall_bsc_ctx = talloc_named_const(NULL, 0, "nat");
1320 tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 0, "msgb");
1321 tall_ctr_ctx = talloc_named_const(tall_bsc_ctx, 0, "counter");
1322}
1323
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001324extern enum node_type bsc_vty_go_parent(struct vty *vty);
1325
1326static struct vty_app_info vty_info = {
Harald Welteec1921d2011-02-24 23:57:06 +01001327 .name = "OsmoBSCNAT",
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001328 .version = PACKAGE_VERSION,
1329 .go_parent_cb = bsc_vty_go_parent,
Holger Hans Peter Freyther81506b42010-09-04 11:00:01 +08001330 .is_config_node = bsc_vty_is_config_node,
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001331};
1332
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +08001333int main(int argc, char **argv)
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001334{
Harald Welte2c869ef2010-08-25 19:43:54 +02001335 int rc;
Holger Hans Peter Freyther0b0b31c2010-06-15 18:51:25 +08001336
Harald Welte2c869ef2010-08-25 19:43:54 +02001337 talloc_init_ctx();
Holger Hans Peter Freythera1597f12010-06-15 18:51:18 +08001338
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001339 log_init(&log_info);
1340 stderr_target = log_target_create_stderr();
1341 log_add_target(stderr_target);
1342 log_set_all_filter(stderr_target, 1);
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +08001343
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001344 nat = bsc_nat_alloc();
1345 if (!nat) {
1346 fprintf(stderr, "Failed to allocate the BSC nat.\n");
1347 return -4;
1348 }
1349
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +00001350 nat->mgcp_cfg = mgcp_config_alloc();
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001351 if (!nat->mgcp_cfg) {
1352 fprintf(stderr, "Failed to allocate MGCP cfg.\n");
1353 return -5;
1354 }
1355
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001356 vty_info.copyright = openbsc_copyright;
1357 vty_init(&vty_info);
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01001358 logging_vty_add_cmds(&log_info);
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001359 bsc_nat_vty_init(nat);
1360
1361
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001362 /* parse options */
1363 local_addr.s_addr = INADDR_ANY;
1364 handle_options(argc, argv);
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001365
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +08001366 rate_ctr_init(tall_bsc_ctx);
1367
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001368 /* init vty and parse */
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001369 telnet_init(tall_bsc_ctx, NULL, 4244);
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001370 if (mgcp_parse_config(config_file, nat->mgcp_cfg) < 0) {
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001371 fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
1372 return -3;
1373 }
1374
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001375 /* over rule the VTY config */
1376 if (msc_ip)
1377 bsc_nat_set_msc_ip(nat, msc_ip);
1378
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001379 /* seed the PRNG */
1380 srand(time(NULL));
1381
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001382 /*
1383 * Setup the MGCP code..
1384 */
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +08001385 if (bsc_mgcp_nat_init(nat) != 0)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001386 return -4;
1387
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001388 /* connect to the MSC */
Holger Hans Peter Freytherca999a92010-06-15 18:52:38 +08001389 nat->msc_con = bsc_msc_create(nat->msc_ip, nat->msc_port, 0);
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001390 if (!nat->msc_con) {
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +08001391 fprintf(stderr, "Creating a bsc_msc_connection failed.\n");
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001392 exit(1);
1393 }
1394
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001395 nat->msc_con->connection_loss = msc_connection_was_lost;
Holger Hans Peter Freythera99c5b92010-08-04 02:31:55 +08001396 nat->msc_con->connected = msc_connection_connected;
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001397 nat->msc_con->write_queue.read_cb = ipaccess_msc_read_cb;
1398 nat->msc_con->write_queue.write_cb = ipaccess_msc_write_cb;;
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +08001399 nat->msc_con->write_queue.bfd.data = nat->msc_con;
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001400 bsc_msc_connect(nat->msc_con);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +08001401
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001402 /* wait for the BSC */
Holger Hans Peter Freythera25d5792010-10-19 17:48:13 +02001403 rc = make_sock(&bsc_listen, IPPROTO_TCP, ntohl(local_addr.s_addr),
Holger Hans Peter Freyther7d736422011-04-07 22:14:58 +02001404 5000, 0, ipaccess_listen_bsc_cb, nat);
Holger Hans Peter Freytherf961de12010-10-12 23:28:28 +02001405 if (rc != 0) {
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001406 fprintf(stderr, "Failed to listen for BSC.\n");
1407 exit(1);
1408 }
1409
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +02001410 rc = bsc_ussd_init(nat);
1411 if (rc != 0) {
1412 LOGP(DNAT, LOGL_ERROR, "Failed to bind the USSD socket.\n");
1413 exit(1);
1414 }
1415
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001416 signal(SIGABRT, &signal_handler);
1417 signal(SIGUSR1, &signal_handler);
1418 signal(SIGPIPE, SIG_IGN);
1419
Harald Welte2c869ef2010-08-25 19:43:54 +02001420 if (daemonize) {
1421 rc = osmo_daemonize();
1422 if (rc < 0) {
1423 perror("Error during daemonize");
1424 exit(1);
1425 }
1426 }
1427
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001428 /* recycle timer */
Holger Hans Peter Freyther30e1ae92010-07-30 02:53:14 +08001429 sccp_set_log_area(DSCCP);
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001430 sccp_close.cb = sccp_close_unconfirmed;
1431 sccp_close.data = NULL;
1432 bsc_schedule_timer(&sccp_close, SCCP_CLOSE_TIME, 0);
1433
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001434 while (1) {
1435 bsc_select_main(0);
1436 }
1437
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001438 return 0;
1439}
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001440
1441/* Close all connections handed out to the USSD module */
1442int bsc_close_ussd_connections(struct bsc_nat *nat)
1443{
1444 struct sccp_connections *con;
1445 llist_for_each_entry(con, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freythere5d32492011-04-16 16:02:59 +02001446 if (con->con_local != NAT_CON_END_USSD)
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001447 continue;
1448 if (!con->bsc)
1449 continue;
1450
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +02001451 nat_send_clrc_bsc(con);
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001452 nat_send_rlsd_bsc(con);
1453 }
1454
1455 return 0;
1456}