blob: 431e6406c7a522052fd0cb136071478fa155d6ac [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 Freyther6ace5222010-01-12 21:15:08 +010042#include <openbsc/ipaccess.h>
43#include <openbsc/abis_nm.h>
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080044#include <openbsc/vty.h>
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080045
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +080046#include <osmocore/gsm0808.h>
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +080047#include <osmocore/talloc.h>
48
Holger Hans Peter Freyther69d801e2010-06-15 20:13:33 +080049#include <osmocore/protocol/gsm_08_08.h>
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080050
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080051#include <osmocom/vty/telnet_interface.h>
52#include <osmocom/vty/vty.h>
53
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +080054#include <sccp/sccp.h>
55
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080056#include "../../bscconfig.h"
57
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +080058#define SCCP_CLOSE_TIME 20
59#define SCCP_CLOSE_TIME_TIMEOUT 19
60
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +080061struct log_target *stderr_target;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080062static const char *config_file = "bsc-nat.cfg";
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +080063static struct in_addr local_addr;
Holger Hans Peter Freyther2d677c62010-03-26 06:51:04 +010064static struct bsc_fd bsc_listen;
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080065static const char *msc_ip = NULL;
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +080066static struct timer_list sccp_close;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +010067
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080068const char *openbsc_copyright =
69 "Copyright (C) 2010 Holger Hans Peter Freyther and On-Waves\n"
70 "License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>\n"
71 "This is free software: you are free to change and redistribute it.\n"
72 "There is NO WARRANTY, to the extent permitted by law.\n";
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +010073
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080074static struct bsc_nat *nat;
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +020075static void bsc_send_data(struct bsc_connection *bsc, const u_int8_t *data, unsigned int length, int);
Holger Hans Peter Freytherb7527612010-04-07 11:20:36 +020076static void msc_send_reset(struct bsc_msc_connection *con);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080077
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080078struct bsc_config *bsc_config_num(struct bsc_nat *nat, int num)
79{
80 struct bsc_config *conf;
81
82 llist_for_each_entry(conf, &nat->bsc_configs, entry)
83 if (conf->nr == num)
84 return conf;
85
86 return NULL;
87}
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +010088
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +010089/*
90 * below are stubs we need to link
91 */
92int nm_state_event(enum nm_evt evt, u_int8_t obj_class, void *obj,
Holger Hans Peter Freyther2f2d3422010-05-12 16:55:12 +080093 struct gsm_nm_state *old_state, struct gsm_nm_state *new_state,
94 struct abis_om_obj_inst *obj_ins)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +010095{
96 return -1;
97}
98
99void input_event(int event, enum e1inp_sign_type type, struct gsm_bts_trx *trx)
100{}
101
Holger Hans Peter Freyther9d56d0c2010-04-22 19:11:37 +0800102static void queue_for_msc(struct bsc_msc_connection *con, struct msgb *msg)
103{
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800104 if (write_queue_enqueue(&nat->msc_con->write_queue, msg) != 0) {
Holger Hans Peter Freyther9d56d0c2010-04-22 19:11:37 +0800105 LOGP(DINP, LOGL_ERROR, "Failed to enqueue the write.\n");
106 msgb_free(msg);
107 }
108}
109
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100110static void send_reset_ack(struct bsc_connection *bsc)
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100111{
112 static const u_int8_t gsm_reset_ack[] = {
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100113 0x09, 0x00, 0x03, 0x07, 0x0b, 0x04, 0x43, 0x01,
114 0x00, 0xfe, 0x04, 0x43, 0x5c, 0x00, 0xfe, 0x03,
115 0x00, 0x01, 0x31,
116 };
117
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200118 bsc_send_data(bsc, gsm_reset_ack, sizeof(gsm_reset_ack), IPAC_PROTO_SCCP);
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100119}
120
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800121static void send_ping(struct bsc_connection *bsc)
122{
123 static const u_int8_t id_ping[] = {
124 IPAC_MSGT_PING,
125 };
126
127 bsc_send_data(bsc, id_ping, sizeof(id_ping), IPAC_PROTO_IPACCESS);
128}
129
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +0800130static void send_pong(struct bsc_connection *bsc)
131{
132 static const u_int8_t id_pong[] = {
133 IPAC_MSGT_PONG,
134 };
135
136 bsc_send_data(bsc, id_pong, sizeof(id_pong), IPAC_PROTO_IPACCESS);
137}
138
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800139static void bsc_pong_timeout(void *_bsc)
140{
141 struct bsc_connection *bsc = _bsc;
142
143 LOGP(DNAT, LOGL_ERROR, "BSC Nr: %d PONG timeout.\n", bsc->cfg->nr);
144 bsc_close_connection(bsc);
145}
146
147static void bsc_ping_timeout(void *_bsc)
148{
149 struct bsc_connection *bsc = _bsc;
150
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800151 if (bsc->nat->ping_timeout < 0)
152 return;
153
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800154 send_ping(bsc);
155
156 /* send another ping in 20 seconds */
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800157 bsc_schedule_timer(&bsc->ping_timeout, bsc->nat->ping_timeout, 0);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800158
159 /* also start a pong timer */
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800160 bsc_schedule_timer(&bsc->pong_timeout, bsc->nat->pong_timeout, 0);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800161}
162
163static void start_ping_pong(struct bsc_connection *bsc)
164{
165 bsc->pong_timeout.data = bsc;
166 bsc->pong_timeout.cb = bsc_pong_timeout;
167 bsc->ping_timeout.data = bsc;
168 bsc->ping_timeout.cb = bsc_ping_timeout;
169
170 bsc_ping_timeout(bsc);
171}
172
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100173static void send_id_ack(struct bsc_connection *bsc)
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100174{
175 static const u_int8_t id_ack[] = {
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200176 IPAC_MSGT_ID_ACK
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100177 };
178
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200179 bsc_send_data(bsc, id_ack, sizeof(id_ack), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100180}
181
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100182static void send_id_req(struct bsc_connection *bsc)
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100183{
184 static const u_int8_t id_req[] = {
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200185 IPAC_MSGT_ID_GET,
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100186 0x01, IPAC_IDTAG_UNIT,
187 0x01, IPAC_IDTAG_MACADDR,
188 0x01, IPAC_IDTAG_LOCATION1,
189 0x01, IPAC_IDTAG_LOCATION2,
190 0x01, IPAC_IDTAG_EQUIPVERS,
191 0x01, IPAC_IDTAG_SWVERSION,
192 0x01, IPAC_IDTAG_UNITNAME,
193 0x01, IPAC_IDTAG_SERNR,
194 };
195
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200196 bsc_send_data(bsc, id_req, sizeof(id_req), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100197}
198
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200199static void nat_send_rlsd(struct sccp_connections *conn)
200{
201 struct sccp_connection_released *rel;
202 struct msgb *msg;
203
204 msg = msgb_alloc_headroom(4096, 128, "rlsd");
205 if (!msg) {
206 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
207 return;
208 }
209
210 msg->l2h = msgb_put(msg, sizeof(*rel));
211 rel = (struct sccp_connection_released *) msg->l2h;
212 rel->type = SCCP_MSG_TYPE_RLSD;
213 rel->release_cause = SCCP_RELEASE_CAUSE_SCCP_FAILURE;
214 rel->destination_local_reference = conn->remote_ref;
215 rel->source_local_reference = conn->patched_ref;
216
217 ipaccess_prepend_header(msg, IPAC_PROTO_SCCP);
218
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800219 queue_for_msc(nat->msc_con, msg);
Holger Hans Peter Freyther6b087d12010-04-06 17:32:58 +0200220}
221
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200222static void nat_send_rlc(struct sccp_source_reference *src,
223 struct sccp_source_reference *dst)
224{
225 struct sccp_connection_release_complete *rlc;
226 struct msgb *msg;
227
228 msg = msgb_alloc_headroom(4096, 128, "rlc");
229 if (!msg) {
230 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
231 return;
232 }
233
234 msg->l2h = msgb_put(msg, sizeof(*rlc));
235 rlc = (struct sccp_connection_release_complete *) msg->l2h;
236 rlc->type = SCCP_MSG_TYPE_RLC;
237 rlc->destination_local_reference = *dst;
238 rlc->source_local_reference = *src;
239
240 ipaccess_prepend_header(msg, IPAC_PROTO_SCCP);
241
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800242 queue_for_msc(nat->msc_con, msg);
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200243}
244
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +0200245static void send_mgcp_reset(struct bsc_connection *bsc)
246{
247 static const u_int8_t mgcp_reset[] = {
248 "RSIP 1 13@mgw MGCP 1.0\r\n"
249 };
250
251 bsc_write_mgcp(bsc, mgcp_reset, sizeof mgcp_reset - 1);
252}
253
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100254/*
255 * Below is the handling of messages coming
256 * from the MSC and need to be forwarded to
257 * a real BSC.
258 */
259static void initialize_msc_if_needed()
260{
Holger Hans Peter Freytherb7527612010-04-07 11:20:36 +0200261 if (nat->first_contact)
262 return;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100263
Holger Hans Peter Freytherb7527612010-04-07 11:20:36 +0200264 nat->first_contact = 1;
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800265 msc_send_reset(nat->msc_con);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100266}
267
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800268static void send_id_get_response()
269{
270 struct msgb *msg = bsc_msc_id_get_resp(nat->token);
271 if (!msg)
272 return;
273
274 ipaccess_prepend_header(msg, IPAC_PROTO_IPACCESS);
275 queue_for_msc(nat->msc_con, msg);
276}
277
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100278/*
279 * Currently we are lacking refcounting so we need to copy each message.
280 */
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200281static void bsc_send_data(struct bsc_connection *bsc, const u_int8_t *data, unsigned int length, int proto)
Holger Hans Peter Freytherf7cb33c2010-03-26 07:20:59 +0100282{
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100283 struct msgb *msg;
284
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200285 if (length > 4096 - 128) {
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100286 LOGP(DINP, LOGL_ERROR, "Can not send message of that size.\n");
287 return;
288 }
289
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200290 msg = msgb_alloc_headroom(4096, 128, "to-bsc");
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100291 if (!msg) {
292 LOGP(DINP, LOGL_ERROR, "Failed to allocate memory for BSC msg.\n");
293 return;
294 }
295
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200296 msg->l2h = msgb_put(msg, length);
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100297 memcpy(msg->data, data, length);
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200298
299 bsc_write(bsc, msg, proto);
Holger Hans Peter Freytherf7cb33c2010-03-26 07:20:59 +0100300}
301
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800302static void bsc_send_con_refuse(struct bsc_connection *bsc,
303 struct bsc_nat_parsed *parsed, int con_type)
304{
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800305 struct msgb *payload;
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800306 struct msgb *refuse;
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800307
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800308 if (con_type == NAT_CON_TYPE_LU)
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800309 payload = gsm48_create_loc_upd_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800310 else if (con_type == NAT_CON_TYPE_CM_SERV_REQ)
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800311 payload = gsm48_create_mm_serv_rej(GSM48_REJECT_PLMN_NOT_ALLOWED);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800312
313 /*
314 * Some BSCs do not handle the payload inside a SCCP CREF msg
315 * so we will need to:
316 * 1.) Allocate a local connection and mark it as local..
317 * 2.) queue data for downstream.. and the RLC should delete everything
318 */
319 if (payload) {
320 struct msgb *cc, *udt, *rlsd;
321 struct sccp_connections *con;
322 con = create_sccp_src_ref(bsc, parsed);
323 if (!con)
324 goto send_refuse;
325
326 /* declare it local and assign a unique remote_ref */
327 con->con_type = NAT_CON_TYPE_LOCAL_REJECT;
328 con->con_local = 1;
329 con->has_remote_ref = 1;
330 con->remote_ref = con->patched_ref;
331
332 /* 1. create a confirmation */
333 cc = sccp_create_cc(&con->remote_ref, &con->real_ref);
334 if (!cc)
335 goto send_refuse;
336
337 /* 2. create the DT1 */
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800338 gsm0808_prepend_dtap_header(payload, 0);
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800339 udt = sccp_create_dt1(&con->real_ref, payload->data, payload->len);
340 if (!udt) {
341 msgb_free(cc);
342 goto send_refuse;
343 }
344
345 /* 3. send a RLSD */
346 rlsd = sccp_create_rlsd(&con->remote_ref, &con->real_ref,
347 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
348 if (!rlsd) {
349 msgb_free(cc);
350 msgb_free(udt);
351 goto send_refuse;
352 }
353
354 bsc_write(bsc, cc, IPAC_PROTO_SCCP);
355 bsc_write(bsc, udt, IPAC_PROTO_SCCP);
356 bsc_write(bsc, rlsd, IPAC_PROTO_SCCP);
357 msgb_free(payload);
358 return;
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800359 }
360
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800361
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800362send_refuse:
Holger Hans Peter Freythered775e42010-06-15 18:52:24 +0800363 if (payload)
364 msgb_free(payload);
365
Holger Hans Peter Freytherb71c23b2010-05-16 20:43:52 +0800366 refuse = sccp_create_refuse(parsed->src_local_ref,
367 SCCP_REFUSAL_SCCP_FAILURE, NULL, 0);
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800368 if (!refuse) {
369 LOGP(DNAT, LOGL_ERROR,
370 "Creating refuse msg failed for SCCP 0x%x on BSC Nr: %d.\n",
371 sccp_src_ref_to_int(parsed->src_local_ref), bsc->cfg->nr);
372 return;
373 }
374
375 bsc_write(bsc, refuse, IPAC_PROTO_SCCP);
376}
377
378
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100379static int forward_sccp_to_bts(struct msgb *msg)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100380{
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800381 struct sccp_connections *con;
382 struct bsc_connection *bsc;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800383 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200384 int proto;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100385
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100386 /* filter, drop, patch the message? */
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800387 parsed = bsc_nat_parse(msg);
388 if (!parsed) {
389 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100390 return -1;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800391 }
392
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100393 if (bsc_nat_filter_ipa(DIR_BSC, msg, parsed))
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800394 goto exit;
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800395
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200396 proto = parsed->ipa_proto;
397
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100398 /* Route and modify the SCCP packet */
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200399 if (proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100400 switch (parsed->sccp_type) {
401 case SCCP_MSG_TYPE_UDT:
402 /* forward UDT messages to every BSC */
403 goto send_to_all;
404 break;
405 case SCCP_MSG_TYPE_RLSD:
406 case SCCP_MSG_TYPE_CREF:
407 case SCCP_MSG_TYPE_DT1:
Holger Hans Peter Freytherf46ce532010-04-06 10:22:34 +0200408 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800409 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800410 if (parsed->gsm_type == BSS_MAP_MSG_ASSIGMENT_RQST) {
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200411 counter_inc(nat->stats.sccp.calls);
412
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800413 if (con) {
Holger Hans Peter Freyther3d0049f2010-04-18 01:35:41 +0800414 counter_inc(con->bsc->cfg->stats.sccp.calls);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800415 if (bsc_mgcp_assign(con, msg) != 0)
416 LOGP(DNAT, LOGL_ERROR, "Failed to assign...\n");
417 } else
418 LOGP(DNAT, LOGL_ERROR, "Assignment command but no BSC.\n");
419 }
Holger Hans Peter Freyther16a6f702010-03-29 17:18:42 +0200420 break;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100421 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800422 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
423 if (!con || update_sccp_src_ref(con, parsed) != 0)
Holger Hans Peter Freyther16a6f702010-03-29 17:18:42 +0200424 goto exit;
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800425 break;
426 case SCCP_MSG_TYPE_RLC:
427 LOGP(DNAT, LOGL_ERROR, "Unexpected release complete from MSC.\n");
428 goto exit;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100429 break;
430 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100431 /* MSC never opens a SCCP connection, fall through */
432 default:
433 goto exit;
434 }
Holger Hans Peter Freytherf464ea52010-04-06 16:07:44 +0200435
Holger Hans Peter Freytherb8a33732010-04-08 11:28:12 +0200436 if (!con && parsed->sccp_type == SCCP_MSG_TYPE_RLSD) {
437 LOGP(DNAT, LOGL_NOTICE, "Sending fake RLC on RLSD message to network.\n");
438 /* Exchange src/dest for the reply */
439 nat_send_rlc(parsed->dest_local_ref, parsed->src_local_ref);
440 } else if (!con)
Holger Hans Peter Freyther5f10c6d2010-05-15 19:13:52 +0800441 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 +0100442 }
443
444 talloc_free(parsed);
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800445 if (!con)
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100446 return -1;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800447 if (!con->bsc->authenticated) {
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +0800448 LOGP(DNAT, LOGL_ERROR, "Selected BSC not authenticated.\n");
Holger Hans Peter Freyther3f37b8f2010-02-08 23:24:32 +0100449 return -1;
450 }
451
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200452 bsc_send_data(con->bsc, msg->l2h, msgb_l2len(msg), proto);
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100453 return 0;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100454
455send_to_all:
Holger Hans Peter Freyther45d11812010-06-15 18:46:36 +0800456 /*
457 * Filter Paging from the network. We do not want to send a PAGING
458 * Command to every BSC in our network. We will analys the PAGING
459 * message and then send it to the authenticated messages...
460 */
461 if (parsed->ipa_proto == IPAC_PROTO_SCCP && parsed->gsm_type == BSS_MAP_MSG_PAGING) {
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200462 int lac;
463 bsc = bsc_nat_find_bsc(nat, msg, &lac);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800464 if (bsc && bsc->cfg->forbid_paging)
Holger Hans Peter Freythera34585e2010-04-21 20:17:18 +0800465 LOGP(DNAT, LOGL_DEBUG, "Paging forbidden for BTS: %d\n", bsc->cfg->nr);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800466 else if (bsc)
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200467 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freytherbae9da42010-03-30 05:57:42 +0200468 else
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200469 LOGP(DNAT, LOGL_ERROR, "Could not determine BSC for paging on lac: %d/0x%x\n",
470 lac, lac);
Holger Hans Peter Freyther45d11812010-06-15 18:46:36 +0800471
472 goto exit;
473 }
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100474 /* currently send this to every BSC connected */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800475 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther3f37b8f2010-02-08 23:24:32 +0100476 if (!bsc->authenticated)
477 continue;
478
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200479 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100480 }
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800481
482exit:
483 talloc_free(parsed);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100484 return 0;
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100485}
486
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800487static void msc_connection_was_lost(struct bsc_msc_connection *con)
488{
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200489 struct bsc_connection *bsc, *tmp;
490
Holger Hans Peter Freythera4ed81c2010-04-12 12:35:02 +0200491 counter_inc(nat->stats.msc.reconn);
492
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200493 LOGP(DMSC, LOGL_ERROR, "Closing all connections downstream.\n");
494 llist_for_each_entry_safe(bsc, tmp, &nat->bsc_connections, list_entry)
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800495 bsc_close_connection(bsc);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200496
Holger Hans Peter Freytherb7527612010-04-07 11:20:36 +0200497 nat->first_contact = 0;
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200498 bsc_mgcp_free_endpoints(nat);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200499 bsc_msc_schedule_connect(con);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800500}
501
Holger Hans Peter Freyther02aee142010-04-08 10:31:07 +0200502static void msc_send_reset(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200503{
504 static const u_int8_t reset[] = {
Holger Hans Peter Freyther7cab1662010-04-07 11:11:11 +0200505 0x00, 0x12, 0xfd,
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200506 0x09, 0x00, 0x03, 0x05, 0x07, 0x02, 0x42, 0xfe,
507 0x02, 0x42, 0xfe, 0x06, 0x00, 0x04, 0x30, 0x04,
508 0x01, 0x20
509 };
510
511 struct msgb *msg;
512
513 msg = msgb_alloc_headroom(4096, 128, "08.08 reset");
514 if (!msg) {
515 LOGP(DMSC, LOGL_ERROR, "Failed to allocate reset msg.\n");
516 return;
517 }
518
519 msg->l2h = msgb_put(msg, sizeof(reset));
520 memcpy(msg->l2h, reset, msgb_l2len(msg));
521
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800522 queue_for_msc(nat->msc_con, msg);
Holger Hans Peter Freytheraf0ff6c2010-04-07 10:46:30 +0200523
524 LOGP(DMSC, LOGL_NOTICE, "Scheduled GSM0808 reset msg for the MSC.\n");
525}
526
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800527static int ipaccess_msc_read_cb(struct bsc_fd *bfd)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100528{
529 int error;
530 struct msgb *msg = ipaccess_read_msg(bfd, &error);
531 struct ipaccess_head *hh;
532
533 if (!msg) {
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800534 if (error == 0)
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +0100535 LOGP(DNAT, LOGL_FATAL, "The connection the MSC was lost, exiting\n");
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800536 else
537 LOGP(DNAT, LOGL_ERROR, "Failed to parse ip access message: %d\n", error);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100538
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800539 bsc_msc_lost(nat->msc_con);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100540 return -1;
541 }
542
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +0100543 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 +0100544
545 /* handle base message handling */
546 hh = (struct ipaccess_head *) msg->data;
547 ipaccess_rcvmsg_base(msg, bfd);
548
549 /* initialize the networking. This includes sending a GSM08.08 message */
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800550 if (hh->proto == IPAC_PROTO_IPACCESS) {
551 if (msg->l2h[0] == IPAC_MSGT_ID_ACK)
552 initialize_msc_if_needed();
553 else if (msg->l2h[0] == IPAC_MSGT_ID_GET)
554 send_id_get_response();
555 } else if (hh->proto == IPAC_PROTO_SCCP)
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100556 forward_sccp_to_bts(msg);
557
Holger Hans Peter Freytheraad68b52010-06-15 18:46:48 +0800558 msgb_free(msg);
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +0100559 return 0;
560}
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +0800561
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800562static int ipaccess_msc_write_cb(struct bsc_fd *bfd, struct msgb *msg)
563{
564 int rc;
565 rc = write(bfd->fd, msg->data, msg->len);
566
567 if (rc != msg->len) {
568 LOGP(DNAT, LOGL_ERROR, "Failed to write MSG to MSC.\n");
569 return -1;
570 }
571
572 return rc;
573}
574
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100575/*
576 * Below is the handling of messages coming
577 * from the BSC and need to be forwarded to
578 * a real BSC.
579 */
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100580
581/*
582 * Remove the connection from the connections list,
583 * remove it from the patching of SCCP header lists
584 * as well. Maybe in the future even close connection..
585 */
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800586void bsc_close_connection(struct bsc_connection *connection)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100587{
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100588 struct sccp_connections *sccp_patch, *tmp;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100589
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800590 /* stop the timeout timer */
591 bsc_del_timer(&connection->id_timeout);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800592 bsc_del_timer(&connection->ping_timeout);
593 bsc_del_timer(&connection->pong_timeout);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800594
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100595 /* remove all SCCP connections */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800596 llist_for_each_entry_safe(sccp_patch, tmp, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100597 if (sccp_patch->bsc != connection)
598 continue;
599
Holger Hans Peter Freyther4c683d12010-04-23 14:13:27 +0800600 if (sccp_patch->has_remote_ref)
601 nat_send_rlsd(sccp_patch);
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200602 sccp_connection_destroy(sccp_patch);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100603 }
604
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +0200605 /* close endpoints allocated by this BSC */
606 bsc_mgcp_clear_endpoints_for(connection);
607
Holger Hans Peter Freythere464ed42010-04-22 12:04:36 +0800608 bsc_unregister_fd(&connection->write_queue.bfd);
609 close(connection->write_queue.bfd.fd);
610 write_queue_clear(&connection->write_queue);
611 llist_del(&connection->list_entry);
612
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100613 talloc_free(connection);
614}
615
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800616static void ipaccess_close_bsc(void *data)
617{
Holger Hans Peter Freyther6d5a6002010-04-17 07:58:17 +0200618 struct sockaddr_in sock;
619 socklen_t len = sizeof(sock);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800620 struct bsc_connection *conn = data;
621
Holger Hans Peter Freyther6d5a6002010-04-17 07:58:17 +0200622
623 getpeername(conn->write_queue.bfd.fd, (struct sockaddr *) &sock, &len);
624 LOGP(DNAT, LOGL_ERROR, "BSC on %s didn't respond to identity request. Closing.\n",
625 inet_ntoa(sock.sin_addr));
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800626 bsc_close_connection(conn);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800627}
628
629static void ipaccess_auth_bsc(struct tlv_parsed *tvp, struct bsc_connection *bsc)
630{
631 struct bsc_config *conf;
632 const char* token = (const char *) TLVP_VAL(tvp, IPAC_IDTAG_UNITNAME);
633
Holger Hans Peter Freyther5cdcfa62010-05-02 18:58:10 +0800634 if (bsc->cfg) {
635 LOGP(DNAT, LOGL_ERROR, "Reauth on fd %d bsc nr %d\n",
636 bsc->write_queue.bfd.fd, bsc->cfg->nr);
637 return;
638 }
639
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800640 llist_for_each_entry(conf, &bsc->nat->bsc_configs, entry) {
641 if (strcmp(conf->token, token) == 0) {
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200642 counter_inc(conf->stats.net.reconn);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800643 bsc->authenticated = 1;
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200644 bsc->cfg = conf;
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800645 bsc_del_timer(&bsc->id_timeout);
Holger Hans Peter Freyther74cfab72010-05-05 17:03:44 +0800646 LOGP(DNAT, LOGL_NOTICE, "Authenticated bsc nr: %d lac: %d on fd %d\n",
647 conf->nr, conf->lac, bsc->write_queue.bfd.fd);
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800648 start_ping_pong(bsc);
Holger Hans Peter Freytherc615c262010-04-17 07:59:57 +0200649 return;
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800650 }
651 }
Holger Hans Peter Freytherc615c262010-04-17 07:59:57 +0200652
Holger Hans Peter Freyther74cfab72010-05-05 17:03:44 +0800653 LOGP(DNAT, LOGL_ERROR, "No bsc found for token %s on fd: %d.\n", token,
654 bsc->write_queue.bfd.fd);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800655}
656
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +0100657static int forward_sccp_to_msc(struct bsc_connection *bsc, struct msgb *msg)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100658{
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800659 int con_found = 0;
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +0800660 int con_filter = 0;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800661 struct bsc_connection *con_bsc = NULL;
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800662 int con_type;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800663 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100664
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800665 /* Parse and filter messages */
666 parsed = bsc_nat_parse(msg);
667 if (!parsed) {
668 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freytherd7657ff2010-03-30 07:35:46 +0200669 msgb_free(msg);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800670 return -1;
671 }
672
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100673 if (bsc_nat_filter_ipa(DIR_MSC, msg, parsed))
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800674 goto exit;
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800675
Holger Hans Peter Freytherbbb9d392010-04-02 03:42:44 +0200676 /*
677 * check authentication after filtering to not reject auth
678 * responses coming from the BSC. We have to make sure that
679 * nothing from the exit path will forward things to the MSC
680 */
681 if (!bsc->authenticated) {
682 LOGP(DNAT, LOGL_ERROR, "BSC is not authenticated.\n");
683 msgb_free(msg);
684 return -1;
685 }
686
687
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100688 /* modify the SCCP entries */
689 if (parsed->ipa_proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800690 struct sccp_connections *con;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100691 switch (parsed->sccp_type) {
692 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freyther19c0a842010-05-16 02:00:40 +0800693 if (bsc_nat_filter_sccp_cr(bsc, msg, parsed, &con_type) != 0)
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800694 goto exit3;
Holger Hans Peter Freytherfa20c942010-05-16 16:51:31 +0800695 if (!create_sccp_src_ref(bsc, parsed))
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100696 goto exit2;
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +0800697 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800698 con->con_type = con_type;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800699 con_found = 1;
700 con_bsc = con->bsc;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100701 break;
702 case SCCP_MSG_TYPE_RLSD:
703 case SCCP_MSG_TYPE_CREF:
704 case SCCP_MSG_TYPE_DT1:
705 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freytherf46ce532010-04-06 10:22:34 +0200706 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +0800707 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800708 if (con) {
709 con_found = 1;
710 con_bsc = con->bsc;
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +0800711 con_filter = con->con_local;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800712 }
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100713 break;
714 case SCCP_MSG_TYPE_RLC:
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +0800715 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800716 if (con) {
717 con_found = 1;
718 con_bsc = con->bsc;
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +0800719 con_filter = con->con_local;
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800720 }
Holger Hans Peter Freytherf4cfc4f2010-03-31 09:15:05 +0200721 remove_sccp_src_ref(bsc, msg, parsed);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100722 break;
723 case SCCP_MSG_TYPE_UDT:
724 /* simply forward everything */
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800725 con = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100726 break;
727 default:
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800728 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 +0800729 con = NULL;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100730 goto exit2;
731 break;
732 }
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200733 } else if (parsed->ipa_proto == NAT_IPAC_PROTO_MGCP) {
734 bsc_mgcp_forward(bsc, msg);
735 goto exit2;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800736 } else {
737 LOGP(DNAT, LOGL_ERROR, "Not forwarding unknown stream id: 0x%x\n", parsed->ipa_proto);
738 goto exit2;
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100739 }
740
Holger Hans Peter Freyther605f62a2010-05-16 16:30:42 +0800741 if (con_found && con_bsc != bsc) {
Holger Hans Peter Freytherca0c2f92010-04-21 18:49:55 +0800742 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 +0800743 bsc->cfg->nr, con_bsc->cfg->nr);
Holger Hans Peter Freyther058eeb72010-01-31 09:46:21 +0100744 goto exit2;
745 }
746
Holger Hans Peter Freytherc58da4b2010-05-16 16:36:36 +0800747 /* do not forward messages to the MSC */
748 if (con_filter)
749 goto exit2;
750
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100751 /* send the non-filtered but maybe modified msg */
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800752 queue_for_msc(nat->msc_con, msg);
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100753 talloc_free(parsed);
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800754 return 0;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800755
756exit:
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100757 /* if we filter out the reset send an ack to the BSC */
758 if (parsed->bssap == 0 && parsed->gsm_type == BSS_MAP_MSG_RESET) {
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +0100759 send_reset_ack(bsc);
760 send_reset_ack(bsc);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800761 } else if (parsed->ipa_proto == IPAC_PROTO_IPACCESS) {
762 /* do we know who is handling this? */
763 if (msg->l2h[0] == IPAC_MSGT_ID_RESP) {
764 struct tlv_parsed tvp;
765 ipaccess_idtag_parse(&tvp,
766 (unsigned char *) msg->l2h + 2,
767 msgb_l2len(msg) - 2);
768 if (TLVP_PRESENT(&tvp, IPAC_IDTAG_UNITNAME))
769 ipaccess_auth_bsc(&tvp, bsc);
770 }
771
772 goto exit2;
Holger Hans Peter Freyther38a77d02010-01-30 12:45:10 +0100773 }
774
Holger Hans Peter Freyther1498d2e2010-05-15 00:29:50 +0800775exit2:
776 talloc_free(parsed);
777 msgb_free(msg);
778 return -1;
779
Holger Hans Peter Freytherb4af5c92010-05-14 03:39:56 +0800780exit3:
781 /* send a SCCP Connection Refused */
Holger Hans Peter Freyther91246d72010-05-16 02:20:26 +0800782 bsc_send_con_refuse(bsc, parsed, con_type);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800783 talloc_free(parsed);
Holger Hans Peter Freyther6f5fbfd2010-06-15 18:47:02 +0800784 msgb_free(msg);
785 return -1;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100786}
787
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +0800788static int ipaccess_bsc_read_cb(struct bsc_fd *bfd)
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100789{
790 int error;
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +0100791 struct bsc_connection *bsc = bfd->data;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100792 struct msgb *msg = ipaccess_read_msg(bfd, &error);
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +0800793 struct ipaccess_head *hh;
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100794
795 if (!msg) {
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800796 if (error == 0)
Holger Hans Peter Freyther19c35442010-05-01 10:37:15 +0800797 LOGP(DNAT, LOGL_ERROR,
798 "The connection to the BSC Nr: %d was lost. Cleaning it\n",
799 bsc->cfg ? bsc->cfg->nr : -1);
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800800 else
Holger Hans Peter Freyther19c35442010-05-01 10:37:15 +0800801 LOGP(DNAT, LOGL_ERROR,
802 "Stream error on BSC Nr: %d. Failed to parse ip access message: %d\n",
803 bsc->cfg ? bsc->cfg->nr : -1, error);
Holger Hans Peter Freyther9db78432010-04-23 00:23:03 +0800804
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800805 bsc_close_connection(bsc);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100806 return -1;
807 }
808
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100809
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +0100810 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 +0100811
812 /* Handle messages from the BSC */
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +0800813 hh = (struct ipaccess_head *) msg->data;
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800814
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +0800815 /* stop the pong timeout */
816 if (hh->proto == IPAC_PROTO_IPACCESS) {
817 if (msg->l2h[0] == IPAC_MSGT_PONG) {
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800818 bsc_del_timer(&bsc->pong_timeout);
819 msgb_free(msg);
820 return 0;
Holger Hans Peter Freyther50788712010-06-15 18:51:33 +0800821 } else if (msg->l2h[0] == IPAC_MSGT_PING) {
822 send_pong(bsc);
823 msgb_free(msg);
824 return 0;
Holger Hans Peter Freyther906c15e2010-05-02 19:28:59 +0800825 }
826 }
827
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100828 /* FIXME: Currently no PONG is sent to the BSC */
829 /* FIXME: Currently no ID ACK is sent to the BSC */
Holger Hans Peter Freyther747d6542010-03-26 07:24:34 +0100830 forward_sccp_to_msc(bsc, msg);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100831
832 return 0;
833}
834
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100835static int ipaccess_bsc_write_cb(struct bsc_fd *bfd, struct msgb *msg)
836{
837 int rc;
838
839 rc = write(bfd->fd, msg->data, msg->len);
840 if (rc != msg->len)
841 LOGP(DNAT, LOGL_ERROR, "Failed to write message to the BSC.\n");
842
843 return rc;
844}
845
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100846static int ipaccess_listen_bsc_cb(struct bsc_fd *bfd, unsigned int what)
847{
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100848 struct bsc_connection *bsc;
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +0800849 int fd, rc, on;
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100850 struct sockaddr_in sa;
851 socklen_t sa_len = sizeof(sa);
852
853 if (!(what & BSC_FD_READ))
854 return 0;
855
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +0800856 fd = accept(bfd->fd, (struct sockaddr *) &sa, &sa_len);
857 if (fd < 0) {
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100858 perror("accept");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +0800859 return fd;
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100860 }
861
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200862 /* count the reconnect */
863 counter_inc(nat->stats.bsc.reconn);
864
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200865 /*
866 * if we are not connected to a msc... just close the socket
867 */
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800868 if (!nat->msc_con->is_connected) {
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200869 LOGP(DNAT, LOGL_NOTICE, "Disconnecting BSC due lack of MSC connection.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +0800870 close(fd);
Holger Hans Peter Freythercd895372010-03-29 08:04:09 +0200871 return 0;
872 }
873
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +0800874 on = 1;
Holger Hans Peter Freyther569ee122010-05-05 20:42:14 +0800875 rc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +0800876 if (rc != 0)
Holger Hans Peter Freyther9e938c62010-05-05 18:58:13 +0800877 LOGP(DNAT, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
878
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +0800879 rc = setsockopt(fd, IPPROTO_IP, IP_TOS,
880 &nat->bsc_ip_tos, sizeof(nat->bsc_ip_tos));
881 if (rc != 0)
882 LOGP(DNAT, LOGL_ERROR, "Failed to set IP_TOS: %s\n", strerror(errno));
883
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100884 /* todo... do something with the connection */
Holger Hans Peter Freytherda86c0a2010-01-12 21:35:32 +0100885 /* todo... use GNUtls to see if we want to trust this as a BTS */
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100886
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100887 /*
888 *
889 */
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800890 bsc = bsc_connection_alloc(nat);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100891 if (!bsc) {
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +0100892 LOGP(DNAT, LOGL_ERROR, "Failed to allocate BSC struct.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +0800893 close(fd);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100894 return -1;
895 }
896
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +0800897 bsc->write_queue.bfd.data = bsc;
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +0800898 bsc->write_queue.bfd.fd = fd;
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +0800899 bsc->write_queue.read_cb = ipaccess_bsc_read_cb;
Holger Hans Peter Freyther3025e192010-03-26 09:18:02 +0100900 bsc->write_queue.write_cb = ipaccess_bsc_write_cb;
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +0800901 bsc->write_queue.bfd.when = BSC_FD_READ;
902 if (bsc_register_fd(&bsc->write_queue.bfd) < 0) {
Holger Hans Peter Freyther418f3942010-01-29 05:58:43 +0100903 LOGP(DNAT, LOGL_ERROR, "Failed to register BSC fd.\n");
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +0800904 close(fd);
Holger Hans Peter Freyther24614ad2010-01-13 09:28:12 +0100905 talloc_free(bsc);
906 return -2;
907 }
908
Holger Hans Peter Freyther74cfab72010-05-05 17:03:44 +0800909 LOGP(DNAT, LOGL_NOTICE, "BSC connection on %d with IP: %s\n",
Holger Hans Peter Freyther872d7682010-05-05 20:33:34 +0800910 fd, inet_ntoa(sa.sin_addr));
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800911 llist_add(&bsc->list_entry, &nat->bsc_connections);
Holger Hans Peter Freytherdb7ba7d2010-03-26 07:41:54 +0100912 send_id_ack(bsc);
913 send_id_req(bsc);
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +0200914 send_mgcp_reset(bsc);
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +0800915
916 /*
917 * start the hangup timer
918 */
919 bsc->id_timeout.data = bsc;
920 bsc->id_timeout.cb = ipaccess_close_bsc;
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800921 bsc_schedule_timer(&bsc->id_timeout, nat->auth_timeout, 0);
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100922 return 0;
923}
924
925static int listen_for_bsc(struct bsc_fd *bfd, struct in_addr *in_addr, int port)
926{
927 struct sockaddr_in addr;
928 int ret, on = 1;
929
930 bfd->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
931 bfd->cb = ipaccess_listen_bsc_cb;
932 bfd->when = BSC_FD_READ;
933
934 memset(&addr, 0, sizeof(addr));
935 addr.sin_family = AF_INET;
936 addr.sin_port = htons(port);
937 addr.sin_addr.s_addr = in_addr->s_addr;
938
939 setsockopt(bfd->fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
940
941 ret = bind(bfd->fd, (struct sockaddr *) &addr, sizeof(addr));
942 if (ret < 0) {
943 fprintf(stderr, "Could not bind the BSC socket %s\n",
944 strerror(errno));
945 return -EIO;
946 }
947
948 ret = listen(bfd->fd, 1);
949 if (ret < 0) {
950 perror("listen");
951 return ret;
952 }
953
954 ret = bsc_register_fd(bfd);
955 if (ret < 0) {
956 perror("register_listen_fd");
957 return ret;
958 }
959 return 0;
960}
961
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +0800962static void print_usage()
963{
964 printf("Usage: bsc_nat\n");
965}
966
967static void print_help()
968{
969 printf(" Some useful help...\n");
970 printf(" -h --help this text\n");
971 printf(" -d option --debug=DRLL:DCC:DMM:DRR:DRSL:DNM enable debugging\n");
972 printf(" -s --disable-color\n");
973 printf(" -c --config-file filename The config file to use.\n");
974 printf(" -m --msc=IP. The address of the MSC.\n");
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +0100975 printf(" -l --local=IP. The local address of this BSC.\n");
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +0800976}
977
978static void handle_options(int argc, char** argv)
979{
980 while (1) {
981 int option_index = 0, c;
982 static struct option long_options[] = {
983 {"help", 0, 0, 'h'},
984 {"debug", 1, 0, 'd'},
985 {"config-file", 1, 0, 'c'},
986 {"disable-color", 0, 0, 's'},
987 {"timestamp", 0, 0, 'T'},
988 {"msc", 1, 0, 'm'},
989 {"local", 1, 0, 'l'},
990 {0, 0, 0, 0}
991 };
992
993 c = getopt_long(argc, argv, "hd:sTPc:m:l:",
994 long_options, &option_index);
995 if (c == -1)
996 break;
997
998 switch (c) {
999 case 'h':
1000 print_usage();
1001 print_help();
1002 exit(0);
1003 case 's':
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001004 log_set_use_color(stderr_target, 0);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001005 break;
1006 case 'd':
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001007 log_parse_category_mask(stderr_target, optarg);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001008 break;
1009 case 'c':
1010 config_file = strdup(optarg);
1011 break;
1012 case 'T':
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001013 log_set_print_timestamp(stderr_target, 1);
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001014 break;
1015 case 'm':
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001016 msc_ip = optarg;
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001017 break;
1018 case 'l':
1019 inet_aton(optarg, &local_addr);
1020 break;
1021 default:
1022 /* ignore */
1023 break;
1024 }
1025 }
1026}
1027
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001028static void signal_handler(int signal)
1029{
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001030 switch (signal) {
1031 case SIGABRT:
1032 /* in case of abort, we want to obtain a talloc report
1033 * and then return to the caller, who will abort the process */
1034 case SIGUSR1:
1035 talloc_report_full(tall_bsc_ctx, stderr);
1036 break;
1037 default:
1038 break;
1039 }
1040}
1041
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001042static void sccp_close_unconfirmed(void *_data)
1043{
1044 struct sccp_connections *conn, *tmp1;
1045 struct timespec now;
1046 clock_gettime(CLOCK_MONOTONIC, &now);
1047
1048 llist_for_each_entry_safe(conn, tmp1, &nat->sccp_connections, list_entry) {
1049 if (conn->has_remote_ref)
1050 continue;
1051
1052 int diff = (now.tv_sec - conn->creation_time.tv_sec) / 60;
1053 if (diff < SCCP_CLOSE_TIME_TIMEOUT)
1054 continue;
1055
1056 LOGP(DNAT, LOGL_ERROR, "SCCP connection 0x%x/0x%x was never confirmed.\n",
1057 sccp_src_ref_to_int(&conn->real_ref),
1058 sccp_src_ref_to_int(&conn->patched_ref));
1059 sccp_connection_destroy(conn);
1060 }
1061
1062 bsc_schedule_timer(&sccp_close, SCCP_CLOSE_TIME, 0);
1063}
1064
Holger Hans Peter Freyther0b0b31c2010-06-15 18:51:25 +08001065extern void *tall_msgb_ctx;
1066extern void *tall_ctr_ctx;
1067static void talloc_init_ctx()
1068{
1069 tall_bsc_ctx = talloc_named_const(NULL, 0, "nat");
1070 tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 0, "msgb");
1071 tall_ctr_ctx = talloc_named_const(tall_bsc_ctx, 0, "counter");
1072}
1073
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001074extern enum node_type bsc_vty_go_parent(struct vty *vty);
1075
1076static struct vty_app_info vty_info = {
1077 .name = "BSC NAT",
1078 .version = PACKAGE_VERSION,
1079 .go_parent_cb = bsc_vty_go_parent,
1080};
1081
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001082int main(int argc, char** argv)
1083{
Holger Hans Peter Freyther0b0b31c2010-06-15 18:51:25 +08001084 talloc_init_ctx();
1085
Holger Hans Peter Freythera1597f12010-06-15 18:51:18 +08001086
Holger Hans Peter Freytherfb7a9342010-06-15 19:14:12 +08001087 log_init(&log_info);
1088 stderr_target = log_target_create_stderr();
1089 log_add_target(stderr_target);
1090 log_set_all_filter(stderr_target, 1);
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +08001091
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001092 nat = bsc_nat_alloc();
1093 if (!nat) {
1094 fprintf(stderr, "Failed to allocate the BSC nat.\n");
1095 return -4;
1096 }
1097
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001098 nat->mgcp_cfg = talloc_zero(nat, struct mgcp_config);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001099 if (!nat->mgcp_cfg) {
1100 fprintf(stderr, "Failed to allocate MGCP cfg.\n");
1101 return -5;
1102 }
1103
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001104 vty_info.copyright = openbsc_copyright;
1105 vty_init(&vty_info);
1106 logging_vty_add_cmds();
1107 bsc_nat_vty_init(nat);
1108
1109
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001110 /* parse options */
1111 local_addr.s_addr = INADDR_ANY;
1112 handle_options(argc, argv);
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001113
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001114 /* init vty and parse */
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +08001115 telnet_init(tall_bsc_ctx, NULL, 4244);
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +08001116 if (mgcp_parse_config(config_file, nat->mgcp_cfg) < 0) {
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001117 fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
1118 return -3;
1119 }
1120
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +08001121 /* over rule the VTY config */
1122 if (msc_ip)
1123 bsc_nat_set_msc_ip(nat, msc_ip);
1124
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001125 /* seed the PRNG */
1126 srand(time(NULL));
1127
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001128 /*
1129 * Setup the MGCP code..
1130 */
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +08001131 if (bsc_mgcp_nat_init(nat) != 0)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001132 return -4;
1133
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001134 /* connect to the MSC */
Holger Hans Peter Freytherca999a92010-06-15 18:52:38 +08001135 nat->msc_con = bsc_msc_create(nat->msc_ip, nat->msc_port, 0);
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001136 if (!nat->msc_con) {
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +08001137 fprintf(stderr, "Creating a bsc_msc_connection failed.\n");
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001138 exit(1);
1139 }
1140
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +08001141 nat->msc_con->connection_loss = msc_connection_was_lost;
1142 nat->msc_con->write_queue.read_cb = ipaccess_msc_read_cb;
1143 nat->msc_con->write_queue.write_cb = ipaccess_msc_write_cb;;
1144 bsc_msc_connect(nat->msc_con);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +08001145
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001146 /* wait for the BSC */
Holger Hans Peter Freyther2d677c62010-03-26 06:51:04 +01001147 if (listen_for_bsc(&bsc_listen, &local_addr, 5000) < 0) {
Holger Hans Peter Freyther49d80682010-01-12 21:34:54 +01001148 fprintf(stderr, "Failed to listen for BSC.\n");
1149 exit(1);
1150 }
1151
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001152 signal(SIGABRT, &signal_handler);
1153 signal(SIGUSR1, &signal_handler);
1154 signal(SIGPIPE, SIG_IGN);
1155
Holger Hans Peter Freyther6b6ecba2010-06-15 18:51:56 +08001156 /* recycle timer */
1157 sccp_close.cb = sccp_close_unconfirmed;
1158 sccp_close.data = NULL;
1159 bsc_schedule_timer(&sccp_close, SCCP_CLOSE_TIME, 0);
1160
Holger Hans Peter Freyther6ace5222010-01-12 21:15:08 +01001161 while (1) {
1162 bsc_select_main(0);
1163 }
1164
Holger Hans Peter Freyther9e2c5f52010-06-15 18:44:42 +08001165 return 0;
1166}