blob: 0462f9d5c57ba27d7e9c2fc98b1f5a261825aaf6 [file] [log] [blame]
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08001/* BSC Multiplexer/NAT */
2
3/*
4 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
Holger Hans Peter Freyther98e49d42010-06-15 18:46:56 +08005 * (C) 2010 by On-Waves
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +01006 * (C) 2009 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +08007 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24#include <sys/socket.h>
25#include <netinet/in.h>
26#include <arpa/inet.h>
27
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +010028#include <errno.h>
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +010029#include <signal.h>
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +080030#include <stdio.h>
31#include <stdlib.h>
Holger Hans Peter Freytherfd012d52010-01-12 21:36:08 +010032#include <time.h>
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +080033#include <unistd.h>
34
35#define _GNU_SOURCE
36#include <getopt.h>
37
38#include <openbsc/debug.h>
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +010039#include <openbsc/bsc_msc.h>
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +080040#include <openbsc/bsc_nat.h>
Holger Hans Peter Freyther722ead82010-01-30 12:45:10 +010041#include <openbsc/bssap.h>
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +010042#include <openbsc/ipaccess.h>
43#include <openbsc/abis_nm.h>
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +080044#include <openbsc/telnet_interface.h>
45
Holger Hans Peter Freyther3b960892010-06-15 19:06:18 +080046#include <osmocore/talloc.h>
47
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +080048#include <vty/vty.h>
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +080049
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +080050#include <sccp/sccp.h>
51
Holger Hans Peter Freyther4acca1a2010-06-15 19:14:12 +080052struct log_target *stderr_target;
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +080053static const char *config_file = "bsc-nat.cfg";
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +080054static struct in_addr local_addr;
Holger Hans Peter Freyther4a860a02010-06-15 18:47:29 +080055static struct bsc_msc_connection *msc_con;
Holger Hans Peter Freytherbea0ac62010-03-26 06:51:04 +010056static struct bsc_fd bsc_listen;
Holger Hans Peter Freyther9226d702010-06-15 18:51:04 +080057static const char *msc_ip = NULL;
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +010058
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +010059
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +080060static struct bsc_nat *nat;
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +020061static void bsc_send_data(struct bsc_connection *bsc, const u_int8_t *data, unsigned int length, int);
Holger Hans Peter Freyther3399df32010-03-29 08:04:09 +020062static void remove_bsc_connection(struct bsc_connection *connection);
Holger Hans Peter Freytherdc813932010-04-07 11:20:36 +020063static void msc_send_reset(struct bsc_msc_connection *con);
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +080064
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +080065struct bsc_config *bsc_config_num(struct bsc_nat *nat, int num)
66{
67 struct bsc_config *conf;
68
69 llist_for_each_entry(conf, &nat->bsc_configs, entry)
70 if (conf->nr == num)
71 return conf;
72
73 return NULL;
74}
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +010075
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +010076/*
77 * below are stubs we need to link
78 */
79int nm_state_event(enum nm_evt evt, u_int8_t obj_class, void *obj,
80 struct gsm_nm_state *old_state, struct gsm_nm_state *new_state)
81{
82 return -1;
83}
84
85void input_event(int event, enum e1inp_sign_type type, struct gsm_bts_trx *trx)
86{}
87
88int gsm0408_rcvmsg(struct msgb *msg, u_int8_t link_id)
89{
90 return -1;
91}
92
Holger Hans Peter Freyther754787c2010-04-22 19:11:37 +080093static void queue_for_msc(struct bsc_msc_connection *con, struct msgb *msg)
94{
95 if (write_queue_enqueue(&msc_con->write_queue, msg) != 0) {
96 LOGP(DINP, LOGL_ERROR, "Failed to enqueue the write.\n");
97 msgb_free(msg);
98 }
99}
100
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100101static void send_reset_ack(struct bsc_connection *bsc)
Holger Hans Peter Freyther722ead82010-01-30 12:45:10 +0100102{
103 static const u_int8_t gsm_reset_ack[] = {
Holger Hans Peter Freyther722ead82010-01-30 12:45:10 +0100104 0x09, 0x00, 0x03, 0x07, 0x0b, 0x04, 0x43, 0x01,
105 0x00, 0xfe, 0x04, 0x43, 0x5c, 0x00, 0xfe, 0x03,
106 0x00, 0x01, 0x31,
107 };
108
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200109 bsc_send_data(bsc, gsm_reset_ack, sizeof(gsm_reset_ack), IPAC_PROTO_SCCP);
Holger Hans Peter Freyther722ead82010-01-30 12:45:10 +0100110}
111
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100112static void send_id_ack(struct bsc_connection *bsc)
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100113{
114 static const u_int8_t id_ack[] = {
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200115 IPAC_MSGT_ID_ACK
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100116 };
117
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200118 bsc_send_data(bsc, id_ack, sizeof(id_ack), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100119}
120
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100121static void send_id_req(struct bsc_connection *bsc)
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100122{
123 static const u_int8_t id_req[] = {
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200124 IPAC_MSGT_ID_GET,
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100125 0x01, IPAC_IDTAG_UNIT,
126 0x01, IPAC_IDTAG_MACADDR,
127 0x01, IPAC_IDTAG_LOCATION1,
128 0x01, IPAC_IDTAG_LOCATION2,
129 0x01, IPAC_IDTAG_EQUIPVERS,
130 0x01, IPAC_IDTAG_SWVERSION,
131 0x01, IPAC_IDTAG_UNITNAME,
132 0x01, IPAC_IDTAG_SERNR,
133 };
134
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200135 bsc_send_data(bsc, id_req, sizeof(id_req), IPAC_PROTO_IPACCESS);
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100136}
137
Holger Hans Peter Freyther7746bd82010-04-06 17:32:58 +0200138static void nat_send_rlsd(struct sccp_connections *conn)
139{
140 struct sccp_connection_released *rel;
141 struct msgb *msg;
142
143 msg = msgb_alloc_headroom(4096, 128, "rlsd");
144 if (!msg) {
145 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
146 return;
147 }
148
149 msg->l2h = msgb_put(msg, sizeof(*rel));
150 rel = (struct sccp_connection_released *) msg->l2h;
151 rel->type = SCCP_MSG_TYPE_RLSD;
152 rel->release_cause = SCCP_RELEASE_CAUSE_SCCP_FAILURE;
153 rel->destination_local_reference = conn->remote_ref;
154 rel->source_local_reference = conn->patched_ref;
155
156 ipaccess_prepend_header(msg, IPAC_PROTO_SCCP);
157
Holger Hans Peter Freyther754787c2010-04-22 19:11:37 +0800158 queue_for_msc(msc_con, msg);
Holger Hans Peter Freyther7746bd82010-04-06 17:32:58 +0200159}
160
Holger Hans Peter Freythercd922a12010-04-08 11:28:12 +0200161static void nat_send_rlc(struct sccp_source_reference *src,
162 struct sccp_source_reference *dst)
163{
164 struct sccp_connection_release_complete *rlc;
165 struct msgb *msg;
166
167 msg = msgb_alloc_headroom(4096, 128, "rlc");
168 if (!msg) {
169 LOGP(DNAT, LOGL_ERROR, "Failed to allocate clear command.\n");
170 return;
171 }
172
173 msg->l2h = msgb_put(msg, sizeof(*rlc));
174 rlc = (struct sccp_connection_release_complete *) msg->l2h;
175 rlc->type = SCCP_MSG_TYPE_RLC;
176 rlc->destination_local_reference = *dst;
177 rlc->source_local_reference = *src;
178
179 ipaccess_prepend_header(msg, IPAC_PROTO_SCCP);
180
Holger Hans Peter Freyther754787c2010-04-22 19:11:37 +0800181 queue_for_msc(msc_con, msg);
Holger Hans Peter Freythercd922a12010-04-08 11:28:12 +0200182}
183
Holger Hans Peter Freyther8c61cdb2010-03-31 07:30:58 +0200184static void send_mgcp_reset(struct bsc_connection *bsc)
185{
186 static const u_int8_t mgcp_reset[] = {
187 "RSIP 1 13@mgw MGCP 1.0\r\n"
188 };
189
190 bsc_write_mgcp(bsc, mgcp_reset, sizeof mgcp_reset - 1);
191}
192
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100193/*
194 * Below is the handling of messages coming
195 * from the MSC and need to be forwarded to
196 * a real BSC.
197 */
198static void initialize_msc_if_needed()
199{
Holger Hans Peter Freytherdc813932010-04-07 11:20:36 +0200200 if (nat->first_contact)
201 return;
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100202
Holger Hans Peter Freytherdc813932010-04-07 11:20:36 +0200203 nat->first_contact = 1;
204 msc_send_reset(msc_con);
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100205}
206
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100207/*
208 * Currently we are lacking refcounting so we need to copy each message.
209 */
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200210static void bsc_send_data(struct bsc_connection *bsc, const u_int8_t *data, unsigned int length, int proto)
Holger Hans Peter Freytherad2136b2010-03-26 07:20:59 +0100211{
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100212 struct msgb *msg;
213
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200214 if (length > 4096 - 128) {
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100215 LOGP(DINP, LOGL_ERROR, "Can not send message of that size.\n");
216 return;
217 }
218
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200219 msg = msgb_alloc_headroom(4096, 128, "to-bsc");
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100220 if (!msg) {
221 LOGP(DINP, LOGL_ERROR, "Failed to allocate memory for BSC msg.\n");
222 return;
223 }
224
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200225 msg->l2h = msgb_put(msg, length);
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100226 memcpy(msg->data, data, length);
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200227
228 bsc_write(bsc, msg, proto);
Holger Hans Peter Freytherad2136b2010-03-26 07:20:59 +0100229}
230
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100231static int forward_sccp_to_bts(struct msgb *msg)
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100232{
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800233 struct sccp_connections *con;
234 struct bsc_connection *bsc;
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800235 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200236 int proto;
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100237
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100238 /* filter, drop, patch the message? */
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800239 parsed = bsc_nat_parse(msg);
240 if (!parsed) {
241 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100242 return -1;
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800243 }
244
Holger Hans Peter Freytherbbf6b652010-01-30 11:53:30 +0100245 if (bsc_nat_filter_ipa(DIR_BSC, msg, parsed))
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800246 goto exit;
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +0800247
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200248 proto = parsed->ipa_proto;
249
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100250 /* Route and modify the SCCP packet */
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200251 if (proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100252 switch (parsed->sccp_type) {
253 case SCCP_MSG_TYPE_UDT:
254 /* forward UDT messages to every BSC */
255 goto send_to_all;
256 break;
257 case SCCP_MSG_TYPE_RLSD:
258 case SCCP_MSG_TYPE_CREF:
259 case SCCP_MSG_TYPE_DT1:
Holger Hans Peter Freyther567e8402010-04-06 10:22:34 +0200260 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800261 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
Holger Hans Peter Freytherdccb9152010-06-15 18:49:53 +0800262 if (parsed->gsm_type == BSS_MAP_MSG_ASSIGMENT_RQST) {
Holger Hans Peter Freyther5fa42dd2010-04-12 12:17:09 +0200263 counter_inc(nat->stats.sccp.calls);
264
Holger Hans Peter Freytherdccb9152010-06-15 18:49:53 +0800265 if (con) {
Holger Hans Peter Freytherdc71cf42010-04-18 01:35:41 +0800266 counter_inc(con->bsc->cfg->stats.sccp.calls);
Holger Hans Peter Freytherdccb9152010-06-15 18:49:53 +0800267 if (bsc_mgcp_assign(con, msg) != 0)
268 LOGP(DNAT, LOGL_ERROR, "Failed to assign...\n");
269 } else
270 LOGP(DNAT, LOGL_ERROR, "Assignment command but no BSC.\n");
271 }
Holger Hans Peter Freythera25e3ec2010-03-29 17:18:42 +0200272 break;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100273 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800274 con = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
275 if (!con || update_sccp_src_ref(con, parsed) != 0)
Holger Hans Peter Freythera25e3ec2010-03-29 17:18:42 +0200276 goto exit;
Holger Hans Peter Freyther2f1f55d2010-06-15 18:47:49 +0800277 break;
278 case SCCP_MSG_TYPE_RLC:
279 LOGP(DNAT, LOGL_ERROR, "Unexpected release complete from MSC.\n");
280 goto exit;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100281 break;
282 case SCCP_MSG_TYPE_CR:
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100283 /* MSC never opens a SCCP connection, fall through */
284 default:
285 goto exit;
286 }
Holger Hans Peter Freyther8d298282010-04-06 16:07:44 +0200287
Holger Hans Peter Freythercd922a12010-04-08 11:28:12 +0200288 if (!con && parsed->sccp_type == SCCP_MSG_TYPE_RLSD) {
289 LOGP(DNAT, LOGL_NOTICE, "Sending fake RLC on RLSD message to network.\n");
290 /* Exchange src/dest for the reply */
291 nat_send_rlc(parsed->dest_local_ref, parsed->src_local_ref);
292 } else if (!con)
Holger Hans Peter Freyther8d298282010-04-06 16:07:44 +0200293 LOGP(DNAT, LOGL_ERROR, "Unknown connection for msg type: 0x%x.\n", parsed->sccp_type);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100294 }
295
296 talloc_free(parsed);
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800297 if (!con)
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100298 return -1;
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800299 if (!con->bsc->authenticated) {
Holger Hans Peter Freyther3b960892010-06-15 19:06:18 +0800300 LOGP(DNAT, LOGL_ERROR, "Selected BSC not authenticated.\n");
Holger Hans Peter Freytherfb5a4872010-02-08 23:24:32 +0100301 return -1;
302 }
303
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200304 bsc_send_data(con->bsc, msg->l2h, msgb_l2len(msg), proto);
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100305 return 0;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100306
307send_to_all:
Holger Hans Peter Freytherfd2c7572010-06-15 18:46:36 +0800308 /*
309 * Filter Paging from the network. We do not want to send a PAGING
310 * Command to every BSC in our network. We will analys the PAGING
311 * message and then send it to the authenticated messages...
312 */
313 if (parsed->ipa_proto == IPAC_PROTO_SCCP && parsed->gsm_type == BSS_MAP_MSG_PAGING) {
Holger Hans Peter Freyther935b2df2010-04-17 08:07:19 +0200314 int lac;
315 bsc = bsc_nat_find_bsc(nat, msg, &lac);
Holger Hans Peter Freyther7acf4622010-04-21 19:05:14 +0800316 if (bsc && bsc->cfg->forbid_paging)
Holger Hans Peter Freyther19ccb482010-04-21 20:17:18 +0800317 LOGP(DNAT, LOGL_DEBUG, "Paging forbidden for BTS: %d\n", bsc->cfg->nr);
Holger Hans Peter Freyther7acf4622010-04-21 19:05:14 +0800318 else if (bsc)
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200319 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freyther21c4d9e2010-03-30 05:57:42 +0200320 else
Holger Hans Peter Freyther935b2df2010-04-17 08:07:19 +0200321 LOGP(DNAT, LOGL_ERROR, "Could not determine BSC for paging on lac: %d/0x%x\n",
322 lac, lac);
Holger Hans Peter Freytherfd2c7572010-06-15 18:46:36 +0800323
324 goto exit;
325 }
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100326 /* currently send this to every BSC connected */
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +0800327 llist_for_each_entry(bsc, &nat->bsc_connections, list_entry) {
Holger Hans Peter Freytherfb5a4872010-02-08 23:24:32 +0100328 if (!bsc->authenticated)
329 continue;
330
Holger Hans Peter Freythereb4edde2010-04-08 10:24:57 +0200331 bsc_send_data(bsc, msg->l2h, msgb_l2len(msg), parsed->ipa_proto);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100332 }
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800333
334exit:
335 talloc_free(parsed);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100336 return 0;
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100337}
338
Holger Hans Peter Freyther4a860a02010-06-15 18:47:29 +0800339static void msc_connection_was_lost(struct bsc_msc_connection *con)
340{
Holger Hans Peter Freyther3399df32010-03-29 08:04:09 +0200341 struct bsc_connection *bsc, *tmp;
342
Holger Hans Peter Freyther5b870612010-04-12 12:35:02 +0200343 counter_inc(nat->stats.msc.reconn);
344
Holger Hans Peter Freyther3399df32010-03-29 08:04:09 +0200345 LOGP(DMSC, LOGL_ERROR, "Closing all connections downstream.\n");
346 llist_for_each_entry_safe(bsc, tmp, &nat->bsc_connections, list_entry)
347 remove_bsc_connection(bsc);
348
Holger Hans Peter Freytherdc813932010-04-07 11:20:36 +0200349 nat->first_contact = 0;
Holger Hans Peter Freyther1f278392010-03-31 09:16:56 +0200350 bsc_mgcp_free_endpoints(nat);
Holger Hans Peter Freyther3399df32010-03-29 08:04:09 +0200351 bsc_msc_schedule_connect(con);
Holger Hans Peter Freyther4a860a02010-06-15 18:47:29 +0800352}
353
Holger Hans Peter Freyther8f515a02010-04-08 10:31:07 +0200354static void msc_send_reset(struct bsc_msc_connection *msc_con)
Holger Hans Peter Freyther2b3505b2010-04-07 10:46:30 +0200355{
356 static const u_int8_t reset[] = {
Holger Hans Peter Freytherc48a5d92010-04-07 11:11:11 +0200357 0x00, 0x12, 0xfd,
Holger Hans Peter Freyther2b3505b2010-04-07 10:46:30 +0200358 0x09, 0x00, 0x03, 0x05, 0x07, 0x02, 0x42, 0xfe,
359 0x02, 0x42, 0xfe, 0x06, 0x00, 0x04, 0x30, 0x04,
360 0x01, 0x20
361 };
362
363 struct msgb *msg;
364
365 msg = msgb_alloc_headroom(4096, 128, "08.08 reset");
366 if (!msg) {
367 LOGP(DMSC, LOGL_ERROR, "Failed to allocate reset msg.\n");
368 return;
369 }
370
371 msg->l2h = msgb_put(msg, sizeof(reset));
372 memcpy(msg->l2h, reset, msgb_l2len(msg));
373
Holger Hans Peter Freyther754787c2010-04-22 19:11:37 +0800374 queue_for_msc(msc_con, msg);
Holger Hans Peter Freyther2b3505b2010-04-07 10:46:30 +0200375
376 LOGP(DMSC, LOGL_NOTICE, "Scheduled GSM0808 reset msg for the MSC.\n");
377}
378
Holger Hans Peter Freyther257a8cc2010-06-15 18:47:02 +0800379static int ipaccess_msc_read_cb(struct bsc_fd *bfd)
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100380{
381 int error;
382 struct msgb *msg = ipaccess_read_msg(bfd, &error);
383 struct ipaccess_head *hh;
384
385 if (!msg) {
Holger Hans Peter Freytherbae6b8b2010-04-23 00:23:03 +0800386 if (error == 0)
Holger Hans Peter Freyther8f99b822010-01-29 05:58:43 +0100387 LOGP(DNAT, LOGL_FATAL, "The connection the MSC was lost, exiting\n");
Holger Hans Peter Freytherbae6b8b2010-04-23 00:23:03 +0800388 else
389 LOGP(DNAT, LOGL_ERROR, "Failed to parse ip access message: %d\n", error);
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100390
Holger Hans Peter Freytherbae6b8b2010-04-23 00:23:03 +0800391 bsc_msc_lost(msc_con);
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100392 return -1;
393 }
394
Holger Hans Peter Freyther8f99b822010-01-29 05:58:43 +0100395 LOGP(DNAT, LOGL_DEBUG, "MSG from MSC: %s proto: %d\n", hexdump(msg->data, msg->len), msg->l2h[0]);
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100396
397 /* handle base message handling */
398 hh = (struct ipaccess_head *) msg->data;
399 ipaccess_rcvmsg_base(msg, bfd);
400
401 /* initialize the networking. This includes sending a GSM08.08 message */
402 if (hh->proto == IPAC_PROTO_IPACCESS && msg->l2h[0] == IPAC_MSGT_ID_ACK)
403 initialize_msc_if_needed();
404 else if (hh->proto == IPAC_PROTO_SCCP)
405 forward_sccp_to_bts(msg);
406
Holger Hans Peter Freyther418fe112010-06-15 18:46:48 +0800407 msgb_free(msg);
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100408 return 0;
409}
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +0800410
Holger Hans Peter Freyther257a8cc2010-06-15 18:47:02 +0800411static int ipaccess_msc_write_cb(struct bsc_fd *bfd, struct msgb *msg)
412{
413 int rc;
414 rc = write(bfd->fd, msg->data, msg->len);
415
416 if (rc != msg->len) {
417 LOGP(DNAT, LOGL_ERROR, "Failed to write MSG to MSC.\n");
418 return -1;
419 }
420
421 return rc;
422}
423
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +0100424/*
425 * Below is the handling of messages coming
426 * from the BSC and need to be forwarded to
427 * a real BSC.
428 */
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100429
430/*
431 * Remove the connection from the connections list,
432 * remove it from the patching of SCCP header lists
433 * as well. Maybe in the future even close connection..
434 */
435static void remove_bsc_connection(struct bsc_connection *connection)
436{
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100437 struct sccp_connections *sccp_patch, *tmp;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100438
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800439 /* stop the timeout timer */
440 bsc_del_timer(&connection->id_timeout);
441
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100442 /* remove all SCCP connections */
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +0800443 llist_for_each_entry_safe(sccp_patch, tmp, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100444 if (sccp_patch->bsc != connection)
445 continue;
446
Holger Hans Peter Freyther5975c682010-04-23 14:13:27 +0800447 if (sccp_patch->has_remote_ref)
448 nat_send_rlsd(sccp_patch);
Holger Hans Peter Freyther8be49b32010-03-30 10:45:48 +0200449 sccp_connection_destroy(sccp_patch);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100450 }
451
Holger Hans Peter Freytherc0ff1d02010-04-05 23:09:27 +0200452 /* close endpoints allocated by this BSC */
453 bsc_mgcp_clear_endpoints_for(connection);
454
Holger Hans Peter Freyther53cd9852010-04-22 12:04:36 +0800455 bsc_unregister_fd(&connection->write_queue.bfd);
456 close(connection->write_queue.bfd.fd);
457 write_queue_clear(&connection->write_queue);
458 llist_del(&connection->list_entry);
459
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100460 talloc_free(connection);
461}
462
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800463static void ipaccess_close_bsc(void *data)
464{
Holger Hans Peter Freyther3626e972010-04-17 07:58:17 +0200465 struct sockaddr_in sock;
466 socklen_t len = sizeof(sock);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800467 struct bsc_connection *conn = data;
468
Holger Hans Peter Freyther3626e972010-04-17 07:58:17 +0200469
470 getpeername(conn->write_queue.bfd.fd, (struct sockaddr *) &sock, &len);
471 LOGP(DNAT, LOGL_ERROR, "BSC on %s didn't respond to identity request. Closing.\n",
472 inet_ntoa(sock.sin_addr));
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800473 remove_bsc_connection(conn);
474}
475
476static void ipaccess_auth_bsc(struct tlv_parsed *tvp, struct bsc_connection *bsc)
477{
478 struct bsc_config *conf;
479 const char* token = (const char *) TLVP_VAL(tvp, IPAC_IDTAG_UNITNAME);
480
481 llist_for_each_entry(conf, &bsc->nat->bsc_configs, entry) {
482 if (strcmp(conf->token, token) == 0) {
Holger Hans Peter Freyther5fa42dd2010-04-12 12:17:09 +0200483 counter_inc(conf->stats.net.reconn);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800484 bsc->authenticated = 1;
Holger Hans Peter Freytherbfcf5192010-04-06 15:11:34 +0200485 bsc->cfg = conf;
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800486 bsc_del_timer(&bsc->id_timeout);
Holger Hans Peter Freytherbfcf5192010-04-06 15:11:34 +0200487 LOGP(DNAT, LOGL_NOTICE, "Authenticated bsc nr: %d lac: %d\n", conf->nr, conf->lac);
Holger Hans Peter Freyther8b2302f2010-04-17 07:59:57 +0200488 return;
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800489 }
490 }
Holger Hans Peter Freyther8b2302f2010-04-17 07:59:57 +0200491
492 LOGP(DNAT, LOGL_ERROR, "No bsc found for token %s.\n", token);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800493}
494
Holger Hans Peter Freyther4ce32702010-03-26 07:24:34 +0100495static int forward_sccp_to_msc(struct bsc_connection *bsc, struct msgb *msg)
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100496{
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800497 struct sccp_connections *con;
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800498 struct bsc_nat_parsed *parsed;
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100499
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800500 /* Parse and filter messages */
501 parsed = bsc_nat_parse(msg);
502 if (!parsed) {
503 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from BSC.\n");
Holger Hans Peter Freyther45f62952010-03-30 07:35:46 +0200504 msgb_free(msg);
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800505 return -1;
506 }
507
Holger Hans Peter Freytherbbf6b652010-01-30 11:53:30 +0100508 if (bsc_nat_filter_ipa(DIR_MSC, msg, parsed))
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800509 goto exit;
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +0800510
Holger Hans Peter Freyther5a723b62010-04-02 03:42:44 +0200511 /*
512 * check authentication after filtering to not reject auth
513 * responses coming from the BSC. We have to make sure that
514 * nothing from the exit path will forward things to the MSC
515 */
516 if (!bsc->authenticated) {
517 LOGP(DNAT, LOGL_ERROR, "BSC is not authenticated.\n");
518 msgb_free(msg);
519 return -1;
520 }
521
522
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100523 /* modify the SCCP entries */
524 if (parsed->ipa_proto == IPAC_PROTO_SCCP) {
525 switch (parsed->sccp_type) {
526 case SCCP_MSG_TYPE_CR:
527 if (create_sccp_src_ref(bsc, msg, parsed) != 0)
528 goto exit2;
Holger Hans Peter Freytherda30c4b2010-04-21 18:56:12 +0800529 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100530 break;
531 case SCCP_MSG_TYPE_RLSD:
532 case SCCP_MSG_TYPE_CREF:
533 case SCCP_MSG_TYPE_DT1:
534 case SCCP_MSG_TYPE_CC:
Holger Hans Peter Freyther567e8402010-04-06 10:22:34 +0200535 case SCCP_MSG_TYPE_IT:
Holger Hans Peter Freytherda30c4b2010-04-21 18:56:12 +0800536 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100537 break;
538 case SCCP_MSG_TYPE_RLC:
Holger Hans Peter Freytherda30c4b2010-04-21 18:56:12 +0800539 con = patch_sccp_src_ref_to_msc(msg, parsed, bsc);
Holger Hans Peter Freyther38712d02010-03-31 09:15:05 +0200540 remove_sccp_src_ref(bsc, msg, parsed);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100541 break;
542 case SCCP_MSG_TYPE_UDT:
543 /* simply forward everything */
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800544 con = NULL;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100545 break;
546 default:
Holger Hans Peter Freyther2f1f55d2010-06-15 18:47:49 +0800547 LOGP(DNAT, LOGL_ERROR, "Not forwarding to msc sccp type: 0x%x\n", parsed->sccp_type);
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800548 con = NULL;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100549 goto exit2;
550 break;
551 }
Holger Hans Peter Freyther9fec0102010-04-01 10:16:28 +0200552 } else if (parsed->ipa_proto == NAT_IPAC_PROTO_MGCP) {
553 bsc_mgcp_forward(bsc, msg);
554 goto exit2;
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800555 } else {
556 LOGP(DNAT, LOGL_ERROR, "Not forwarding unknown stream id: 0x%x\n", parsed->ipa_proto);
557 goto exit2;
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100558 }
559
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800560 if (con && con->bsc != bsc) {
Holger Hans Peter Freyther4107f982010-04-21 18:49:55 +0800561 LOGP(DNAT, LOGL_ERROR, "The connection belongs to a different BTS: input: %d con: %d\n",
562 bsc->cfg->nr, con->bsc->cfg->nr);
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100563 goto exit2;
564 }
565
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100566 /* send the non-filtered but maybe modified msg */
Holger Hans Peter Freyther754787c2010-04-22 19:11:37 +0800567 queue_for_msc(msc_con, msg);
Holger Hans Peter Freyther722ead82010-01-30 12:45:10 +0100568 talloc_free(parsed);
Holger Hans Peter Freyther257a8cc2010-06-15 18:47:02 +0800569 return 0;
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800570
571exit:
Holger Hans Peter Freyther722ead82010-01-30 12:45:10 +0100572 /* if we filter out the reset send an ack to the BSC */
573 if (parsed->bssap == 0 && parsed->gsm_type == BSS_MAP_MSG_RESET) {
Holger Hans Peter Freyther4ce32702010-03-26 07:24:34 +0100574 send_reset_ack(bsc);
575 send_reset_ack(bsc);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800576 } else if (parsed->ipa_proto == IPAC_PROTO_IPACCESS) {
577 /* do we know who is handling this? */
578 if (msg->l2h[0] == IPAC_MSGT_ID_RESP) {
579 struct tlv_parsed tvp;
580 ipaccess_idtag_parse(&tvp,
581 (unsigned char *) msg->l2h + 2,
582 msgb_l2len(msg) - 2);
583 if (TLVP_PRESENT(&tvp, IPAC_IDTAG_UNITNAME))
584 ipaccess_auth_bsc(&tvp, bsc);
585 }
586
587 goto exit2;
Holger Hans Peter Freyther722ead82010-01-30 12:45:10 +0100588 }
589
Holger Hans Peter Freythere83917d2010-01-31 09:46:21 +0100590exit2:
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800591 talloc_free(parsed);
Holger Hans Peter Freyther257a8cc2010-06-15 18:47:02 +0800592 msgb_free(msg);
593 return -1;
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100594}
595
Holger Hans Peter Freyther84010542010-06-15 18:47:10 +0800596static int ipaccess_bsc_read_cb(struct bsc_fd *bfd)
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100597{
598 int error;
Holger Hans Peter Freyther4ce32702010-03-26 07:24:34 +0100599 struct bsc_connection *bsc = bfd->data;
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100600 struct msgb *msg = ipaccess_read_msg(bfd, &error);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100601
602 if (!msg) {
Holger Hans Peter Freytherbae6b8b2010-04-23 00:23:03 +0800603 if (error == 0)
Holger Hans Peter Freyther8f99b822010-01-29 05:58:43 +0100604 LOGP(DNAT, LOGL_ERROR, "The connection to the BSC was lost. Cleaning it\n");
Holger Hans Peter Freytherbae6b8b2010-04-23 00:23:03 +0800605 else
Holger Hans Peter Freyther8f99b822010-01-29 05:58:43 +0100606 LOGP(DNAT, LOGL_ERROR, "Failed to parse ip access message: %d\n", error);
Holger Hans Peter Freytherbae6b8b2010-04-23 00:23:03 +0800607
608 remove_bsc_connection(bsc);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100609 return -1;
610 }
611
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100612
Holger Hans Peter Freyther8f99b822010-01-29 05:58:43 +0100613 LOGP(DNAT, LOGL_DEBUG, "MSG from BSC: %s proto: %d\n", hexdump(msg->data, msg->len), msg->l2h[0]);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100614
615 /* Handle messages from the BSC */
616 /* FIXME: Currently no PONG is sent to the BSC */
617 /* FIXME: Currently no ID ACK is sent to the BSC */
Holger Hans Peter Freyther4ce32702010-03-26 07:24:34 +0100618 forward_sccp_to_msc(bsc, msg);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100619
620 return 0;
621}
622
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100623static int ipaccess_bsc_write_cb(struct bsc_fd *bfd, struct msgb *msg)
624{
625 int rc;
626
627 rc = write(bfd->fd, msg->data, msg->len);
628 if (rc != msg->len)
629 LOGP(DNAT, LOGL_ERROR, "Failed to write message to the BSC.\n");
630
631 return rc;
632}
633
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +0100634static int ipaccess_listen_bsc_cb(struct bsc_fd *bfd, unsigned int what)
635{
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100636 struct bsc_connection *bsc;
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +0100637 int ret;
638 struct sockaddr_in sa;
639 socklen_t sa_len = sizeof(sa);
640
641 if (!(what & BSC_FD_READ))
642 return 0;
643
644 ret = accept(bfd->fd, (struct sockaddr *) &sa, &sa_len);
645 if (ret < 0) {
646 perror("accept");
647 return ret;
648 }
649
Holger Hans Peter Freyther5fa42dd2010-04-12 12:17:09 +0200650 /* count the reconnect */
651 counter_inc(nat->stats.bsc.reconn);
652
Holger Hans Peter Freyther3399df32010-03-29 08:04:09 +0200653 /*
654 * if we are not connected to a msc... just close the socket
655 */
656 if (!msc_con->is_connected) {
657 LOGP(DNAT, LOGL_NOTICE, "Disconnecting BSC due lack of MSC connection.\n");
Holger Hans Peter Freythera7466972010-04-06 12:42:35 +0200658 close(ret);
Holger Hans Peter Freyther3399df32010-03-29 08:04:09 +0200659 return 0;
660 }
661
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +0100662 /* todo... do something with the connection */
Holger Hans Peter Freyther738dbdf2010-01-12 21:35:32 +0100663 /* todo... use GNUtls to see if we want to trust this as a BTS */
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +0100664
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100665 /*
666 *
667 */
Holger Hans Peter Freyther090a4d82010-06-15 18:48:01 +0800668 bsc = bsc_connection_alloc(nat);
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100669 if (!bsc) {
Holger Hans Peter Freyther8f99b822010-01-29 05:58:43 +0100670 LOGP(DNAT, LOGL_ERROR, "Failed to allocate BSC struct.\n");
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100671 close(ret);
672 return -1;
673 }
674
Holger Hans Peter Freyther84010542010-06-15 18:47:10 +0800675 bsc->write_queue.bfd.data = bsc;
676 bsc->write_queue.bfd.fd = ret;
677 bsc->write_queue.read_cb = ipaccess_bsc_read_cb;
Holger Hans Peter Freyther2ec55172010-03-26 09:18:02 +0100678 bsc->write_queue.write_cb = ipaccess_bsc_write_cb;
Holger Hans Peter Freyther84010542010-06-15 18:47:10 +0800679 bsc->write_queue.bfd.when = BSC_FD_READ;
680 if (bsc_register_fd(&bsc->write_queue.bfd) < 0) {
Holger Hans Peter Freyther8f99b822010-01-29 05:58:43 +0100681 LOGP(DNAT, LOGL_ERROR, "Failed to register BSC fd.\n");
Holger Hans Peter Freyther4a629602010-01-13 09:28:12 +0100682 close(ret);
683 talloc_free(bsc);
684 return -2;
685 }
686
Holger Hans Peter Freytherc12e1932010-04-05 17:58:52 +0200687 LOGP(DNAT, LOGL_NOTICE, "Registered new BSC\n");
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +0800688 llist_add(&bsc->list_entry, &nat->bsc_connections);
Holger Hans Peter Freyther809d6fa2010-03-26 07:41:54 +0100689 send_id_ack(bsc);
690 send_id_req(bsc);
Holger Hans Peter Freyther8c61cdb2010-03-31 07:30:58 +0200691 send_mgcp_reset(bsc);
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +0800692
693 /*
694 * start the hangup timer
695 */
696 bsc->id_timeout.data = bsc;
697 bsc->id_timeout.cb = ipaccess_close_bsc;
698 bsc_schedule_timer(&bsc->id_timeout, 2, 0);
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +0100699 return 0;
700}
701
702static int listen_for_bsc(struct bsc_fd *bfd, struct in_addr *in_addr, int port)
703{
704 struct sockaddr_in addr;
705 int ret, on = 1;
706
707 bfd->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
708 bfd->cb = ipaccess_listen_bsc_cb;
709 bfd->when = BSC_FD_READ;
710
711 memset(&addr, 0, sizeof(addr));
712 addr.sin_family = AF_INET;
713 addr.sin_port = htons(port);
714 addr.sin_addr.s_addr = in_addr->s_addr;
715
716 setsockopt(bfd->fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
717
718 ret = bind(bfd->fd, (struct sockaddr *) &addr, sizeof(addr));
719 if (ret < 0) {
720 fprintf(stderr, "Could not bind the BSC socket %s\n",
721 strerror(errno));
722 return -EIO;
723 }
724
725 ret = listen(bfd->fd, 1);
726 if (ret < 0) {
727 perror("listen");
728 return ret;
729 }
730
731 ret = bsc_register_fd(bfd);
732 if (ret < 0) {
733 perror("register_listen_fd");
734 return ret;
735 }
736 return 0;
737}
738
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +0800739static void print_usage()
740{
741 printf("Usage: bsc_nat\n");
742}
743
744static void print_help()
745{
746 printf(" Some useful help...\n");
747 printf(" -h --help this text\n");
748 printf(" -d option --debug=DRLL:DCC:DMM:DRR:DRSL:DNM enable debugging\n");
749 printf(" -s --disable-color\n");
750 printf(" -c --config-file filename The config file to use.\n");
751 printf(" -m --msc=IP. The address of the MSC.\n");
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +0100752 printf(" -l --local=IP. The local address of this BSC.\n");
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +0800753}
754
755static void handle_options(int argc, char** argv)
756{
757 while (1) {
758 int option_index = 0, c;
759 static struct option long_options[] = {
760 {"help", 0, 0, 'h'},
761 {"debug", 1, 0, 'd'},
762 {"config-file", 1, 0, 'c'},
763 {"disable-color", 0, 0, 's'},
764 {"timestamp", 0, 0, 'T'},
765 {"msc", 1, 0, 'm'},
766 {"local", 1, 0, 'l'},
767 {0, 0, 0, 0}
768 };
769
770 c = getopt_long(argc, argv, "hd:sTPc:m:l:",
771 long_options, &option_index);
772 if (c == -1)
773 break;
774
775 switch (c) {
776 case 'h':
777 print_usage();
778 print_help();
779 exit(0);
780 case 's':
Holger Hans Peter Freyther4acca1a2010-06-15 19:14:12 +0800781 log_set_use_color(stderr_target, 0);
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +0800782 break;
783 case 'd':
Holger Hans Peter Freyther4acca1a2010-06-15 19:14:12 +0800784 log_parse_category_mask(stderr_target, optarg);
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +0800785 break;
786 case 'c':
787 config_file = strdup(optarg);
788 break;
789 case 'T':
Holger Hans Peter Freyther4acca1a2010-06-15 19:14:12 +0800790 log_set_print_timestamp(stderr_target, 1);
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +0800791 break;
792 case 'm':
Holger Hans Peter Freyther9226d702010-06-15 18:51:04 +0800793 msc_ip = optarg;
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +0800794 break;
795 case 'l':
796 inet_aton(optarg, &local_addr);
797 break;
798 default:
799 /* ignore */
800 break;
801 }
802 }
803}
804
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100805static void signal_handler(int signal)
806{
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100807 switch (signal) {
808 case SIGABRT:
809 /* in case of abort, we want to obtain a talloc report
810 * and then return to the caller, who will abort the process */
811 case SIGUSR1:
812 talloc_report_full(tall_bsc_ctx, stderr);
813 break;
814 default:
815 break;
816 }
817}
818
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +0800819int main(int argc, char** argv)
820{
Holger Hans Peter Freyther09371382010-06-15 18:51:18 +0800821 tall_bsc_ctx = talloc_named_const(NULL, 1, "nat");
822
Holger Hans Peter Freyther4acca1a2010-06-15 19:14:12 +0800823 log_init(&log_info);
824 stderr_target = log_target_create_stderr();
825 log_add_target(stderr_target);
826 log_set_all_filter(stderr_target, 1);
Holger Hans Peter Freyther3b960892010-06-15 19:06:18 +0800827
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +0800828 nat = bsc_nat_alloc();
829 if (!nat) {
830 fprintf(stderr, "Failed to allocate the BSC nat.\n");
831 return -4;
832 }
833
Holger Hans Peter Freyther3660e4d2010-06-15 18:50:26 +0800834 nat->mgcp_cfg = talloc_zero(nat, struct mgcp_config);
Holger Hans Peter Freyther9226d702010-06-15 18:51:04 +0800835 if (!nat->mgcp_cfg) {
836 fprintf(stderr, "Failed to allocate MGCP cfg.\n");
837 return -5;
838 }
839
840 /* parse options */
841 local_addr.s_addr = INADDR_ANY;
842 handle_options(argc, argv);
Holger Hans Peter Freyther3660e4d2010-06-15 18:50:26 +0800843
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +0800844 /* init vty and parse */
845 bsc_nat_vty_init(nat);
846 telnet_init(NULL, 4244);
Holger Hans Peter Freyther3660e4d2010-06-15 18:50:26 +0800847 if (mgcp_parse_config(config_file, nat->mgcp_cfg) < 0) {
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +0800848 fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
849 return -3;
850 }
851
Holger Hans Peter Freyther9226d702010-06-15 18:51:04 +0800852 /* over rule the VTY config */
853 if (msc_ip)
854 bsc_nat_set_msc_ip(nat, msc_ip);
855
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +0800856 /* seed the PRNG */
857 srand(time(NULL));
858
Holger Hans Peter Freyther3468be32010-03-31 13:02:22 +0200859 /*
860 * Setup the MGCP code..
861 */
Holger Hans Peter Freyther36330952010-04-22 12:08:17 +0800862 if (bsc_mgcp_nat_init(nat) != 0)
Holger Hans Peter Freyther3468be32010-03-31 13:02:22 +0200863 return -4;
864
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +0100865 /* connect to the MSC */
Holger Hans Peter Freytherbace2022010-04-17 07:48:45 +0200866 msc_con = bsc_msc_create(nat->msc_ip, nat->msc_port);
Holger Hans Peter Freyther4a860a02010-06-15 18:47:29 +0800867 if (!msc_con) {
868 fprintf(stderr, "Creating a bsc_msc_connection failed.\n");
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100869 exit(1);
870 }
871
Holger Hans Peter Freyther4a860a02010-06-15 18:47:29 +0800872 msc_con->connection_loss = msc_connection_was_lost;
873 msc_con->write_queue.read_cb = ipaccess_msc_read_cb;
874 msc_con->write_queue.write_cb = ipaccess_msc_write_cb;;
875 bsc_msc_connect(msc_con);
876
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +0100877 /* wait for the BSC */
Holger Hans Peter Freytherbea0ac62010-03-26 06:51:04 +0100878 if (listen_for_bsc(&bsc_listen, &local_addr, 5000) < 0) {
Holger Hans Peter Freythere8fa0f12010-01-12 21:34:54 +0100879 fprintf(stderr, "Failed to listen for BSC.\n");
880 exit(1);
881 }
882
Holger Hans Peter Freythere907cb22010-01-12 21:15:08 +0100883 signal(SIGABRT, &signal_handler);
884 signal(SIGUSR1, &signal_handler);
885 signal(SIGPIPE, SIG_IGN);
886
887 while (1) {
888 bsc_select_main(0);
889 }
890
Holger Hans Peter Freyther89d9fd92010-06-15 18:44:42 +0800891 return 0;
892}