blob: a428e823d055d12f16ea6642bfd5e3cfebc7fb02 [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
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 Freyther9e938c62010-05-05 18:58:13 +080026#include <netinet/tcp.h>
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080027#include <arpa/inet.h>
28
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +010029#include <errno.h>
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +010030#include <signal.h>
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080031#include <stdio.h>
32#include <stdlib.h>
Holger Hans Peter Freyther5aa25ae2010-01-12 21:36:08 +010033#include <time.h>
Holger Hans Peter Freyther9e2c5f52010-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 Freyther6ace5222010-01-12 21:15:08 +010040#include <openbsc/bsc_msc.h>
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +080041#include <openbsc/bsc_nat.h>
Holger Hans Peter Freytherc2b31ed2010-07-31 05:17:17 +080042#include <openbsc/bsc_nat_sccp.h>
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +010043#include <openbsc/ipaccess.h>
44#include <openbsc/abis_nm.h>
Holger Hans Peter Freytherf961de12010-10-12 23:28:28 +020045#include <openbsc/socket.h>
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080046#include <openbsc/vty.h>
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080047
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +080048#include <osmocore/gsm0808.h>
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +080049#include <osmocore/talloc.h>
Harald Welte2c869ef2010-08-25 19:43:54 +020050#include <osmocore/process.h>
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +080051
Holger Hans Peter Freyther69d801e2010-06-15 20:13:33 +080052#include <osmocore/protocol/gsm_08_08.h>
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080053
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080054#include <osmocom/vty/telnet_interface.h>
55#include <osmocom/vty/vty.h>
56
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"
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 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 Freyther6ace5222010-01-12 21:15:08 +010094/*
95 * below are stubs we need to link
96 */
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +080097int nm_state_event(enum nm_evt evt, uint8_t obj_class, void *obj,
Holger Hans Peter Freyther2f2d3422010-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 Freyther6ace5222010-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 Freyther9d56d0c2010-04-22 19:11:37 +0800107static void queue_for_msc(struct bsc_msc_connection *con, struct msgb *msg)
108{
Holger Hans Peter Freythere8e41e62010-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 Freytherdb65bbd2010-07-05 13:58:40 +0800116 if (write_queue_enqueue(&con->write_queue, msg) != 0) {
Holger Hans Peter Freyther9d56d0c2010-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 Freyther3025e192010-03-26 09:18:02 +0100122static void send_reset_ack(struct bsc_connection *bsc)
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100123{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800124 static const uint8_t gsm_reset_ack[] = {
Holger Hans Peter Freyther38a77d02010-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 Freyther2896df72010-04-08 10:24:57 +0200130 bsc_send_data(bsc, gsm_reset_ack, sizeof(gsm_reset_ack), IPAC_PROTO_SCCP);
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100131}
132
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800133static void send_ping(struct bsc_connection *bsc)
134{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800135 static const uint8_t id_ping[] = {
Holger Hans Peter Freyther906c15e2010-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 Freyther50788712010-06-15 18:51:33 +0800142static void send_pong(struct bsc_connection *bsc)
143{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800144 static const uint8_t id_pong[] = {
Holger Hans Peter Freyther50788712010-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 Freyther906c15e2010-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 Freytherda35a8d2010-05-05 16:57:38 +0800163 if (bsc->nat->ping_timeout < 0)
164 return;
165
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800166 send_ping(bsc);
167
168 /* send another ping in 20 seconds */
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800169 bsc_schedule_timer(&bsc->ping_timeout, bsc->nat->ping_timeout, 0);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800170
171 /* also start a pong timer */
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800172 bsc_schedule_timer(&bsc->pong_timeout, bsc->nat->pong_timeout, 0);
Holger Hans Peter Freyther906c15e2010-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 Freyther3025e192010-03-26 09:18:02 +0100185static void send_id_ack(struct bsc_connection *bsc)
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100186{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800187 static const uint8_t id_ack[] = {
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200188 IPAC_MSGT_ID_ACK
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100189 };
190
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200191 bsc_send_data(bsc, id_ack, sizeof(id_ack), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100192}
193
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100194static void send_id_req(struct bsc_connection *bsc)
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100195{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800196 static const uint8_t id_req[] = {
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200197 IPAC_MSGT_ID_GET,
Holger Hans Peter Freytherdb7ba7d2010-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 Freyther2896df72010-04-08 10:24:57 +0200208 bsc_send_data(bsc, id_req, sizeof(id_req), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100209}
210
Holger Hans Peter Freyther07dfc702010-10-27 10:54:11 +0200211static void nat_send_rlsd_msc(struct sccp_connections *conn)
Holger Hans Peter Freyther6b087d12010-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 Freytherdb65bbd2010-07-05 13:58:40 +0800231 queue_for_msc(conn->msc_con, msg);
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200232}
233
Holger Hans Peter Freyther54f53522010-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 Freythera8a50a82010-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 Freytherdb65bbd2010-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 Freytherb8a33732010-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 Freytherdb65bbd2010-07-05 13:58:40 +0800298 queue_for_msc(msc_con, msg);
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200299}
300
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +0200301static void send_mgcp_reset(struct bsc_connection *bsc)
302{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800303 static const uint8_t mgcp_reset[] = {
Holger Hans Peter Freytherd131b792010-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 Freyther6ace5222010-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 Freytherbec411b2010-07-05 14:14:18 +0800315static void initialize_msc_if_needed(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100316{
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800317 if (msc_con->first_contact)
Holger Hans Peter Freytherb7527612010-04-07 11:20:36 +0200318 return;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100319
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800320 msc_con->first_contact = 1;
321 msc_send_reset(msc_con);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100322}
323
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800324static void send_id_get_response(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freythere635dab2010-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 Freytherdb65bbd2010-07-05 13:58:40 +0800331 queue_for_msc(msc_con, msg);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800332}
333
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100334/*
335 * Currently we are lacking refcounting so we need to copy each message.
336 */
Holger Hans Peter Freytherdbd16fe2010-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 Freytherf7cb33c2010-03-26 07:20:59 +0100338{
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100339 struct msgb *msg;
340
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200341 if (length > 4096 - 128) {
Holger Hans Peter Freyther3025e192010-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 Freyther2896df72010-04-08 10:24:57 +0200346 msg = msgb_alloc_headroom(4096, 128, "to-bsc");
Holger Hans Peter Freyther3025e192010-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 Freyther2896df72010-04-08 10:24:57 +0200352 msg->l2h = msgb_put(msg, length);
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100353 memcpy(msg->data, data, length);
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200354
355 bsc_write(bsc, msg, proto);
Holger Hans Peter Freytherf7cb33c2010-03-26 07:20:59 +0100356}
357
Holger Hans Peter Freytherac2763b2010-09-15 07:43:59 +0800358/*
Holger Hans Peter Freytheree884962010-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 Freytherac2763b2010-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 Freythereea5a1b2010-09-16 06:41:09 +0800406 con->msc_con = NULL;
Holger Hans Peter Freytherac2763b2010-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 Freyther91246d72010-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 Freythered775e42010-06-15 18:52:24 +0800442 struct msgb *payload;
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800443 struct msgb *refuse;
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800444
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800445 if (con_type == NAT_CON_TYPE_LU)
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800446 payload = gsm48_create_loc_upd_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800447 else if (con_type == NAT_CON_TYPE_CM_SERV_REQ)
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800448 payload = gsm48_create_mm_serv_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
Holger Hans Peter Freyther8d7b10e2010-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 Freytherb71c23b2010-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 Freythered775e42010-06-15 18:52:24 +0800479 gsm0808_prepend_dtap_header(payload, 0);
Holger Hans Peter Freytherb71c23b2010-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 Freythered775e42010-06-15 18:52:24 +0800500 }
501
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800502
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800503send_refuse:
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800504 if (payload)
505 msgb_free(payload);
506
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800507 refuse = sccp_create_refuse(parsed->src_local_ref,
508 SCCP_REFUSAL_SCCP_FAILURE, NULL, 0);
Holger Hans Peter Freyther91246d72010-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 Freytherdb65bbd2010-07-05 13:58:40 +0800520static int forward_sccp_to_bts(struct bsc_msc_connection *msc_con, struct msgb *msg)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100521{
Holger Hans Peter Freyther8d7b10e2010-07-23 19:43:12 +0800522 struct sccp_connections *con = NULL;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800523 struct bsc_connection *bsc;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800524 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200525 int proto;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100526
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100527 /* filter, drop, patch the message? */
Holger Hans Peter Freyther0b8f69d2010-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 Freyther058eeb72010-01-31 09:46:21 +0100531 return -1;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800532 }
533
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100534 if (bsc_nat_filter_ipa(DIR_BSC, msg, parsed))
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800535 goto exit;
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800536
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200537 proto = parsed->ipa_proto;
538
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100539 /* Route and modify the SCCP packet */
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200540 if (proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther058eeb72010-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 Freytherf46ce532010-04-06 10:22:34 +0200549 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800550 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800551 if (parsed->gsm_type == BSS_MAP_MSG_ASSIGMENT_RQST) {
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200552 counter_inc(nat->stats.sccp.calls);
553
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800554 if (con) {
Holger Hans Peter Freytherb2c38eb2010-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 Freyther45fd07d2010-08-28 18:22:14 +0800558 if (bsc_mgcp_assign_patch(con, msg) != 0)
Holger Hans Peter Freyther465313e2010-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 Freyther16a6f702010-03-29 17:18:42 +0200563 break;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100564 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freyther49c7fb52010-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 Freyther16a6f702010-03-29 17:18:42 +0200567 goto exit;
Holger Hans Peter Freyther0ab6bab2010-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 Freyther058eeb72010-01-31 09:46:21 +0100572 break;
573 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100574 /* MSC never opens a SCCP connection, fall through */
575 default:
576 goto exit;
577 }
Holger Hans Peter Freytherf464ea52010-04-06 16:07:44 +0200578
Holger Hans Peter Freytherb8a33732010-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 Freytherdb65bbd2010-07-05 13:58:40 +0800582 nat_send_rlc(msc_con, parsed->dest_local_ref, parsed->src_local_ref);
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200583 } else if (!con)
Holger Hans Peter Freyther5f10c6d2010-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 Freyther058eeb72010-01-31 09:46:21 +0100585 }
586
587 talloc_free(parsed);
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800588 if (!con)
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100589 return -1;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800590 if (!con->bsc->authenticated) {
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +0800591 LOGP(DNAT, LOGL_ERROR, "Selected BSC not authenticated.\n");
Holger Hans Peter Freyther3f37b8f2010-02-08 23:24:32 +0100592 return -1;
593 }
594
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200595 bsc_send_data(con->bsc, msg->l2h, msgb_l2len(msg), proto);
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100596 return 0;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100597
598send_to_all:
Holger Hans Peter Freyther45d11812010-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 Freyther979a3092010-04-17 08:07:19 +0200605 int lac;
606 bsc = bsc_nat_find_bsc(nat, msg, &lac);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800607 if (bsc && bsc->cfg->forbid_paging)
Holger Hans Peter Freythera34585e2010-04-21 20:17:18 +0800608 LOGP(DNAT, LOGL_DEBUG, "Paging forbidden for BTS: %d\n", bsc->cfg->nr);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800609 else if (bsc)
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200610 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freytherda340632010-08-06 20:15:40 +0800611 else if (lac != -1)
Holger Hans Peter Freyther979a3092010-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 Freyther45d11812010-06-15 18:46:36 +0800614
615 goto exit;
616 }
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100617 /* currently send this to every BSC connected */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800618 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther3f37b8f2010-02-08 23:24:32 +0100619 if (!bsc->authenticated)
620 continue;
621
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200622 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100623 }
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800624
625exit:
626 talloc_free(parsed);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100627 return 0;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100628}
629
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800630static void msc_connection_was_lost(struct bsc_msc_connection *con)
631{
Holger Hans Peter Freythercd895372010-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 Freyther2f9dcf02010-04-27 13:21:39 +0800636 bsc_close_connection(bsc);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200637
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200638 bsc_mgcp_free_endpoints(nat);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200639 bsc_msc_schedule_connect(con);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800640}
641
Holger Hans Peter Freythera99c5b92010-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 Freyther02aee142010-04-08 10:31:07 +0200647static void msc_send_reset(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200648{
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800649 static const uint8_t reset[] = {
Holger Hans Peter Freyther7cab1662010-04-07 11:11:11 +0200650 0x00, 0x12, 0xfd,
Holger Hans Peter Freytheraf0ff6c2010-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 Freytherdb65bbd2010-07-05 13:58:40 +0800667 queue_for_msc(msc_con, msg);
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200668
669 LOGP(DMSC, LOGL_NOTICE, "Scheduled GSM0808 reset msg for the MSC.\n");
670}
671
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800672static int ipaccess_msc_read_cb(struct bsc_fd *bfd)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100673{
674 int error;
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800675 struct bsc_msc_connection *msc_con;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100676 struct msgb *msg = ipaccess_read_msg(bfd, &error);
677 struct ipaccess_head *hh;
678
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800679 msc_con = (struct bsc_msc_connection *) bfd->data;
680
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100681 if (!msg) {
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800682 if (error == 0)
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +0100683 LOGP(DNAT, LOGL_FATAL, "The connection the MSC was lost, exiting\n");
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800684 else
685 LOGP(DNAT, LOGL_ERROR, "Failed to parse ip access message: %d\n", error);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100686
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800687 bsc_msc_lost(msc_con);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100688 return -1;
689 }
690
Holger Hans Peter Freyther418f3942010-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 Freyther6ace5222010-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 Freythere635dab2010-05-15 00:14:58 +0800698 if (hh->proto == IPAC_PROTO_IPACCESS) {
699 if (msg->l2h[0] == IPAC_MSGT_ID_ACK)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800700 initialize_msc_if_needed(msc_con);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800701 else if (msg->l2h[0] == IPAC_MSGT_ID_GET)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800702 send_id_get_response(msc_con);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800703 } else if (hh->proto == IPAC_PROTO_SCCP)
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +0800704 forward_sccp_to_bts(msc_con, msg);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100705
Holger Hans Peter Freytheraad68b52010-06-15 18:46:48 +0800706 msgb_free(msg);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100707 return 0;
708}
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +0800709
Holger Hans Peter Freyther6f5fbfd2010-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 Freyther49d80682010-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 Freyther24614ad2010-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 Freyther2f9dcf02010-04-27 13:21:39 +0800734void bsc_close_connection(struct bsc_connection *connection)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100735{
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100736 struct sccp_connections *sccp_patch, *tmp;
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800737 struct rate_ctr *ctr = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100738
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800739 /* stop the timeout timer */
740 bsc_del_timer(&connection->id_timeout);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800741 bsc_del_timer(&connection->ping_timeout);
742 bsc_del_timer(&connection->pong_timeout);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800743
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800744 if (connection->cfg)
745 ctr = &connection->cfg->stats.ctrg->ctr[BCFG_CTR_DROPPED_SCCP];
746
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100747 /* remove all SCCP connections */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800748 llist_for_each_entry_safe(sccp_patch, tmp, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100749 if (sccp_patch->bsc != connection)
750 continue;
751
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800752 if (ctr)
753 rate_ctr_inc(ctr);
Holger Hans Peter Freythereea5a1b2010-09-16 06:41:09 +0800754 if (sccp_patch->has_remote_ref && !sccp_patch->con_local)
Holger Hans Peter Freyther07dfc702010-10-27 10:54:11 +0200755 nat_send_rlsd_msc(sccp_patch);
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200756 sccp_connection_destroy(sccp_patch);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100757 }
758
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +0200759 /* close endpoints allocated by this BSC */
760 bsc_mgcp_clear_endpoints_for(connection);
761
Holger Hans Peter Freythere464ed42010-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 Freyther24614ad2010-01-13 09:28:12 +0100767 talloc_free(connection);
768}
769
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800770static void ipaccess_close_bsc(void *data)
771{
Holger Hans Peter Freyther6d5a6002010-04-17 07:58:17 +0200772 struct sockaddr_in sock;
773 socklen_t len = sizeof(sock);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800774 struct bsc_connection *conn = data;
775
Holger Hans Peter Freyther6d5a6002010-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 Freyther2f9dcf02010-04-27 13:21:39 +0800780 bsc_close_connection(conn);
Holger Hans Peter Freytheraa698242010-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 Freytheradb6e1c2010-09-18 06:44:24 +0800786 const char *token = (const char *) TLVP_VAL(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freythera09b9662010-10-14 17:19:58 +0200787 const int len = TLVP_LEN(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800788
Holger Hans Peter Freyther5cdcfa62010-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 Freytheraa698242010-06-15 18:46:19 +0800795 llist_for_each_entry(conf, &bsc->nat->bsc_configs, entry) {
Holger Hans Peter Freythera09b9662010-10-14 17:19:58 +0200796 if (strncmp(conf->token, token, len) == 0) {
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +0800797 rate_ctr_inc(&conf->stats.ctrg->ctr[BCFG_CTR_NET_RECONN]);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800798 bsc->authenticated = 1;
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200799 bsc->cfg = conf;
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800800 bsc_del_timer(&bsc->id_timeout);
Holger Hans Peter Freyther0bd60f32010-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 Freyther906c15e2010-05-02 19:28:59 +0800803 start_ping_pong(bsc);
Holger Hans Peter Freytherc615c262010-04-17 07:59:57 +0200804 return;
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800805 }
806 }
Holger Hans Peter Freytherc615c262010-04-17 07:59:57 +0200807
Holger Hans Peter Freyther74cfab72010-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 Freytheraa698242010-06-15 18:46:19 +0800810}
811
Holger Hans Peter Freyther463dc622010-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 Freyther747d6542010-03-26 07:24:34 +0100827static int forward_sccp_to_msc(struct bsc_connection *bsc, struct msgb *msg)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100828{
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +0800829 int con_filter = 0;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800830 char *imsi = NULL;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800831 struct bsc_msc_connection *con_msc = NULL;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800832 struct bsc_connection *con_bsc = NULL;
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800833 int con_type;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800834 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100835
Holger Hans Peter Freyther0b8f69d2010-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 Freytherd7657ff2010-03-30 07:35:46 +0200840 msgb_free(msg);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800841 return -1;
842 }
843
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100844 if (bsc_nat_filter_ipa(DIR_MSC, msg, parsed))
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800845 goto exit;
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800846
Holger Hans Peter Freytherbbb9d392010-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 Freyther058eeb72010-01-31 09:46:21 +0100859 /* modify the SCCP entries */
860 if (parsed->ipa_proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther3837f992010-09-15 00:38:54 +0800861 int filter;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800862 struct sccp_connections *con;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100863 switch (parsed->sccp_type) {
864 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800865 filter = bsc_nat_filter_sccp_cr(bsc, msg, parsed, &con_type, &imsi);
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +0800866 if (filter < 0) {
867 bsc_stat_reject(filter, bsc, 0);
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800868 goto exit3;
Holger Hans Peter Freytheree884962010-09-25 17:58:22 +0800869 }
870
Holger Hans Peter Freytherfa20c942010-05-16 16:51:31 +0800871 if (!create_sccp_src_ref(bsc, parsed))
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100872 goto exit2;
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +0800873 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther3a77e612010-07-05 13:33:18 +0800874 con->msc_con = bsc->nat->msc_con;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800875 con_msc = con->msc_con;
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800876 con->con_type = con_type;
Holger Hans Peter Freyther909e61f2010-09-15 00:41:19 +0800877 con->imsi_checked = filter;
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800878 if (imsi)
879 con->imsi = talloc_steal(con, imsi);
880 imsi = NULL;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800881 con_bsc = con->bsc;
Holger Hans Peter Freyther463dc622010-10-03 19:41:42 +0800882 handle_con_stats(con);
Holger Hans Peter Freyther058eeb72010-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 Freytherf46ce532010-04-06 10:22:34 +0200888 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +0800889 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800890 if (con) {
Holger Hans Peter Freyther0c41b692010-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 Freyther17870cf2010-09-29 19:32:55 +0800900
901 /* hand data to a side channel */
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200902 if (bsc_check_ussd(con, parsed, msg) == 1)
903 con->con_local = 2;
Holger Hans Peter Freyther74e0a1b2010-09-15 01:11:08 +0800904 }
Holger Hans Peter Freyther0c41b692010-10-06 00:48:36 +0800905
906 con_bsc = con->bsc;
907 con_msc = con->msc_con;
908 con_filter = con->con_local;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800909 }
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800910
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100911 break;
912 case SCCP_MSG_TYPE_RLC:
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +0800913 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800914 if (con) {
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800915 con_bsc = con->bsc;
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800916 con_msc = con->msc_con;
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +0800917 con_filter = con->con_local;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800918 }
Holger Hans Peter Freytherf4cfc4f2010-03-31 09:15:05 +0200919 remove_sccp_src_ref(bsc, msg, parsed);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100920 break;
921 case SCCP_MSG_TYPE_UDT:
922 /* simply forward everything */
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800923 con = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100924 break;
925 default:
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800926 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 +0800927 con = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100928 goto exit2;
929 break;
930 }
Holger Hans Peter Freyther19c530c2010-10-13 23:52:01 +0200931 } else if (parsed->ipa_proto == IPAC_PROTO_MGCP) {
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200932 bsc_mgcp_forward(bsc, msg);
933 goto exit2;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800934 } else {
935 LOGP(DNAT, LOGL_ERROR, "Not forwarding unknown stream id: 0x%x\n", parsed->ipa_proto);
936 goto exit2;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100937 }
938
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800939 if (con_msc && con_bsc != bsc) {
Holger Hans Peter Freytherca0c2f92010-04-21 18:49:55 +0800940 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 +0800941 bsc->cfg->nr, con_bsc->cfg->nr);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100942 goto exit2;
943 }
944
Holger Hans Peter Freyther09ecda42010-09-15 17:39:44 +0800945 /* do not forward messages to the MSC */
946 if (con_filter)
947 goto exit2;
948
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800949 if (!con_msc) {
Holger Hans Peter Freyther27640fc2010-09-15 00:14:48 +0800950 LOGP(DNAT, LOGL_ERROR, "Not forwarding data bsc_nr: %d ipa: %d type: 0x%x\n",
951 bsc->cfg->nr,
952 parsed ? parsed->ipa_proto : -1,
953 parsed ? parsed->sccp_type : -1);
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800954 goto exit2;
955 }
956
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100957 /* send the non-filtered but maybe modified msg */
Holger Hans Peter Freytherdb65bbd2010-07-05 13:58:40 +0800958 queue_for_msc(con_msc, msg);
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100959 talloc_free(parsed);
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800960 return 0;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800961
962exit:
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100963 /* if we filter out the reset send an ack to the BSC */
964 if (parsed->bssap == 0 && parsed->gsm_type == BSS_MAP_MSG_RESET) {
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +0100965 send_reset_ack(bsc);
966 send_reset_ack(bsc);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800967 } else if (parsed->ipa_proto == IPAC_PROTO_IPACCESS) {
968 /* do we know who is handling this? */
969 if (msg->l2h[0] == IPAC_MSGT_ID_RESP) {
970 struct tlv_parsed tvp;
971 ipaccess_idtag_parse(&tvp,
972 (unsigned char *) msg->l2h + 2,
973 msgb_l2len(msg) - 2);
974 if (TLVP_PRESENT(&tvp, IPAC_IDTAG_UNITNAME))
975 ipaccess_auth_bsc(&tvp, bsc);
976 }
977
978 goto exit2;
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100979 }
980
Holger Hans Peter Freyther1498d2e2010-05-15 00:29:50 +0800981exit2:
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800982 if (imsi)
983 talloc_free(imsi);
Holger Hans Peter Freyther1498d2e2010-05-15 00:29:50 +0800984 talloc_free(parsed);
985 msgb_free(msg);
986 return -1;
987
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800988exit3:
989 /* send a SCCP Connection Refused */
Holger Hans Peter Freyther749497e2010-09-29 01:19:42 +0800990 if (imsi)
991 talloc_free(imsi);
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800992 bsc_send_con_refuse(bsc, parsed, con_type);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800993 talloc_free(parsed);
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800994 msgb_free(msg);
995 return -1;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100996}
997
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +0800998static int ipaccess_bsc_read_cb(struct bsc_fd *bfd)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100999{
1000 int error;
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001001 struct bsc_connection *bsc = bfd->data;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001002 struct msgb *msg = ipaccess_read_msg(bfd, &error);
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001003 struct ipaccess_head *hh;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001004
1005 if (!msg) {
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001006 if (error == 0)
Holger Hans Peter Freyther19c35442010-05-01 10:37:15 +08001007 LOGP(DNAT, LOGL_ERROR,
1008 "The connection to the BSC Nr: %d was lost. Cleaning it\n",
1009 bsc->cfg ? bsc->cfg->nr : -1);
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001010 else
Holger Hans Peter Freyther19c35442010-05-01 10:37:15 +08001011 LOGP(DNAT, LOGL_ERROR,
1012 "Stream error on BSC Nr: %d. Failed to parse ip access message: %d\n",
1013 bsc->cfg ? bsc->cfg->nr : -1, error);
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +08001014
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +08001015 bsc_close_connection(bsc);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001016 return -1;
1017 }
1018
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001019
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001020 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 +01001021
1022 /* Handle messages from the BSC */
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001023 hh = (struct ipaccess_head *) msg->data;
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001024
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001025 /* stop the pong timeout */
1026 if (hh->proto == IPAC_PROTO_IPACCESS) {
1027 if (msg->l2h[0] == IPAC_MSGT_PONG) {
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001028 bsc_del_timer(&bsc->pong_timeout);
1029 msgb_free(msg);
1030 return 0;
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +08001031 } else if (msg->l2h[0] == IPAC_MSGT_PING) {
1032 send_pong(bsc);
1033 msgb_free(msg);
1034 return 0;
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +08001035 }
1036 }
1037
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001038 /* FIXME: Currently no PONG is sent to the BSC */
1039 /* FIXME: Currently no ID ACK is sent to the BSC */
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +01001040 forward_sccp_to_msc(bsc, msg);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001041
1042 return 0;
1043}
1044
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001045static int ipaccess_listen_bsc_cb(struct bsc_fd *bfd, unsigned int what)
1046{
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001047 struct bsc_connection *bsc;
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001048 int fd, rc, on;
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001049 struct sockaddr_in sa;
1050 socklen_t sa_len = sizeof(sa);
1051
1052 if (!(what & BSC_FD_READ))
1053 return 0;
1054
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001055 fd = accept(bfd->fd, (struct sockaddr *) &sa, &sa_len);
1056 if (fd < 0) {
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001057 perror("accept");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001058 return fd;
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001059 }
1060
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +02001061 /* count the reconnect */
1062 counter_inc(nat->stats.bsc.reconn);
1063
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001064 /*
1065 * if we are not connected to a msc... just close the socket
1066 */
Holger Hans Peter Freyther20ee3122010-07-05 14:39:44 +08001067 if (!bsc_nat_msc_is_connected(nat)) {
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001068 LOGP(DNAT, LOGL_NOTICE, "Disconnecting BSC due lack of MSC connection.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001069 close(fd);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +02001070 return 0;
1071 }
1072
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +08001073 on = 1;
Holger Hans Peter Freyther569ee122010-05-05 20:42:14 +08001074 rc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001075 if (rc != 0)
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +08001076 LOGP(DNAT, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
1077
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +08001078 rc = setsockopt(fd, IPPROTO_IP, IP_TOS,
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +08001079 &nat->bsc_ip_dscp, sizeof(nat->bsc_ip_dscp));
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +08001080 if (rc != 0)
1081 LOGP(DNAT, LOGL_ERROR, "Failed to set IP_TOS: %s\n", strerror(errno));
1082
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001083 /* todo... do something with the connection */
Holger Hans Peter Freytherda86c0a2010-01-12 21:35:32 +01001084 /* todo... use GNUtls to see if we want to trust this as a BTS */
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001085
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001086 /*
1087 *
1088 */
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +08001089 bsc = bsc_connection_alloc(nat);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001090 if (!bsc) {
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001091 LOGP(DNAT, LOGL_ERROR, "Failed to allocate BSC struct.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001092 close(fd);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001093 return -1;
1094 }
1095
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001096 bsc->write_queue.bfd.data = bsc;
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001097 bsc->write_queue.bfd.fd = fd;
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001098 bsc->write_queue.read_cb = ipaccess_bsc_read_cb;
Holger Hans Peter Freyther69cfa172010-10-13 20:37:13 +02001099 bsc->write_queue.write_cb = bsc_write_cb;
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +08001100 bsc->write_queue.bfd.when = BSC_FD_READ;
1101 if (bsc_register_fd(&bsc->write_queue.bfd) < 0) {
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +01001102 LOGP(DNAT, LOGL_ERROR, "Failed to register BSC fd.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001103 close(fd);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +01001104 talloc_free(bsc);
1105 return -2;
1106 }
1107
Holger Hans Peter Freyther74cfab72010-05-05 17:03:44 +08001108 LOGP(DNAT, LOGL_NOTICE, "BSC connection on %d with IP: %s\n",
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +08001109 fd, inet_ntoa(sa.sin_addr));
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001110 llist_add(&bsc->list_entry, &nat->bsc_connections);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +01001111 send_id_ack(bsc);
1112 send_id_req(bsc);
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +02001113 send_mgcp_reset(bsc);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +08001114
1115 /*
1116 * start the hangup timer
1117 */
1118 bsc->id_timeout.data = bsc;
1119 bsc->id_timeout.cb = ipaccess_close_bsc;
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +08001120 bsc_schedule_timer(&bsc->id_timeout, nat->auth_timeout, 0);
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001121 return 0;
1122}
1123
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001124static void print_usage()
1125{
1126 printf("Usage: bsc_nat\n");
1127}
1128
1129static void print_help()
1130{
1131 printf(" Some useful help...\n");
1132 printf(" -h --help this text\n");
1133 printf(" -d option --debug=DRLL:DCC:DMM:DRR:DRSL:DNM enable debugging\n");
Harald Welte2c869ef2010-08-25 19:43:54 +02001134 printf(" -D --daemonize Fork the process into a background daemon\n");
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001135 printf(" -s --disable-color\n");
1136 printf(" -c --config-file filename The config file to use.\n");
1137 printf(" -m --msc=IP. The address of the MSC.\n");
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001138 printf(" -l --local=IP. The local address of this BSC.\n");
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001139}
1140
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +08001141static void handle_options(int argc, char **argv)
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001142{
1143 while (1) {
1144 int option_index = 0, c;
1145 static struct option long_options[] = {
1146 {"help", 0, 0, 'h'},
1147 {"debug", 1, 0, 'd'},
1148 {"config-file", 1, 0, 'c'},
1149 {"disable-color", 0, 0, 's'},
1150 {"timestamp", 0, 0, 'T'},
1151 {"msc", 1, 0, 'm'},
1152 {"local", 1, 0, 'l'},
1153 {0, 0, 0, 0}
1154 };
1155
1156 c = getopt_long(argc, argv, "hd:sTPc:m:l:",
1157 long_options, &option_index);
1158 if (c == -1)
1159 break;
1160
1161 switch (c) {
1162 case 'h':
1163 print_usage();
1164 print_help();
1165 exit(0);
1166 case 's':
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001167 log_set_use_color(stderr_target, 0);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001168 break;
1169 case 'd':
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001170 log_parse_category_mask(stderr_target, optarg);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001171 break;
1172 case 'c':
1173 config_file = strdup(optarg);
1174 break;
1175 case 'T':
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001176 log_set_print_timestamp(stderr_target, 1);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001177 break;
1178 case 'm':
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001179 msc_ip = optarg;
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001180 break;
1181 case 'l':
1182 inet_aton(optarg, &local_addr);
1183 break;
1184 default:
1185 /* ignore */
1186 break;
1187 }
1188 }
1189}
1190
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001191static void signal_handler(int signal)
1192{
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001193 switch (signal) {
1194 case SIGABRT:
1195 /* in case of abort, we want to obtain a talloc report
1196 * and then return to the caller, who will abort the process */
1197 case SIGUSR1:
1198 talloc_report_full(tall_bsc_ctx, stderr);
1199 break;
1200 default:
1201 break;
1202 }
1203}
1204
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001205static void sccp_close_unconfirmed(void *_data)
1206{
1207 struct sccp_connections *conn, *tmp1;
1208 struct timespec now;
1209 clock_gettime(CLOCK_MONOTONIC, &now);
1210
1211 llist_for_each_entry_safe(conn, tmp1, &nat->sccp_connections, list_entry) {
1212 if (conn->has_remote_ref)
1213 continue;
1214
1215 int diff = (now.tv_sec - conn->creation_time.tv_sec) / 60;
1216 if (diff < SCCP_CLOSE_TIME_TIMEOUT)
1217 continue;
1218
1219 LOGP(DNAT, LOGL_ERROR, "SCCP connection 0x%x/0x%x was never confirmed.\n",
1220 sccp_src_ref_to_int(&conn->real_ref),
1221 sccp_src_ref_to_int(&conn->patched_ref));
1222 sccp_connection_destroy(conn);
1223 }
1224
1225 bsc_schedule_timer(&sccp_close, SCCP_CLOSE_TIME, 0);
1226}
1227
Holger Hans Peter Freyther0b0b31c2010-06-15 18:51:25 +08001228extern void *tall_msgb_ctx;
1229extern void *tall_ctr_ctx;
1230static void talloc_init_ctx()
1231{
1232 tall_bsc_ctx = talloc_named_const(NULL, 0, "nat");
1233 tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 0, "msgb");
1234 tall_ctr_ctx = talloc_named_const(tall_bsc_ctx, 0, "counter");
1235}
1236
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001237extern enum node_type bsc_vty_go_parent(struct vty *vty);
1238
1239static struct vty_app_info vty_info = {
1240 .name = "BSC NAT",
1241 .version = PACKAGE_VERSION,
1242 .go_parent_cb = bsc_vty_go_parent,
Holger Hans Peter Freyther81506b42010-09-04 11:00:01 +08001243 .is_config_node = bsc_vty_is_config_node,
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001244};
1245
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +08001246int main(int argc, char **argv)
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001247{
Harald Welte2c869ef2010-08-25 19:43:54 +02001248 int rc;
Holger Hans Peter Freyther0b0b31c2010-06-15 18:51:25 +08001249
Harald Welte2c869ef2010-08-25 19:43:54 +02001250 talloc_init_ctx();
Holger Hans Peter Freythera1597f12010-06-15 18:51:18 +08001251
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001252 log_init(&log_info);
1253 stderr_target = log_target_create_stderr();
1254 log_add_target(stderr_target);
1255 log_set_all_filter(stderr_target, 1);
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +08001256
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001257 nat = bsc_nat_alloc();
1258 if (!nat) {
1259 fprintf(stderr, "Failed to allocate the BSC nat.\n");
1260 return -4;
1261 }
1262
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +00001263 nat->mgcp_cfg = mgcp_config_alloc();
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001264 if (!nat->mgcp_cfg) {
1265 fprintf(stderr, "Failed to allocate MGCP cfg.\n");
1266 return -5;
1267 }
1268
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001269 vty_info.copyright = openbsc_copyright;
1270 vty_init(&vty_info);
1271 logging_vty_add_cmds();
1272 bsc_nat_vty_init(nat);
1273
1274
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001275 /* parse options */
1276 local_addr.s_addr = INADDR_ANY;
1277 handle_options(argc, argv);
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001278
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +08001279 rate_ctr_init(tall_bsc_ctx);
1280
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001281 /* init vty and parse */
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001282 telnet_init(tall_bsc_ctx, NULL, 4244);
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001283 if (mgcp_parse_config(config_file, nat->mgcp_cfg) < 0) {
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001284 fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
1285 return -3;
1286 }
1287
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001288 /* over rule the VTY config */
1289 if (msc_ip)
1290 bsc_nat_set_msc_ip(nat, msc_ip);
1291
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001292 /* seed the PRNG */
1293 srand(time(NULL));
1294
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001295 /*
1296 * Setup the MGCP code..
1297 */
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +08001298 if (bsc_mgcp_nat_init(nat) != 0)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001299 return -4;
1300
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001301 /* connect to the MSC */
Holger Hans Peter Freytherca999a92010-06-15 18:52:38 +08001302 nat->msc_con = bsc_msc_create(nat->msc_ip, nat->msc_port, 0);
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001303 if (!nat->msc_con) {
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +08001304 fprintf(stderr, "Creating a bsc_msc_connection failed.\n");
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001305 exit(1);
1306 }
1307
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001308 nat->msc_con->connection_loss = msc_connection_was_lost;
Holger Hans Peter Freythera99c5b92010-08-04 02:31:55 +08001309 nat->msc_con->connected = msc_connection_connected;
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001310 nat->msc_con->write_queue.read_cb = ipaccess_msc_read_cb;
1311 nat->msc_con->write_queue.write_cb = ipaccess_msc_write_cb;;
Holger Hans Peter Freytherbec411b2010-07-05 14:14:18 +08001312 nat->msc_con->write_queue.bfd.data = nat->msc_con;
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001313 bsc_msc_connect(nat->msc_con);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +08001314
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001315 /* wait for the BSC */
Holger Hans Peter Freythera25d5792010-10-19 17:48:13 +02001316 rc = make_sock(&bsc_listen, IPPROTO_TCP, ntohl(local_addr.s_addr),
Holger Hans Peter Freytherf961de12010-10-12 23:28:28 +02001317 5000, ipaccess_listen_bsc_cb);
1318 if (rc != 0) {
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001319 fprintf(stderr, "Failed to listen for BSC.\n");
1320 exit(1);
1321 }
1322
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +02001323 rc = bsc_ussd_init(nat);
1324 if (rc != 0) {
1325 LOGP(DNAT, LOGL_ERROR, "Failed to bind the USSD socket.\n");
1326 exit(1);
1327 }
1328
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001329 signal(SIGABRT, &signal_handler);
1330 signal(SIGUSR1, &signal_handler);
1331 signal(SIGPIPE, SIG_IGN);
1332
Harald Welte2c869ef2010-08-25 19:43:54 +02001333 if (daemonize) {
1334 rc = osmo_daemonize();
1335 if (rc < 0) {
1336 perror("Error during daemonize");
1337 exit(1);
1338 }
1339 }
1340
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001341 /* recycle timer */
Holger Hans Peter Freyther30e1ae92010-07-30 02:53:14 +08001342 sccp_set_log_area(DSCCP);
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001343 sccp_close.cb = sccp_close_unconfirmed;
1344 sccp_close.data = NULL;
1345 bsc_schedule_timer(&sccp_close, SCCP_CLOSE_TIME, 0);
1346
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001347 while (1) {
1348 bsc_select_main(0);
1349 }
1350
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001351 return 0;
1352}
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001353
1354/* Close all connections handed out to the USSD module */
1355int bsc_close_ussd_connections(struct bsc_nat *nat)
1356{
1357 struct sccp_connections *con;
1358 llist_for_each_entry(con, &nat->sccp_connections, list_entry) {
1359 if (con->con_local != 2)
1360 continue;
1361 if (!con->bsc)
1362 continue;
1363
Holger Hans Peter Freythera8a50a82010-10-27 11:58:04 +02001364 nat_send_clrc_bsc(con);
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +02001365 nat_send_rlsd_bsc(con);
1366 }
1367
1368 return 0;
1369}