blob: 3e878b87f43d67eac32ad932cda34a65c191e4dd [file] [log] [blame]
Holger Hans Peter Freyther89d9fd92010-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 Freyther98e49d42010-06-15 18:46:56 +08005 * (C) 2010 by On-Waves
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01006 * (C) 2009 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08007 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24#include <sys/socket.h>
25#include <netinet/in.h>
Holger Hans Peter Freyther150fa582010-05-05 18:58:13 +080026#include <netinet/tcp.h>
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +080027#include <arpa/inet.h>
28
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +010029#include <errno.h>
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +010030#include <signal.h>
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +080031#include <stdio.h>
32#include <stdlib.h>
Holger Hans Peter Freytherfd012d52010-01-12 21:36:08 +010033#include <time.h>
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +080034#include <unistd.h>
35
36#define _GNU_SOURCE
37#include <getopt.h>
38
39#include <openbsc/debug.h>
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +010040#include <openbsc/bsc_msc.h>
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +080041#include <openbsc/bsc_nat.h>
Holger Hans Peter Freyther4a9dd3b2010-07-31 05:17:17 +080042#include <openbsc/bsc_nat_sccp.h>
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +010043#include <openbsc/ipaccess.h>
44#include <openbsc/abis_nm.h>
Holger Hans Peter Freyther492a0062010-10-12 23:28:28 +020045#include <openbsc/socket.h>
Holger Hans Peter Freyther4fcedba2010-06-15 20:14:08 +080046#include <openbsc/vty.h>
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +080047
Holger Hans Peter Freyther605eba72010-06-15 18:52:24 +080048#include <osmocore/gsm0808.h>
Holger Hans Peter Freyther3b960892010-06-15 19:06:18 +080049#include <osmocore/talloc.h>
Harald Weltec4ae1762010-08-25 19:43:54 +020050#include <osmocore/process.h>
Holger Hans Peter Freyther3b960892010-06-15 19:06:18 +080051
Holger Hans Peter Freythere36be812010-06-15 20:13:33 +080052#include <osmocore/protocol/gsm_08_08.h>
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +080053
Holger Hans Peter Freyther4fcedba2010-06-15 20:14:08 +080054#include <osmocom/vty/telnet_interface.h>
55#include <osmocom/vty/vty.h>
56
Harald Welte90e5eae2010-08-03 15:11:51 +020057#include <osmocom/sccp/sccp.h>
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +080058
Holger Hans Peter Freyther4fcedba2010-06-15 20:14:08 +080059#include "../../bscconfig.h"
60
Holger Hans Peter Freyther6088cc72010-06-15 18:51:56 +080061#define SCCP_CLOSE_TIME 20
62#define SCCP_CLOSE_TIME_TIMEOUT 19
63
Holger Hans Peter Freyther4acca1a2010-06-15 19:14:12 +080064struct log_target *stderr_target;
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +080065static const char *config_file = "bsc-nat.cfg";
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +080066static struct in_addr local_addr;
Holger Hans Peter Freytherbea0ac62010-03-26 06:51:04 +010067static struct bsc_fd bsc_listen;
Holger Hans Peter Freyther9226d702010-06-15 18:51:04 +080068static const char *msc_ip = NULL;
Holger Hans Peter Freyther6088cc72010-06-15 18:51:56 +080069static struct timer_list sccp_close;
Harald Weltec4ae1762010-08-25 19:43:54 +020070static int daemonize = 0;
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +010071
Holger Hans Peter Freyther4fcedba2010-06-15 20:14:08 +080072const char *openbsc_copyright =
Holger Hans Peter Freyther260646d2010-09-11 13:32:30 +080073 "Copyright (C) 2010 Holger Hans Peter Freyther and On-Waves\r\n"
74 "License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>\r\n"
75 "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 Freyther4a629602010-01-13 09:28:12 +010077
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +080078static struct bsc_nat *nat;
Holger Hans Peter Freyther0b776352010-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 Freytherdc813932010-04-07 11:20:36 +020080static void msc_send_reset(struct bsc_msc_connection *con);
Holger Hans Peter Freythera67fc6f2010-09-25 17:58:22 +080081static void bsc_stat_reject(int filter, struct bsc_connection *bsc, int normal);
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +080082
Holger Hans Peter Freyther5e547882010-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 Freyther4a629602010-01-13 09:28:12 +010093
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +010094/*
95 * below are stubs we need to link
96 */
Holger Hans Peter Freyther0b776352010-07-23 19:08:55 +080097int nm_state_event(enum nm_evt evt, uint8_t obj_class, void *obj,
Holger Hans Peter Freytherc4aa2702010-05-12 16:55:12 +080098 struct gsm_nm_state *old_state, struct gsm_nm_state *new_state,
99 struct abis_om_obj_inst *obj_ins)
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100100{
101 return -1;
102}
103
104void input_event(int event, enum e1inp_sign_type type, struct gsm_bts_trx *trx)
105{}
106
Holger Hans Peter Freyther754787c2010-04-22 19:11:37 +0800107static void queue_for_msc(struct bsc_msc_connection *con, struct msgb *msg)
108{
Holger Hans Peter Freyther1e64b322010-10-06 00:24:28 +0800109 if (!con) {
110 LOGP(DINP, LOGL_ERROR, "No MSC Connection assigned. Check your code.\n");
111 msgb_free(msg);
112 return;
113 }
114
115
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800116 if (write_queue_enqueue(&con->write_queue, msg) != 0) {
Holger Hans Peter Freyther754787c2010-04-22 19:11:37 +0800117 LOGP(DINP, LOGL_ERROR, "Failed to enqueue the write.\n");
118 msgb_free(msg);
119 }
120}
121
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100122static void send_reset_ack(struct bsc_connection *bsc)
Holger Hans Peter Freyther722ead82010-01-30 12:45:10 +0100123{
Holger Hans Peter Freyther0b776352010-07-23 19:08:55 +0800124 static const uint8_t gsm_reset_ack[] = {
Holger Hans Peter Freyther722ead82010-01-30 12:45:10 +0100125 0x09, 0x00, 0x03, 0x07, 0x0b, 0x04, 0x43, 0x01,
126 0x00, 0xfe, 0x04, 0x43, 0x5c, 0x00, 0xfe, 0x03,
127 0x00, 0x01, 0x31,
128 };
129
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200130 bsc_send_data(bsc, gsm_reset_ack, sizeof(gsm_reset_ack), IPAC_PROTO_SCCP);
Holger Hans Peter Freyther722ead82010-01-30 12:45:10 +0100131}
132
Holger Hans Peter Freyther582511a2010-05-02 19:28:59 +0800133static void send_ping(struct bsc_connection *bsc)
134{
Holger Hans Peter Freyther0b776352010-07-23 19:08:55 +0800135 static const uint8_t id_ping[] = {
Holger Hans Peter Freyther582511a2010-05-02 19:28:59 +0800136 IPAC_MSGT_PING,
137 };
138
139 bsc_send_data(bsc, id_ping, sizeof(id_ping), IPAC_PROTO_IPACCESS);
140}
141
Holger Hans Peter Freyther453235a2010-06-15 18:51:33 +0800142static void send_pong(struct bsc_connection *bsc)
143{
Holger Hans Peter Freyther0b776352010-07-23 19:08:55 +0800144 static const uint8_t id_pong[] = {
Holger Hans Peter Freyther453235a2010-06-15 18:51:33 +0800145 IPAC_MSGT_PONG,
146 };
147
148 bsc_send_data(bsc, id_pong, sizeof(id_pong), IPAC_PROTO_IPACCESS);
149}
150
Holger Hans Peter Freyther582511a2010-05-02 19:28:59 +0800151static void bsc_pong_timeout(void *_bsc)
152{
153 struct bsc_connection *bsc = _bsc;
154
155 LOGP(DNAT, LOGL_ERROR, "BSC Nr: %d PONG timeout.\n", bsc->cfg->nr);
156 bsc_close_connection(bsc);
157}
158
159static void bsc_ping_timeout(void *_bsc)
160{
161 struct bsc_connection *bsc = _bsc;
162
Holger Hans Peter Freytheracd30782010-05-05 16:57:38 +0800163 if (bsc->nat->ping_timeout < 0)
164 return;
165
Holger Hans Peter Freyther582511a2010-05-02 19:28:59 +0800166 send_ping(bsc);
167
168 /* send another ping in 20 seconds */
Holger Hans Peter Freytheracd30782010-05-05 16:57:38 +0800169 bsc_schedule_timer(&bsc->ping_timeout, bsc->nat->ping_timeout, 0);
Holger Hans Peter Freyther582511a2010-05-02 19:28:59 +0800170
171 /* also start a pong timer */
Holger Hans Peter Freytheracd30782010-05-05 16:57:38 +0800172 bsc_schedule_timer(&bsc->pong_timeout, bsc->nat->pong_timeout, 0);
Holger Hans Peter Freyther582511a2010-05-02 19:28:59 +0800173}
174
175static void start_ping_pong(struct bsc_connection *bsc)
176{
177 bsc->pong_timeout.data = bsc;
178 bsc->pong_timeout.cb = bsc_pong_timeout;
179 bsc->ping_timeout.data = bsc;
180 bsc->ping_timeout.cb = bsc_ping_timeout;
181
182 bsc_ping_timeout(bsc);
183}
184
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100185static void send_id_ack(struct bsc_connection *bsc)
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100186{
Holger Hans Peter Freyther0b776352010-07-23 19:08:55 +0800187 static const uint8_t id_ack[] = {
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200188 IPAC_MSGT_ID_ACK
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100189 };
190
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200191 bsc_send_data(bsc, id_ack, sizeof(id_ack), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100192}
193
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100194static void send_id_req(struct bsc_connection *bsc)
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100195{
Holger Hans Peter Freyther0b776352010-07-23 19:08:55 +0800196 static const uint8_t id_req[] = {
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200197 IPAC_MSGT_ID_GET,
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100198 0x01, IPAC_IDTAG_UNIT,
199 0x01, IPAC_IDTAG_MACADDR,
200 0x01, IPAC_IDTAG_LOCATION1,
201 0x01, IPAC_IDTAG_LOCATION2,
202 0x01, IPAC_IDTAG_EQUIPVERS,
203 0x01, IPAC_IDTAG_SWVERSION,
204 0x01, IPAC_IDTAG_UNITNAME,
205 0x01, IPAC_IDTAG_SERNR,
206 };
207
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200208 bsc_send_data(bsc, id_req, sizeof(id_req), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100209}
210
Holger Hans Peter Freyther0a891d02010-10-27 10:54:11 +0200211static void nat_send_rlsd_msc(struct sccp_connections *conn)
Holger Hans Peter Freyther7746bd82010-04-06 17:32:58 +0200212{
213 struct sccp_connection_released *rel;
214 struct msgb *msg;
215
216 msg = msgb_alloc_headroom(4096, 128, "rlsd");
217 if (!msg) {
218 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
219 return;
220 }
221
222 msg->l2h = msgb_put(msg, sizeof(*rel));
223 rel = (struct sccp_connection_released *) msg->l2h;
224 rel->type = SCCP_MSG_TYPE_RLSD;
225 rel->release_cause = SCCP_RELEASE_CAUSE_SCCP_FAILURE;
226 rel->destination_local_reference = conn->remote_ref;
227 rel->source_local_reference = conn->patched_ref;
228
229 ipaccess_prepend_header(msg, IPAC_PROTO_SCCP);
230
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800231 queue_for_msc(conn->msc_con, msg);
Holger Hans Peter Freyther7746bd82010-04-06 17:32:58 +0200232}
233
Holger Hans Peter Freytherd39f3102010-10-27 11:01:55 +0200234static void nat_send_rlsd_bsc(struct sccp_connections *conn)
235{
236 struct sccp_connection_released *rel;
237 struct msgb *msg;
238
239 msg = msgb_alloc_headroom(4096, 128, "rlsd");
240 if (!msg) {
241 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
242 return;
243 }
244
245 msg->l2h = msgb_put(msg, sizeof(*rel));
246 rel = (struct sccp_connection_released *) msg->l2h;
247 rel->type = SCCP_MSG_TYPE_RLSD;
248 rel->release_cause = SCCP_RELEASE_CAUSE_SCCP_FAILURE;
249 rel->destination_local_reference = conn->real_ref;
250 rel->source_local_reference = conn->remote_ref;
251
252 bsc_write(conn->bsc, msg, IPAC_PROTO_SCCP);
253}
254
Holger Hans Peter Freyther2c7f2742010-10-27 11:58:04 +0200255static void nat_send_clrc_bsc(struct sccp_connections *conn)
256{
257 struct msgb *msg;
258 struct msgb *sccp;
259
260 msg = gsm0808_create_clear_command(0x20);
261 if (!msg) {
262 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
263 return;
264 }
265
266 sccp = sccp_create_dt1(&conn->real_ref, msg->data, msg->len);
267 if (!sccp) {
268 LOGP(DNAT, LOGL_ERROR, "Failed to allocate SCCP msg.\n");
269 msgb_free(msg);
270 return;
271 }
272
273 msgb_free(msg);
274 bsc_write(conn->bsc, sccp, IPAC_PROTO_SCCP);
275}
276
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800277static void nat_send_rlc(struct bsc_msc_connection *msc_con,
278 struct sccp_source_reference *src,
Holger Hans Peter Freythercd922a12010-04-08 11:28:12 +0200279 struct sccp_source_reference *dst)
280{
281 struct sccp_connection_release_complete *rlc;
282 struct msgb *msg;
283
284 msg = msgb_alloc_headroom(4096, 128, "rlc");
285 if (!msg) {
286 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
287 return;
288 }
289
290 msg->l2h = msgb_put(msg, sizeof(*rlc));
291 rlc = (struct sccp_connection_release_complete *) msg->l2h;
292 rlc->type = SCCP_MSG_TYPE_RLC;
293 rlc->destination_local_reference = *dst;
294 rlc->source_local_reference = *src;
295
296 ipaccess_prepend_header(msg, IPAC_PROTO_SCCP);
297
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800298 queue_for_msc(msc_con, msg);
Holger Hans Peter Freythercd922a12010-04-08 11:28:12 +0200299}
300
Holger Hans Peter Freyther8c61cdb2010-03-31 07:30:58 +0200301static void send_mgcp_reset(struct bsc_connection *bsc)
302{
Holger Hans Peter Freyther0b776352010-07-23 19:08:55 +0800303 static const uint8_t mgcp_reset[] = {
Holger Hans Peter Freyther8c61cdb2010-03-31 07:30:58 +0200304 "RSIP 1 13@mgw MGCP 1.0\r\n"
305 };
306
307 bsc_write_mgcp(bsc, mgcp_reset, sizeof mgcp_reset - 1);
308}
309
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100310/*
311 * Below is the handling of messages coming
312 * from the MSC and need to be forwarded to
313 * a real BSC.
314 */
Holger Hans Peter Freyther8fd97752010-07-05 14:14:18 +0800315static void initialize_msc_if_needed(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100316{
Holger Hans Peter Freyther8fd97752010-07-05 14:14:18 +0800317 if (msc_con->first_contact)
Holger Hans Peter Freytherdc813932010-04-07 11:20:36 +0200318 return;
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100319
Holger Hans Peter Freyther8fd97752010-07-05 14:14:18 +0800320 msc_con->first_contact = 1;
321 msc_send_reset(msc_con);
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100322}
323
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800324static void send_id_get_response(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freyther6e88b172010-05-15 00:14:58 +0800325{
326 struct msgb *msg = bsc_msc_id_get_resp(nat->token);
327 if (!msg)
328 return;
329
330 ipaccess_prepend_header(msg, IPAC_PROTO_IPACCESS);
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800331 queue_for_msc(msc_con, msg);
Holger Hans Peter Freyther6e88b172010-05-15 00:14:58 +0800332}
333
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100334/*
335 * Currently we are lacking refcounting so we need to copy each message.
336 */
Holger Hans Peter Freyther0b776352010-07-23 19:08:55 +0800337static void bsc_send_data(struct bsc_connection *bsc, const uint8_t *data, unsigned int length, int proto)
Holger Hans Peter Freytherad2136b2010-03-26 07:20:59 +0100338{
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100339 struct msgb *msg;
340
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200341 if (length > 4096 - 128) {
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100342 LOGP(DINP, LOGL_ERROR, "Can not send message of that size.\n");
343 return;
344 }
345
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200346 msg = msgb_alloc_headroom(4096, 128, "to-bsc");
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100347 if (!msg) {
348 LOGP(DINP, LOGL_ERROR, "Failed to allocate memory for BSC msg.\n");
349 return;
350 }
351
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200352 msg->l2h = msgb_put(msg, length);
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100353 memcpy(msg->data, data, length);
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200354
355 bsc_write(bsc, msg, proto);
Holger Hans Peter Freytherad2136b2010-03-26 07:20:59 +0100356}
357
Holger Hans Peter Freythera8f092d2010-09-15 07:43:59 +0800358/*
Holger Hans Peter Freythera67fc6f2010-09-25 17:58:22 +0800359 * Update the release statistics
360 */
361static void bsc_stat_reject(int filter, struct bsc_connection *bsc, int normal)
362{
363 if (!bsc->cfg) {
364 LOGP(DNAT, LOGL_ERROR, "BSC is not authenticated.");
365 return;
366 }
367
368 if (filter >= 0) {
369 LOGP(DNAT, LOGL_ERROR, "Connection was not rejected");
370 return;
371 }
372
373 if (filter == -1)
374 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_ILL_PACKET]);
375 else if (normal)
376 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_REJECTED_MSG]);
377 else
378 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_REJECTED_CR]);
379}
380
381/*
Holger Hans Peter Freythera8f092d2010-09-15 07:43:59 +0800382 * Release an established connection. We will have to release it to the BSC
383 * and to the network and we do it the following way.
384 * 1.) Give up on the MSC side
385 * 1.1) Send a RLSD message, it is a bit non standard but should work, we
386 * ignore the RLC... we might complain about it. Other options would
387 * be to send a Release Request, handle the Release Complete..
388 * 1.2) Mark the data structure to be con_local and wait for 2nd
389 *
390 * 2.) Give up on the BSC side
391 * 2.1) Depending on the con type reject the service, or just close it
392 */
393static void bsc_send_con_release(struct bsc_connection *bsc, struct sccp_connections *con)
394{
395 struct msgb *rlsd;
396 /* 1. release the network */
397 rlsd = sccp_create_rlsd(&con->patched_ref, &con->remote_ref,
398 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
399 if (!rlsd)
400 LOGP(DNAT, LOGL_ERROR, "Failed to create RLSD message.\n");
401 else {
402 ipaccess_prepend_header(rlsd, IPAC_PROTO_SCCP);
403 queue_for_msc(con->msc_con, rlsd);
404 }
405 con->con_local = 1;
Holger Hans Peter Freytherb2b66c22010-09-16 06:41:09 +0800406 con->msc_con = NULL;
Holger Hans Peter Freythera8f092d2010-09-15 07:43:59 +0800407
408 /* 2. release the BSC side */
409 if (con->con_type == NAT_CON_TYPE_LU) {
410 struct msgb *payload, *udt;
411 payload = gsm48_create_loc_upd_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
412
413 if (payload) {
414 gsm0808_prepend_dtap_header(payload, 0);
415 udt = sccp_create_dt1(&con->real_ref, payload->data, payload->len);
416 if (udt)
417 bsc_write(bsc, udt, IPAC_PROTO_SCCP);
418 else
419 LOGP(DNAT, LOGL_ERROR, "Failed to create DT1\n");
420
421 msgb_free(payload);
422 } else {
423 LOGP(DNAT, LOGL_ERROR, "Failed to allocate LU Reject.\n");
424 }
425 }
426
427 rlsd = sccp_create_rlsd(&con->remote_ref, &con->real_ref,
428 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
429 if (!rlsd) {
430 LOGP(DNAT, LOGL_ERROR, "Failed to allocate RLSD for the BSC.\n");
431 sccp_connection_destroy(con);
432 return;
433 }
434
435 con->con_type = NAT_CON_TYPE_LOCAL_REJECT;
436 bsc_write(bsc, rlsd, IPAC_PROTO_SCCP);
437}
438
Holger Hans Peter Freytherfa412e52010-05-16 02:20:26 +0800439static void bsc_send_con_refuse(struct bsc_connection *bsc,
440 struct bsc_nat_parsed *parsed, int con_type)
441{
Holger Hans Peter Freyther605eba72010-06-15 18:52:24 +0800442 struct msgb *payload;
Holger Hans Peter Freytherfa412e52010-05-16 02:20:26 +0800443 struct msgb *refuse;
Holger Hans Peter Freyther605eba72010-06-15 18:52:24 +0800444
Holger Hans Peter Freyther15a1f992010-05-16 20:43:52 +0800445 if (con_type == NAT_CON_TYPE_LU)
Holger Hans Peter Freyther605eba72010-06-15 18:52:24 +0800446 payload = gsm48_create_loc_upd_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
Holger Hans Peter Freyther15a1f992010-05-16 20:43:52 +0800447 else if (con_type == NAT_CON_TYPE_CM_SERV_REQ)
Holger Hans Peter Freyther605eba72010-06-15 18:52:24 +0800448 payload = gsm48_create_mm_serv_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
Holger Hans Peter Freythera624c532010-07-23 19:43:12 +0800449 else {
450 LOGP(DNAT, LOGL_ERROR, "Unknown connection type: %d\n", con_type);
451 payload = NULL;
452 }
Holger Hans Peter Freyther15a1f992010-05-16 20:43:52 +0800453
454 /*
455 * Some BSCs do not handle the payload inside a SCCP CREF msg
456 * so we will need to:
457 * 1.) Allocate a local connection and mark it as local..
458 * 2.) queue data for downstream.. and the RLC should delete everything
459 */
460 if (payload) {
461 struct msgb *cc, *udt, *rlsd;
462 struct sccp_connections *con;
463 con = create_sccp_src_ref(bsc, parsed);
464 if (!con)
465 goto send_refuse;
466
467 /* declare it local and assign a unique remote_ref */
468 con->con_type = NAT_CON_TYPE_LOCAL_REJECT;
469 con->con_local = 1;
470 con->has_remote_ref = 1;
471 con->remote_ref = con->patched_ref;
472
473 /* 1. create a confirmation */
474 cc = sccp_create_cc(&con->remote_ref, &con->real_ref);
475 if (!cc)
476 goto send_refuse;
477
478 /* 2. create the DT1 */
Holger Hans Peter Freyther605eba72010-06-15 18:52:24 +0800479 gsm0808_prepend_dtap_header(payload, 0);
Holger Hans Peter Freyther15a1f992010-05-16 20:43:52 +0800480 udt = sccp_create_dt1(&con->real_ref, payload->data, payload->len);
481 if (!udt) {
482 msgb_free(cc);
483 goto send_refuse;
484 }
485
486 /* 3. send a RLSD */
487 rlsd = sccp_create_rlsd(&con->remote_ref, &con->real_ref,
488 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
489 if (!rlsd) {
490 msgb_free(cc);
491 msgb_free(udt);
492 goto send_refuse;
493 }
494
495 bsc_write(bsc, cc, IPAC_PROTO_SCCP);
496 bsc_write(bsc, udt, IPAC_PROTO_SCCP);
497 bsc_write(bsc, rlsd, IPAC_PROTO_SCCP);
498 msgb_free(payload);
499 return;
Holger Hans Peter Freyther605eba72010-06-15 18:52:24 +0800500 }
501
Holger Hans Peter Freyther605eba72010-06-15 18:52:24 +0800502
Holger Hans Peter Freyther15a1f992010-05-16 20:43:52 +0800503send_refuse:
Holger Hans Peter Freyther605eba72010-06-15 18:52:24 +0800504 if (payload)
505 msgb_free(payload);
506
Holger Hans Peter Freyther15a1f992010-05-16 20:43:52 +0800507 refuse = sccp_create_refuse(parsed->src_local_ref,
508 SCCP_REFUSAL_SCCP_FAILURE, NULL, 0);
Holger Hans Peter Freytherfa412e52010-05-16 02:20:26 +0800509 if (!refuse) {
510 LOGP(DNAT, LOGL_ERROR,
511 "Creating refuse msg failed for SCCP 0x%x on BSC Nr: %d.\n",
512 sccp_src_ref_to_int(parsed->src_local_ref), bsc->cfg->nr);
513 return;
514 }
515
516 bsc_write(bsc, refuse, IPAC_PROTO_SCCP);
517}
518
519
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800520static int forward_sccp_to_bts(struct bsc_msc_connection *msc_con, struct msgb *msg)
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100521{
Holger Hans Peter Freythera624c532010-07-23 19:43:12 +0800522 struct sccp_connections *con = NULL;
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800523 struct bsc_connection *bsc;
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800524 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200525 int proto;
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100526
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100527 /* filter, drop, patch the message? */
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800528 parsed = bsc_nat_parse(msg);
529 if (!parsed) {
530 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100531 return -1;
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800532 }
533
Holger Hans Peter Freytherbbf6b652010-01-30 11:53:30 +0100534 if (bsc_nat_filter_ipa(DIR_BSC, msg, parsed))
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800535 goto exit;
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +0800536
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200537 proto = parsed->ipa_proto;
538
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100539 /* Route and modify the SCCP packet */
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200540 if (proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100541 switch (parsed->sccp_type) {
542 case SCCP_MSG_TYPE_UDT:
543 /* forward UDT messages to every BSC */
544 goto send_to_all;
545 break;
546 case SCCP_MSG_TYPE_RLSD:
547 case SCCP_MSG_TYPE_CREF:
548 case SCCP_MSG_TYPE_DT1:
Holger Hans Peter Freyther567e8402010-04-06 10:22:34 +0200549 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800550 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
Holger Hans Peter Freytherdccb9152010-06-15 18:49:53 +0800551 if (parsed->gsm_type == BSS_MAP_MSG_ASSIGMENT_RQST) {
Holger Hans Peter Freyther5fa42dd2010-04-12 12:17:09 +0200552 counter_inc(nat->stats.sccp.calls);
553
Holger Hans Peter Freytherdccb9152010-06-15 18:49:53 +0800554 if (con) {
Holger Hans Peter Freytherccefba62010-06-17 18:16:00 +0800555 struct rate_ctr_group *ctrg;
556 ctrg = con->bsc->cfg->stats.ctrg;
557 rate_ctr_inc(&ctrg->ctr[BCFG_CTR_SCCP_CALLS]);
Holger Hans Peter Freyther926c5fd2010-08-28 18:22:14 +0800558 if (bsc_mgcp_assign_patch(con, msg) != 0)
Holger Hans Peter Freytherdccb9152010-06-15 18:49:53 +0800559 LOGP(DNAT, LOGL_ERROR, "Failed to assign...\n");
560 } else
561 LOGP(DNAT, LOGL_ERROR, "Assignment command but no BSC.\n");
562 }
Holger Hans Peter Freythera25e3ec2010-03-29 17:18:42 +0200563 break;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100564 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800565 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
566 if (!con || update_sccp_src_ref(con, parsed) != 0)
Holger Hans Peter Freythera25e3ec2010-03-29 17:18:42 +0200567 goto exit;
Holger Hans Peter Freyther2f1f55d2010-06-15 18:47:49 +0800568 break;
569 case SCCP_MSG_TYPE_RLC:
570 LOGP(DNAT, LOGL_ERROR, "Unexpected release complete from MSC.\n");
571 goto exit;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100572 break;
573 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100574 /* MSC never opens a SCCP connection, fall through */
575 default:
576 goto exit;
577 }
Holger Hans Peter Freyther8d298282010-04-06 16:07:44 +0200578
Holger Hans Peter Freythercd922a12010-04-08 11:28:12 +0200579 if (!con && parsed->sccp_type == SCCP_MSG_TYPE_RLSD) {
580 LOGP(DNAT, LOGL_NOTICE, "Sending fake RLC on RLSD message to network.\n");
581 /* Exchange src/dest for the reply */
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800582 nat_send_rlc(msc_con, parsed->dest_local_ref, parsed->src_local_ref);
Holger Hans Peter Freythercd922a12010-04-08 11:28:12 +0200583 } else if (!con)
Holger Hans Peter Freyther117e7a72010-05-15 19:13:52 +0800584 LOGP(DNAT, LOGL_ERROR, "Unknown connection for msg type: 0x%x from the MSC.\n", parsed->sccp_type);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100585 }
586
587 talloc_free(parsed);
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800588 if (!con)
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100589 return -1;
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800590 if (!con->bsc->authenticated) {
Holger Hans Peter Freyther3b960892010-06-15 19:06:18 +0800591 LOGP(DNAT, LOGL_ERROR, "Selected BSC not authenticated.\n");
Holger Hans Peter Freytherfb5a4872010-02-08 23:24:32 +0100592 return -1;
593 }
594
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200595 bsc_send_data(con->bsc, msg->l2h, msgb_l2len(msg), proto);
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100596 return 0;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100597
598send_to_all:
Holger Hans Peter Freytherfd2c7572010-06-15 18:46:36 +0800599 /*
600 * Filter Paging from the network. We do not want to send a PAGING
601 * Command to every BSC in our network. We will analys the PAGING
602 * message and then send it to the authenticated messages...
603 */
604 if (parsed->ipa_proto == IPAC_PROTO_SCCP && parsed->gsm_type == BSS_MAP_MSG_PAGING) {
Holger Hans Peter Freyther935b2df2010-04-17 08:07:19 +0200605 int lac;
606 bsc = bsc_nat_find_bsc(nat, msg, &lac);
Holger Hans Peter Freyther7acf4622010-04-21 19:05:14 +0800607 if (bsc && bsc->cfg->forbid_paging)
Holger Hans Peter Freyther19ccb482010-04-21 20:17:18 +0800608 LOGP(DNAT, LOGL_DEBUG, "Paging forbidden for BTS: %d\n", bsc->cfg->nr);
Holger Hans Peter Freyther7acf4622010-04-21 19:05:14 +0800609 else if (bsc)
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200610 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freythere0ca9d22010-08-06 20:15:40 +0800611 else if (lac != -1)
Holger Hans Peter Freyther935b2df2010-04-17 08:07:19 +0200612 LOGP(DNAT, LOGL_ERROR, "Could not determine BSC for paging on lac: %d/0x%x\n",
613 lac, lac);
Holger Hans Peter Freytherfd2c7572010-06-15 18:46:36 +0800614
615 goto exit;
616 }
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100617 /* currently send this to every BSC connected */
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +0800618 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
Holger Hans Peter Freytherfb5a4872010-02-08 23:24:32 +0100619 if (!bsc->authenticated)
620 continue;
621
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200622 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100623 }
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800624
625exit:
626 talloc_free(parsed);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100627 return 0;
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100628}
629
Holger Hans Peter Freyther4a860a02010-06-15 18:47:29 +0800630static void msc_connection_was_lost(struct bsc_msc_connection *con)
631{
Holger Hans Peter Freyther3399df32010-03-29 08:04:09 +0200632 struct bsc_connection *bsc, *tmp;
633
634 LOGP(DMSC, LOGL_ERROR, "Closing all connections downstream.\n");
635 llist_for_each_entry_safe(bsc, tmp, &nat->bsc_connections, list_entry)
Holger Hans Peter Freyther1512dc22010-04-27 13:21:39 +0800636 bsc_close_connection(bsc);
Holger Hans Peter Freyther3399df32010-03-29 08:04:09 +0200637
Holger Hans Peter Freyther1f278392010-03-31 09:16:56 +0200638 bsc_mgcp_free_endpoints(nat);
Holger Hans Peter Freyther3399df32010-03-29 08:04:09 +0200639 bsc_msc_schedule_connect(con);
Holger Hans Peter Freyther4a860a02010-06-15 18:47:29 +0800640}
641
Holger Hans Peter Freyther0cb4fd92010-08-04 02:31:55 +0800642static void msc_connection_connected(struct bsc_msc_connection *con)
643{
644 counter_inc(nat->stats.msc.reconn);
645}
646
Holger Hans Peter Freyther8f515a02010-04-08 10:31:07 +0200647static void msc_send_reset(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freyther2b3505b2010-04-07 10:46:30 +0200648{
Holger Hans Peter Freyther0b776352010-07-23 19:08:55 +0800649 static const uint8_t reset[] = {
Holger Hans Peter Freytherc48a5d92010-04-07 11:11:11 +0200650 0x00, 0x12, 0xfd,
Holger Hans Peter Freyther2b3505b2010-04-07 10:46:30 +0200651 0x09, 0x00, 0x03, 0x05, 0x07, 0x02, 0x42, 0xfe,
652 0x02, 0x42, 0xfe, 0x06, 0x00, 0x04, 0x30, 0x04,
653 0x01, 0x20
654 };
655
656 struct msgb *msg;
657
658 msg = msgb_alloc_headroom(4096, 128, "08.08 reset");
659 if (!msg) {
660 LOGP(DMSC, LOGL_ERROR, "Failed to allocate reset msg.\n");
661 return;
662 }
663
664 msg->l2h = msgb_put(msg, sizeof(reset));
665 memcpy(msg->l2h, reset, msgb_l2len(msg));
666
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800667 queue_for_msc(msc_con, msg);
Holger Hans Peter Freyther2b3505b2010-04-07 10:46:30 +0200668
669 LOGP(DMSC, LOGL_NOTICE, "Scheduled GSM0808 reset msg for the MSC.\n");
670}
671
Holger Hans Peter Freyther257a8cc2010-06-15 18:47:02 +0800672static int ipaccess_msc_read_cb(struct bsc_fd *bfd)
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100673{
674 int error;
Holger Hans Peter Freyther8fd97752010-07-05 14:14:18 +0800675 struct bsc_msc_connection *msc_con;
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100676 struct msgb *msg = ipaccess_read_msg(bfd, &error);
677 struct ipaccess_head *hh;
678
Holger Hans Peter Freyther8fd97752010-07-05 14:14:18 +0800679 msc_con = (struct bsc_msc_connection *) bfd->data;
680
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100681 if (!msg) {
Holger Hans Peter Freytherbae6b8b2010-04-23 00:23:03 +0800682 if (error == 0)
Holger Hans Peter Freyther8f99b822010-01-29 05:58:43 +0100683 LOGP(DNAT, LOGL_FATAL, "The connection the MSC was lost, exiting\n");
Holger Hans Peter Freytherbae6b8b2010-04-23 00:23:03 +0800684 else
685 LOGP(DNAT, LOGL_ERROR, "Failed to parse ip access message: %d\n", error);
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100686
Holger Hans Peter Freyther8fd97752010-07-05 14:14:18 +0800687 bsc_msc_lost(msc_con);
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100688 return -1;
689 }
690
Holger Hans Peter Freyther8f99b822010-01-29 05:58:43 +0100691 LOGP(DNAT, LOGL_DEBUG, "MSG from MSC: %s proto: %d\n", hexdump(msg->data, msg->len), msg->l2h[0]);
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100692
693 /* handle base message handling */
694 hh = (struct ipaccess_head *) msg->data;
695 ipaccess_rcvmsg_base(msg, bfd);
696
697 /* initialize the networking. This includes sending a GSM08.08 message */
Holger Hans Peter Freyther6e88b172010-05-15 00:14:58 +0800698 if (hh->proto == IPAC_PROTO_IPACCESS) {
699 if (msg->l2h[0] == IPAC_MSGT_ID_ACK)
Holger Hans Peter Freyther8fd97752010-07-05 14:14:18 +0800700 initialize_msc_if_needed(msc_con);
Holger Hans Peter Freyther6e88b172010-05-15 00:14:58 +0800701 else if (msg->l2h[0] == IPAC_MSGT_ID_GET)
Holger Hans Peter Freyther8fd97752010-07-05 14:14:18 +0800702 send_id_get_response(msc_con);
Holger Hans Peter Freyther6e88b172010-05-15 00:14:58 +0800703 } else if (hh->proto == IPAC_PROTO_SCCP)
Holger Hans Peter Freyther8fd97752010-07-05 14:14:18 +0800704 forward_sccp_to_bts(msc_con, msg);
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100705
Holger Hans Peter Freyther418fe112010-06-15 18:46:48 +0800706 msgb_free(msg);
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100707 return 0;
708}
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +0800709
Holger Hans Peter Freyther257a8cc2010-06-15 18:47:02 +0800710static int ipaccess_msc_write_cb(struct bsc_fd *bfd, struct msgb *msg)
711{
712 int rc;
713 rc = write(bfd->fd, msg->data, msg->len);
714
715 if (rc != msg->len) {
716 LOGP(DNAT, LOGL_ERROR, "Failed to write MSG to MSC.\n");
717 return -1;
718 }
719
720 return rc;
721}
722
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +0100723/*
724 * Below is the handling of messages coming
725 * from the BSC and need to be forwarded to
726 * a real BSC.
727 */
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100728
729/*
730 * Remove the connection from the connections list,
731 * remove it from the patching of SCCP header lists
732 * as well. Maybe in the future even close connection..
733 */
Holger Hans Peter Freyther1512dc22010-04-27 13:21:39 +0800734void bsc_close_connection(struct bsc_connection *connection)
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100735{
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100736 struct sccp_connections *sccp_patch, *tmp;
Holger Hans Peter Freyther3357a7b2010-06-17 18:29:42 +0800737 struct rate_ctr *ctr = NULL;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100738
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800739 /* stop the timeout timer */
740 bsc_del_timer(&connection->id_timeout);
Holger Hans Peter Freyther582511a2010-05-02 19:28:59 +0800741 bsc_del_timer(&connection->ping_timeout);
742 bsc_del_timer(&connection->pong_timeout);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800743
Holger Hans Peter Freyther3357a7b2010-06-17 18:29:42 +0800744 if (connection->cfg)
745 ctr = &connection->cfg->stats.ctrg->ctr[BCFG_CTR_DROPPED_SCCP];
746
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100747 /* remove all SCCP connections */
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +0800748 llist_for_each_entry_safe(sccp_patch, tmp, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100749 if (sccp_patch->bsc != connection)
750 continue;
751
Holger Hans Peter Freyther3357a7b2010-06-17 18:29:42 +0800752 if (ctr)
753 rate_ctr_inc(ctr);
Holger Hans Peter Freytherb2b66c22010-09-16 06:41:09 +0800754 if (sccp_patch->has_remote_ref && !sccp_patch->con_local)
Holger Hans Peter Freyther0a891d02010-10-27 10:54:11 +0200755 nat_send_rlsd_msc(sccp_patch);
Holger Hans Peter Freyther8be49b32010-03-30 10:45:48 +0200756 sccp_connection_destroy(sccp_patch);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100757 }
758
Holger Hans Peter Freytherc0ff1d02010-04-05 23:09:27 +0200759 /* close endpoints allocated by this BSC */
760 bsc_mgcp_clear_endpoints_for(connection);
761
Holger Hans Peter Freyther53cd9852010-04-22 12:04:36 +0800762 bsc_unregister_fd(&connection->write_queue.bfd);
763 close(connection->write_queue.bfd.fd);
764 write_queue_clear(&connection->write_queue);
765 llist_del(&connection->list_entry);
766
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100767 talloc_free(connection);
768}
769
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800770static void ipaccess_close_bsc(void *data)
771{
Holger Hans Peter Freyther3626e972010-04-17 07:58:17 +0200772 struct sockaddr_in sock;
773 socklen_t len = sizeof(sock);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800774 struct bsc_connection *conn = data;
775
Holger Hans Peter Freyther3626e972010-04-17 07:58:17 +0200776
777 getpeername(conn->write_queue.bfd.fd, (struct sockaddr *) &sock, &len);
778 LOGP(DNAT, LOGL_ERROR, "BSC on %s didn't respond to identity request. Closing.\n",
779 inet_ntoa(sock.sin_addr));
Holger Hans Peter Freyther1512dc22010-04-27 13:21:39 +0800780 bsc_close_connection(conn);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800781}
782
783static void ipaccess_auth_bsc(struct tlv_parsed *tvp, struct bsc_connection *bsc)
784{
785 struct bsc_config *conf;
Holger Hans Peter Freytherdfd61a32010-09-18 06:44:24 +0800786 const char *token = (const char *) TLVP_VAL(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freyther48840962010-10-14 17:19:58 +0200787 const int len = TLVP_LEN(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800788
Holger Hans Peter Freyther4dc44ea2010-05-02 18:58:10 +0800789 if (bsc->cfg) {
790 LOGP(DNAT, LOGL_ERROR, "Reauth on fd %d bsc nr %d\n",
791 bsc->write_queue.bfd.fd, bsc->cfg->nr);
792 return;
793 }
794
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800795 llist_for_each_entry(conf, &bsc->nat->bsc_configs, entry) {
Holger Hans Peter Freyther48840962010-10-14 17:19:58 +0200796 if (strncmp(conf->token, token, len) == 0) {
Holger Hans Peter Freytherccefba62010-06-17 18:16:00 +0800797 rate_ctr_inc(&conf->stats.ctrg->ctr[BCFG_CTR_NET_RECONN]);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800798 bsc->authenticated = 1;
Holger Hans Peter Freytherbfcf5192010-04-06 15:11:34 +0200799 bsc->cfg = conf;
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800800 bsc_del_timer(&bsc->id_timeout);
Holger Hans Peter Freyther1f040832010-10-08 22:08:29 +0800801 LOGP(DNAT, LOGL_NOTICE, "Authenticated bsc nr: %d on fd %d\n",
802 conf->nr, bsc->write_queue.bfd.fd);
Holger Hans Peter Freyther582511a2010-05-02 19:28:59 +0800803 start_ping_pong(bsc);
Holger Hans Peter Freyther8b2302f2010-04-17 07:59:57 +0200804 return;
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800805 }
806 }
Holger Hans Peter Freyther8b2302f2010-04-17 07:59:57 +0200807
Holger Hans Peter Freyther4cc58092010-05-05 17:03:44 +0800808 LOGP(DNAT, LOGL_ERROR, "No bsc found for token %s on fd: %d.\n", token,
809 bsc->write_queue.bfd.fd);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800810}
811
Holger Hans Peter Freyther2e728072010-10-03 19:41:42 +0800812static void handle_con_stats(struct sccp_connections *con)
813{
814 struct rate_ctr_group *ctrg;
815 int id = bsc_conn_type_to_ctr(con);
816
817 if (id == -1)
818 return;
819
820 if (!con->bsc || !con->bsc->cfg)
821 return;
822
823 ctrg = con->bsc->cfg->stats.ctrg;
824 rate_ctr_inc(&ctrg->ctr[id]);
825}
826
Holger Hans Peter Freyther4ce32702010-03-26 07:24:34 +0100827static int forward_sccp_to_msc(struct bsc_connection *bsc, struct msgb *msg)
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100828{
Holger Hans Peter Freytherc3dccc72010-05-16 16:36:36 +0800829 int con_filter = 0;
Holger Hans Peter Freyther9bd8bd72010-09-29 01:19:42 +0800830 char *imsi = NULL;
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800831 struct bsc_msc_connection *con_msc = NULL;
Holger Hans Peter Freytherdf961532010-05-16 16:30:42 +0800832 struct bsc_connection *con_bsc = NULL;
Holger Hans Peter Freytherd5a2bc42010-05-16 02:00:40 +0800833 int con_type;
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800834 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100835
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800836 /* Parse and filter messages */
837 parsed = bsc_nat_parse(msg);
838 if (!parsed) {
839 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freyther45f62952010-03-30 07:35:46 +0200840 msgb_free(msg);
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800841 return -1;
842 }
843
Holger Hans Peter Freytherbbf6b652010-01-30 11:53:30 +0100844 if (bsc_nat_filter_ipa(DIR_MSC, msg, parsed))
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800845 goto exit;
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +0800846
Holger Hans Peter Freyther5a723b62010-04-02 03:42:44 +0200847 /*
848 * check authentication after filtering to not reject auth
849 * responses coming from the BSC. We have to make sure that
850 * nothing from the exit path will forward things to the MSC
851 */
852 if (!bsc->authenticated) {
853 LOGP(DNAT, LOGL_ERROR, "BSC is not authenticated.\n");
854 msgb_free(msg);
855 return -1;
856 }
857
858
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100859 /* modify the SCCP entries */
860 if (parsed->ipa_proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther8582bb92010-09-15 00:38:54 +0800861 int filter;
Holger Hans Peter Freytherdf961532010-05-16 16:30:42 +0800862 struct sccp_connections *con;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100863 switch (parsed->sccp_type) {
864 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther9bd8bd72010-09-29 01:19:42 +0800865 filter = bsc_nat_filter_sccp_cr(bsc, msg, parsed, &con_type, &imsi);
Holger Hans Peter Freythera67fc6f2010-09-25 17:58:22 +0800866 if (filter < 0) {
867 bsc_stat_reject(filter, bsc, 0);
Holger Hans Peter Freyther6d357162010-05-14 03:39:56 +0800868 goto exit3;
Holger Hans Peter Freythera67fc6f2010-09-25 17:58:22 +0800869 }
870
Holger Hans Peter Freythere1a16482010-05-16 16:51:31 +0800871 if (!create_sccp_src_ref(bsc, parsed))
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100872 goto exit2;
Holger Hans Peter Freytherda30c4b2010-04-21 18:56:12 +0800873 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther6200fd92010-07-05 13:33:18 +0800874 con->msc_con = bsc->nat->msc_con;
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800875 con_msc = con->msc_con;
Holger Hans Peter Freyther8e69f0c2010-05-16 02:06:11 +0800876 con->con_type = con_type;
Holger Hans Peter Freyther531d3e32010-09-15 00:41:19 +0800877 con->imsi_checked = filter;
Holger Hans Peter Freyther9bd8bd72010-09-29 01:19:42 +0800878 if (imsi)
879 con->imsi = talloc_steal(con, imsi);
880 imsi = NULL;
Holger Hans Peter Freytherdf961532010-05-16 16:30:42 +0800881 con_bsc = con->bsc;
Holger Hans Peter Freyther2e728072010-10-03 19:41:42 +0800882 handle_con_stats(con);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100883 break;
884 case SCCP_MSG_TYPE_RLSD:
885 case SCCP_MSG_TYPE_CREF:
886 case SCCP_MSG_TYPE_DT1:
887 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freyther567e8402010-04-06 10:22:34 +0200888 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freytherda30c4b2010-04-21 18:56:12 +0800889 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freytherdf961532010-05-16 16:30:42 +0800890 if (con) {
Holger Hans Peter Freyther655e9752010-10-06 00:48:36 +0800891 /* only filter non local connections */
892 if (!con->con_local) {
893 filter = bsc_nat_filter_dt(bsc, msg, con, parsed);
894 if (filter < 0) {
895 bsc_stat_reject(filter, bsc, 1);
896 bsc_send_con_release(bsc, con);
897 con = NULL;
898 goto exit2;
899 }
Holger Hans Peter Freyther908bc9b2010-09-29 19:32:55 +0800900
901 /* hand data to a side channel */
Holger Hans Peter Freyther5cd2fae2010-10-15 10:09:31 +0200902 if (bsc_check_ussd(con, parsed, msg) == 1)
903 con->con_local = 2;
Holger Hans Peter Freytherc3ac9782010-10-21 12:12:57 +0200904
905 /*
906 * Optionally rewrite setup message. This can
907 * replace the msg and the parsed structure becomes
908 * invalid.
909 */
Holger Hans Peter Freyther0d5fdbb2010-10-21 14:46:57 +0200910 msg = bsc_nat_rewrite_setup(bsc->nat, msg, parsed, con->imsi);
Holger Hans Peter Freytherc3ac9782010-10-21 12:12:57 +0200911 talloc_free(parsed);
912 parsed = NULL;
Holger Hans Peter Freyther1b4bde62010-09-15 01:11:08 +0800913 }
Holger Hans Peter Freyther655e9752010-10-06 00:48:36 +0800914
915 con_bsc = con->bsc;
916 con_msc = con->msc_con;
917 con_filter = con->con_local;
Holger Hans Peter Freytherdf961532010-05-16 16:30:42 +0800918 }
Holger Hans Peter Freyther908bc9b2010-09-29 19:32:55 +0800919
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100920 break;
921 case SCCP_MSG_TYPE_RLC:
Holger Hans Peter Freytherda30c4b2010-04-21 18:56:12 +0800922 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freytherdf961532010-05-16 16:30:42 +0800923 if (con) {
Holger Hans Peter Freytherdf961532010-05-16 16:30:42 +0800924 con_bsc = con->bsc;
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800925 con_msc = con->msc_con;
Holger Hans Peter Freytherc3dccc72010-05-16 16:36:36 +0800926 con_filter = con->con_local;
Holger Hans Peter Freytherdf961532010-05-16 16:30:42 +0800927 }
Holger Hans Peter Freyther38712d02010-03-31 09:15:05 +0200928 remove_sccp_src_ref(bsc, msg, parsed);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100929 break;
930 case SCCP_MSG_TYPE_UDT:
931 /* simply forward everything */
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800932 con = NULL;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100933 break;
934 default:
Holger Hans Peter Freyther2f1f55d2010-06-15 18:47:49 +0800935 LOGP(DNAT, LOGL_ERROR, "Not forwarding to msc sccp type: 0x%x\n", parsed->sccp_type);
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800936 con = NULL;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100937 goto exit2;
938 break;
939 }
Holger Hans Peter Freytherd5cd3042010-10-13 23:52:01 +0200940 } else if (parsed->ipa_proto == IPAC_PROTO_MGCP) {
Holger Hans Peter Freyther9fec0102010-04-01 10:16:28 +0200941 bsc_mgcp_forward(bsc, msg);
942 goto exit2;
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800943 } else {
944 LOGP(DNAT, LOGL_ERROR, "Not forwarding unknown stream id: 0x%x\n", parsed->ipa_proto);
945 goto exit2;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100946 }
947
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800948 if (con_msc && con_bsc != bsc) {
Holger Hans Peter Freyther4107f982010-04-21 18:49:55 +0800949 LOGP(DNAT, LOGL_ERROR, "The connection belongs to a different BTS: input: %d con: %d\n",
Holger Hans Peter Freytherdf961532010-05-16 16:30:42 +0800950 bsc->cfg->nr, con_bsc->cfg->nr);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100951 goto exit2;
952 }
953
Holger Hans Peter Freyther79a6baf2010-09-15 17:39:44 +0800954 /* do not forward messages to the MSC */
955 if (con_filter)
956 goto exit2;
957
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800958 if (!con_msc) {
Holger Hans Peter Freyther43bd9d12010-09-15 00:14:48 +0800959 LOGP(DNAT, LOGL_ERROR, "Not forwarding data bsc_nr: %d ipa: %d type: 0x%x\n",
960 bsc->cfg->nr,
961 parsed ? parsed->ipa_proto : -1,
962 parsed ? parsed->sccp_type : -1);
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800963 goto exit2;
964 }
965
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100966 /* send the non-filtered but maybe modified msg */
Holger Hans Peter Freyther6a2fe9a2010-07-05 13:58:40 +0800967 queue_for_msc(con_msc, msg);
Holger Hans Peter Freytherc3ac9782010-10-21 12:12:57 +0200968 if (parsed)
969 talloc_free(parsed);
Holger Hans Peter Freyther257a8cc2010-06-15 18:47:02 +0800970 return 0;
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800971
972exit:
Holger Hans Peter Freyther722ead82010-01-30 12:45:10 +0100973 /* if we filter out the reset send an ack to the BSC */
974 if (parsed->bssap == 0 && parsed->gsm_type == BSS_MAP_MSG_RESET) {
Holger Hans Peter Freyther4ce32702010-03-26 07:24:34 +0100975 send_reset_ack(bsc);
976 send_reset_ack(bsc);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800977 } else if (parsed->ipa_proto == IPAC_PROTO_IPACCESS) {
978 /* do we know who is handling this? */
979 if (msg->l2h[0] == IPAC_MSGT_ID_RESP) {
980 struct tlv_parsed tvp;
981 ipaccess_idtag_parse(&tvp,
982 (unsigned char *) msg->l2h + 2,
983 msgb_l2len(msg) - 2);
984 if (TLVP_PRESENT(&tvp, IPAC_IDTAG_UNITNAME))
985 ipaccess_auth_bsc(&tvp, bsc);
986 }
987
988 goto exit2;
Holger Hans Peter Freyther722ead82010-01-30 12:45:10 +0100989 }
990
Holger Hans Peter Freyther171d9302010-05-15 00:29:50 +0800991exit2:
Holger Hans Peter Freyther9bd8bd72010-09-29 01:19:42 +0800992 if (imsi)
993 talloc_free(imsi);
Holger Hans Peter Freyther171d9302010-05-15 00:29:50 +0800994 talloc_free(parsed);
995 msgb_free(msg);
996 return -1;
997
Holger Hans Peter Freyther6d357162010-05-14 03:39:56 +0800998exit3:
999 /* send a SCCP Connection Refused */
Holger Hans Peter Freyther9bd8bd72010-09-29 01:19:42 +08001000 if (imsi)
1001 talloc_free(imsi);
Holger Hans Peter Freytherfa412e52010-05-16 02:20:26 +08001002 bsc_send_con_refuse(bsc, parsed, con_type);
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +08001003 talloc_free(parsed);
Holger Hans Peter Freyther257a8cc2010-06-15 18:47:02 +08001004 msgb_free(msg);
1005 return -1;
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001006}
1007
Holger Hans Peter Freyther84010542010-06-15 18:47:10 +08001008static int ipaccess_bsc_read_cb(struct bsc_fd *bfd)
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001009{
1010 int error;
Holger Hans Peter Freyther4ce32702010-03-26 07:24:34 +01001011 struct bsc_connection *bsc = bfd->data;
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001012 struct msgb *msg = ipaccess_read_msg(bfd, &error);
Holger Hans Peter Freyther453235a2010-06-15 18:51:33 +08001013 struct ipaccess_head *hh;
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001014
1015 if (!msg) {
Holger Hans Peter Freytherbae6b8b2010-04-23 00:23:03 +08001016 if (error == 0)
Holger Hans Peter Freyther3c8c8152010-05-01 10:37:15 +08001017 LOGP(DNAT, LOGL_ERROR,
1018 "The connection to the BSC Nr: %d was lost. Cleaning it\n",
1019 bsc->cfg ? bsc->cfg->nr : -1);
Holger Hans Peter Freytherbae6b8b2010-04-23 00:23:03 +08001020 else
Holger Hans Peter Freyther3c8c8152010-05-01 10:37:15 +08001021 LOGP(DNAT, LOGL_ERROR,
1022 "Stream error on BSC Nr: %d. Failed to parse ip access message: %d\n",
1023 bsc->cfg ? bsc->cfg->nr : -1, error);
Holger Hans Peter Freytherbae6b8b2010-04-23 00:23:03 +08001024
Holger Hans Peter Freyther1512dc22010-04-27 13:21:39 +08001025 bsc_close_connection(bsc);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001026 return -1;
1027 }
1028
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001029
Holger Hans Peter Freyther8f99b822010-01-29 05:58:43 +01001030 LOGP(DNAT, LOGL_DEBUG, "MSG from BSC: %s proto: %d\n", hexdump(msg->data, msg->len), msg->l2h[0]);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001031
1032 /* Handle messages from the BSC */
Holger Hans Peter Freyther453235a2010-06-15 18:51:33 +08001033 hh = (struct ipaccess_head *) msg->data;
Holger Hans Peter Freyther582511a2010-05-02 19:28:59 +08001034
Holger Hans Peter Freyther453235a2010-06-15 18:51:33 +08001035 /* stop the pong timeout */
1036 if (hh->proto == IPAC_PROTO_IPACCESS) {
1037 if (msg->l2h[0] == IPAC_MSGT_PONG) {
Holger Hans Peter Freyther582511a2010-05-02 19:28:59 +08001038 bsc_del_timer(&bsc->pong_timeout);
1039 msgb_free(msg);
1040 return 0;
Holger Hans Peter Freyther453235a2010-06-15 18:51:33 +08001041 } else if (msg->l2h[0] == IPAC_MSGT_PING) {
1042 send_pong(bsc);
1043 msgb_free(msg);
1044 return 0;
Holger Hans Peter Freyther582511a2010-05-02 19:28:59 +08001045 }
1046 }
1047
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001048 /* FIXME: Currently no PONG is sent to the BSC */
1049 /* FIXME: Currently no ID ACK is sent to the BSC */
Holger Hans Peter Freyther4ce32702010-03-26 07:24:34 +01001050 forward_sccp_to_msc(bsc, msg);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001051
1052 return 0;
1053}
1054
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01001055static int ipaccess_listen_bsc_cb(struct bsc_fd *bfd, unsigned int what)
1056{
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001057 struct bsc_connection *bsc;
Holger Hans Peter Freyther74d00422010-05-05 20:33:34 +08001058 int fd, rc, on;
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01001059 struct sockaddr_in sa;
1060 socklen_t sa_len = sizeof(sa);
1061
1062 if (!(what & BSC_FD_READ))
1063 return 0;
1064
Holger Hans Peter Freyther74d00422010-05-05 20:33:34 +08001065 fd = accept(bfd->fd, (struct sockaddr *) &sa, &sa_len);
1066 if (fd < 0) {
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01001067 perror("accept");
Holger Hans Peter Freyther74d00422010-05-05 20:33:34 +08001068 return fd;
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01001069 }
1070
Holger Hans Peter Freyther5fa42dd2010-04-12 12:17:09 +02001071 /* count the reconnect */
1072 counter_inc(nat->stats.bsc.reconn);
1073
Holger Hans Peter Freyther3399df32010-03-29 08:04:09 +02001074 /*
1075 * if we are not connected to a msc... just close the socket
1076 */
Holger Hans Peter Freyther4d0fbda2010-07-05 14:39:44 +08001077 if (!bsc_nat_msc_is_connected(nat)) {
Holger Hans Peter Freyther3399df32010-03-29 08:04:09 +02001078 LOGP(DNAT, LOGL_NOTICE, "Disconnecting BSC due lack of MSC connection.\n");
Holger Hans Peter Freyther74d00422010-05-05 20:33:34 +08001079 close(fd);
Holger Hans Peter Freyther3399df32010-03-29 08:04:09 +02001080 return 0;
1081 }
1082
Holger Hans Peter Freyther150fa582010-05-05 18:58:13 +08001083 on = 1;
Holger Hans Peter Freytherd58afeb2010-05-05 20:42:14 +08001084 rc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
Holger Hans Peter Freyther74d00422010-05-05 20:33:34 +08001085 if (rc != 0)
Holger Hans Peter Freyther150fa582010-05-05 18:58:13 +08001086 LOGP(DNAT, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
1087
Holger Hans Peter Freyther9d42d322010-05-31 10:36:35 +08001088 rc = setsockopt(fd, IPPROTO_IP, IP_TOS,
Holger Hans Peter Freytherf0374a52010-07-27 19:21:53 +08001089 &nat->bsc_ip_dscp, sizeof(nat->bsc_ip_dscp));
Holger Hans Peter Freyther9d42d322010-05-31 10:36:35 +08001090 if (rc != 0)
1091 LOGP(DNAT, LOGL_ERROR, "Failed to set IP_TOS: %s\n", strerror(errno));
1092
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01001093 /* todo... do something with the connection */
Holger Hans Peter Freyther738dbdf2010-01-12 21:35:32 +01001094 /* todo... use GNUtls to see if we want to trust this as a BTS */
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01001095
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001096 /*
1097 *
1098 */
Holger Hans Peter Freyther090a4d82010-06-15 18:48:01 +08001099 bsc = bsc_connection_alloc(nat);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001100 if (!bsc) {
Holger Hans Peter Freyther8f99b822010-01-29 05:58:43 +01001101 LOGP(DNAT, LOGL_ERROR, "Failed to allocate BSC struct.\n");
Holger Hans Peter Freyther74d00422010-05-05 20:33:34 +08001102 close(fd);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001103 return -1;
1104 }
1105
Holger Hans Peter Freyther84010542010-06-15 18:47:10 +08001106 bsc->write_queue.bfd.data = bsc;
Holger Hans Peter Freyther74d00422010-05-05 20:33:34 +08001107 bsc->write_queue.bfd.fd = fd;
Holger Hans Peter Freyther84010542010-06-15 18:47:10 +08001108 bsc->write_queue.read_cb = ipaccess_bsc_read_cb;
Holger Hans Peter Freyther6c1ae962010-10-13 20:37:13 +02001109 bsc->write_queue.write_cb = bsc_write_cb;
Holger Hans Peter Freyther84010542010-06-15 18:47:10 +08001110 bsc->write_queue.bfd.when = BSC_FD_READ;
1111 if (bsc_register_fd(&bsc->write_queue.bfd) < 0) {
Holger Hans Peter Freyther8f99b822010-01-29 05:58:43 +01001112 LOGP(DNAT, LOGL_ERROR, "Failed to register BSC fd.\n");
Holger Hans Peter Freyther74d00422010-05-05 20:33:34 +08001113 close(fd);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +01001114 talloc_free(bsc);
1115 return -2;
1116 }
1117
Holger Hans Peter Freyther4cc58092010-05-05 17:03:44 +08001118 LOGP(DNAT, LOGL_NOTICE, "BSC connection on %d with IP: %s\n",
Holger Hans Peter Freyther74d00422010-05-05 20:33:34 +08001119 fd, inet_ntoa(sa.sin_addr));
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +08001120 llist_add(&bsc->list_entry, &nat->bsc_connections);
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +01001121 send_id_ack(bsc);
1122 send_id_req(bsc);
Holger Hans Peter Freyther8c61cdb2010-03-31 07:30:58 +02001123 send_mgcp_reset(bsc);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +08001124
1125 /*
1126 * start the hangup timer
1127 */
1128 bsc->id_timeout.data = bsc;
1129 bsc->id_timeout.cb = ipaccess_close_bsc;
Holger Hans Peter Freytheracd30782010-05-05 16:57:38 +08001130 bsc_schedule_timer(&bsc->id_timeout, nat->auth_timeout, 0);
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01001131 return 0;
1132}
1133
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08001134static void print_usage()
1135{
1136 printf("Usage: bsc_nat\n");
1137}
1138
1139static void print_help()
1140{
1141 printf(" Some useful help...\n");
1142 printf(" -h --help this text\n");
1143 printf(" -d option --debug=DRLL:DCC:DMM:DRR:DRSL:DNM enable debugging\n");
Harald Weltec4ae1762010-08-25 19:43:54 +02001144 printf(" -D --daemonize Fork the process into a background daemon\n");
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08001145 printf(" -s --disable-color\n");
1146 printf(" -c --config-file filename The config file to use.\n");
1147 printf(" -m --msc=IP. The address of the MSC.\n");
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01001148 printf(" -l --local=IP. The local address of this BSC.\n");
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08001149}
1150
Holger Hans Peter Freytherdfd61a32010-09-18 06:44:24 +08001151static void handle_options(int argc, char **argv)
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08001152{
1153 while (1) {
1154 int option_index = 0, c;
1155 static struct option long_options[] = {
1156 {"help", 0, 0, 'h'},
1157 {"debug", 1, 0, 'd'},
1158 {"config-file", 1, 0, 'c'},
1159 {"disable-color", 0, 0, 's'},
1160 {"timestamp", 0, 0, 'T'},
1161 {"msc", 1, 0, 'm'},
1162 {"local", 1, 0, 'l'},
1163 {0, 0, 0, 0}
1164 };
1165
1166 c = getopt_long(argc, argv, "hd:sTPc:m:l:",
1167 long_options, &option_index);
1168 if (c == -1)
1169 break;
1170
1171 switch (c) {
1172 case 'h':
1173 print_usage();
1174 print_help();
1175 exit(0);
1176 case 's':
Holger Hans Peter Freyther4acca1a2010-06-15 19:14:12 +08001177 log_set_use_color(stderr_target, 0);
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08001178 break;
1179 case 'd':
Holger Hans Peter Freyther4acca1a2010-06-15 19:14:12 +08001180 log_parse_category_mask(stderr_target, optarg);
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08001181 break;
1182 case 'c':
1183 config_file = strdup(optarg);
1184 break;
1185 case 'T':
Holger Hans Peter Freyther4acca1a2010-06-15 19:14:12 +08001186 log_set_print_timestamp(stderr_target, 1);
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08001187 break;
1188 case 'm':
Holger Hans Peter Freyther9226d702010-06-15 18:51:04 +08001189 msc_ip = optarg;
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08001190 break;
1191 case 'l':
1192 inet_aton(optarg, &local_addr);
1193 break;
1194 default:
1195 /* ignore */
1196 break;
1197 }
1198 }
1199}
1200
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +01001201static void signal_handler(int signal)
1202{
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +01001203 switch (signal) {
1204 case SIGABRT:
1205 /* in case of abort, we want to obtain a talloc report
1206 * and then return to the caller, who will abort the process */
1207 case SIGUSR1:
1208 talloc_report_full(tall_bsc_ctx, stderr);
1209 break;
1210 default:
1211 break;
1212 }
1213}
1214
Holger Hans Peter Freyther6088cc72010-06-15 18:51:56 +08001215static void sccp_close_unconfirmed(void *_data)
1216{
1217 struct sccp_connections *conn, *tmp1;
1218 struct timespec now;
1219 clock_gettime(CLOCK_MONOTONIC, &now);
1220
1221 llist_for_each_entry_safe(conn, tmp1, &nat->sccp_connections, list_entry) {
1222 if (conn->has_remote_ref)
1223 continue;
1224
1225 int diff = (now.tv_sec - conn->creation_time.tv_sec) / 60;
1226 if (diff < SCCP_CLOSE_TIME_TIMEOUT)
1227 continue;
1228
1229 LOGP(DNAT, LOGL_ERROR, "SCCP connection 0x%x/0x%x was never confirmed.\n",
1230 sccp_src_ref_to_int(&conn->real_ref),
1231 sccp_src_ref_to_int(&conn->patched_ref));
1232 sccp_connection_destroy(conn);
1233 }
1234
1235 bsc_schedule_timer(&sccp_close, SCCP_CLOSE_TIME, 0);
1236}
1237
Holger Hans Peter Freyther023a5502010-06-15 18:51:25 +08001238extern void *tall_msgb_ctx;
1239extern void *tall_ctr_ctx;
1240static void talloc_init_ctx()
1241{
1242 tall_bsc_ctx = talloc_named_const(NULL, 0, "nat");
1243 tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 0, "msgb");
1244 tall_ctr_ctx = talloc_named_const(tall_bsc_ctx, 0, "counter");
1245}
1246
Holger Hans Peter Freyther4fcedba2010-06-15 20:14:08 +08001247extern enum node_type bsc_vty_go_parent(struct vty *vty);
1248
1249static struct vty_app_info vty_info = {
1250 .name = "BSC NAT",
1251 .version = PACKAGE_VERSION,
1252 .go_parent_cb = bsc_vty_go_parent,
Holger Hans Peter Freytherba289d02010-09-04 11:00:01 +08001253 .is_config_node = bsc_vty_is_config_node,
Holger Hans Peter Freyther4fcedba2010-06-15 20:14:08 +08001254};
1255
Holger Hans Peter Freytherdfd61a32010-09-18 06:44:24 +08001256int main(int argc, char **argv)
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08001257{
Harald Weltec4ae1762010-08-25 19:43:54 +02001258 int rc;
Holger Hans Peter Freyther023a5502010-06-15 18:51:25 +08001259
Harald Weltec4ae1762010-08-25 19:43:54 +02001260 talloc_init_ctx();
Holger Hans Peter Freyther09371382010-06-15 18:51:18 +08001261
Holger Hans Peter Freyther4acca1a2010-06-15 19:14:12 +08001262 log_init(&log_info);
1263 stderr_target = log_target_create_stderr();
1264 log_add_target(stderr_target);
1265 log_set_all_filter(stderr_target, 1);
Holger Hans Peter Freyther3b960892010-06-15 19:06:18 +08001266
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +08001267 nat = bsc_nat_alloc();
1268 if (!nat) {
1269 fprintf(stderr, "Failed to allocate the BSC nat.\n");
1270 return -4;
1271 }
1272
Holger Hans Peter Freyther774d1d32010-08-05 10:08:36 +00001273 nat->mgcp_cfg = mgcp_config_alloc();
Holger Hans Peter Freyther9226d702010-06-15 18:51:04 +08001274 if (!nat->mgcp_cfg) {
1275 fprintf(stderr, "Failed to allocate MGCP cfg.\n");
1276 return -5;
1277 }
1278
Holger Hans Peter Freyther4fcedba2010-06-15 20:14:08 +08001279 vty_info.copyright = openbsc_copyright;
1280 vty_init(&vty_info);
1281 logging_vty_add_cmds();
1282 bsc_nat_vty_init(nat);
1283
1284
Holger Hans Peter Freyther9226d702010-06-15 18:51:04 +08001285 /* parse options */
1286 local_addr.s_addr = INADDR_ANY;
1287 handle_options(argc, argv);
Holger Hans Peter Freyther3660e4d2010-06-15 18:50:26 +08001288
Holger Hans Peter Freytherccefba62010-06-17 18:16:00 +08001289 rate_ctr_init(tall_bsc_ctx);
1290
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +08001291 /* init vty and parse */
Holger Hans Peter Freyther4fcedba2010-06-15 20:14:08 +08001292 telnet_init(tall_bsc_ctx, NULL, 4244);
Holger Hans Peter Freyther3660e4d2010-06-15 18:50:26 +08001293 if (mgcp_parse_config(config_file, nat->mgcp_cfg) < 0) {
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +08001294 fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
1295 return -3;
1296 }
1297
Holger Hans Peter Freyther9226d702010-06-15 18:51:04 +08001298 /* over rule the VTY config */
1299 if (msc_ip)
1300 bsc_nat_set_msc_ip(nat, msc_ip);
1301
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08001302 /* seed the PRNG */
1303 srand(time(NULL));
1304
Holger Hans Peter Freyther3468be32010-03-31 13:02:22 +02001305 /*
1306 * Setup the MGCP code..
1307 */
Holger Hans Peter Freyther36330952010-04-22 12:08:17 +08001308 if (bsc_mgcp_nat_init(nat) != 0)
Holger Hans Peter Freyther3468be32010-03-31 13:02:22 +02001309 return -4;
1310
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01001311 /* connect to the MSC */
Holger Hans Peter Freyther7ba0c542010-06-15 18:52:38 +08001312 nat->msc_con = bsc_msc_create(nat->msc_ip, nat->msc_port, 0);
Holger Hans Peter Freyther8e2e0ac2010-05-11 19:07:39 +08001313 if (!nat->msc_con) {
Holger Hans Peter Freyther4a860a02010-06-15 18:47:29 +08001314 fprintf(stderr, "Creating a bsc_msc_connection failed.\n");
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +01001315 exit(1);
1316 }
1317
Holger Hans Peter Freyther8e2e0ac2010-05-11 19:07:39 +08001318 nat->msc_con->connection_loss = msc_connection_was_lost;
Holger Hans Peter Freyther0cb4fd92010-08-04 02:31:55 +08001319 nat->msc_con->connected = msc_connection_connected;
Holger Hans Peter Freyther8e2e0ac2010-05-11 19:07:39 +08001320 nat->msc_con->write_queue.read_cb = ipaccess_msc_read_cb;
1321 nat->msc_con->write_queue.write_cb = ipaccess_msc_write_cb;;
Holger Hans Peter Freyther8fd97752010-07-05 14:14:18 +08001322 nat->msc_con->write_queue.bfd.data = nat->msc_con;
Holger Hans Peter Freyther8e2e0ac2010-05-11 19:07:39 +08001323 bsc_msc_connect(nat->msc_con);
Holger Hans Peter Freyther4a860a02010-06-15 18:47:29 +08001324
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01001325 /* wait for the BSC */
Holger Hans Peter Freyther5d0a0272010-10-19 17:48:13 +02001326 rc = make_sock(&bsc_listen, IPPROTO_TCP, ntohl(local_addr.s_addr),
Holger Hans Peter Freyther492a0062010-10-12 23:28:28 +02001327 5000, ipaccess_listen_bsc_cb);
1328 if (rc != 0) {
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01001329 fprintf(stderr, "Failed to listen for BSC.\n");
1330 exit(1);
1331 }
1332
Holger Hans Peter Freyther1ff40d82010-10-13 20:22:36 +02001333 rc = bsc_ussd_init(nat);
1334 if (rc != 0) {
1335 LOGP(DNAT, LOGL_ERROR, "Failed to bind the USSD socket.\n");
1336 exit(1);
1337 }
1338
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +01001339 signal(SIGABRT, &signal_handler);
1340 signal(SIGUSR1, &signal_handler);
1341 signal(SIGPIPE, SIG_IGN);
1342
Harald Weltec4ae1762010-08-25 19:43:54 +02001343 if (daemonize) {
1344 rc = osmo_daemonize();
1345 if (rc < 0) {
1346 perror("Error during daemonize");
1347 exit(1);
1348 }
1349 }
1350
Holger Hans Peter Freyther6088cc72010-06-15 18:51:56 +08001351 /* recycle timer */
Holger Hans Peter Freythera8dffc12010-07-30 02:53:14 +08001352 sccp_set_log_area(DSCCP);
Holger Hans Peter Freyther6088cc72010-06-15 18:51:56 +08001353 sccp_close.cb = sccp_close_unconfirmed;
1354 sccp_close.data = NULL;
1355 bsc_schedule_timer(&sccp_close, SCCP_CLOSE_TIME, 0);
1356
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +01001357 while (1) {
1358 bsc_select_main(0);
1359 }
1360
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08001361 return 0;
1362}
Holger Hans Peter Freytherd39f3102010-10-27 11:01:55 +02001363
1364/* Close all connections handed out to the USSD module */
1365int bsc_close_ussd_connections(struct bsc_nat *nat)
1366{
1367 struct sccp_connections *con;
1368 llist_for_each_entry(con, &nat->sccp_connections, list_entry) {
1369 if (con->con_local != 2)
1370 continue;
1371 if (!con->bsc)
1372 continue;
1373
Holger Hans Peter Freyther2c7f2742010-10-27 11:58:04 +02001374 nat_send_clrc_bsc(con);
Holger Hans Peter Freytherd39f3102010-10-27 11:01:55 +02001375 nat_send_rlsd_bsc(con);
1376 }
1377
1378 return 0;
1379}