blob: 750975fdb5ce9f4c86911a25b980c1a5dfbe61d2 [file] [log] [blame]
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +08001/*
2 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * (C) 2010 by On-Waves
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 */
21
22#include <openbsc/bsc_nat.h>
Holger Hans Peter Freytherc2b31ed2010-07-31 05:17:17 +080023#include <openbsc/bsc_nat_sccp.h>
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080024#include <openbsc/gsm_data.h>
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080025#include <openbsc/debug.h>
Holger Hans Peter Freyther19c530c2010-10-13 23:52:01 +020026#include <openbsc/ipaccess.h>
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +020027#include <openbsc/mgcp.h>
28#include <openbsc/mgcp_internal.h>
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080029
Harald Welted5db12c2010-08-03 15:11:51 +020030#include <osmocom/sccp/sccp.h>
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +080031
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +020032#include <osmocore/talloc.h>
Holger Hans Peter Freyther13959482010-06-15 18:50:57 +080033#include <osmocore/gsm0808.h>
Holger Hans Peter Freyther69d801e2010-06-15 20:13:33 +080034#include <osmocore/protocol/gsm_08_08.h>
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +020035
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080036#include <netinet/in.h>
37#include <arpa/inet.h>
38
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +020039#include <errno.h>
40#include <unistd.h>
41
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +080042static int bsc_assign_endpoint(struct bsc_connection *bsc, struct sccp_connections *con)
43{
44 const int number_endpoints = ARRAY_SIZE(bsc->endpoint_status);
45 int i;
46
47 for (i = 1; i < number_endpoints; ++i) {
48 int endpoint = (bsc->last_endpoint + i) % number_endpoints;
49 if (endpoint == 0)
50 endpoint = 1;
51
52 if (bsc->endpoint_status[endpoint] == 0) {
53 bsc->endpoint_status[endpoint] = 1;
54 con->bsc_endp = endpoint;
55 bsc->last_endpoint = endpoint;
56 return 0;
57 }
58 }
59
60 return -1;
61}
62
63static uint16_t create_cic(int endpoint)
64{
65 int timeslot, multiplex;
66
67 mgcp_endpoint_to_timeslot(endpoint, &multiplex, &timeslot);
68 return (multiplex << 5) | (timeslot & 0x1f);
69}
70
71int bsc_mgcp_assign_patch(struct sccp_connections *con, struct msgb *msg)
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080072{
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +080073 struct sccp_connections *mcon;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080074 struct tlv_parsed tp;
Holger Hans Peter Freythere2c15202010-07-23 19:09:21 +080075 uint16_t cic;
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +080076 uint8_t timeslot;
77 uint8_t multiplex;
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +080078 int endp;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080079
80 if (!msg->l3h) {
81 LOGP(DNAT, LOGL_ERROR, "Assignment message should have l3h pointer.\n");
82 return -1;
83 }
84
85 if (msgb_l3len(msg) < 3) {
86 LOGP(DNAT, LOGL_ERROR, "Assignment message has not enough space for GSM0808.\n");
87 return -1;
88 }
89
90 tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l3h + 3, msgb_l3len(msg) - 3, 0, 0);
91 if (!TLVP_PRESENT(&tp, GSM0808_IE_CIRCUIT_IDENTITY_CODE)) {
92 LOGP(DNAT, LOGL_ERROR, "Circuit identity code not found in assignment message.\n");
93 return -1;
94 }
95
Holger Hans Peter Freythere2c15202010-07-23 19:09:21 +080096 cic = ntohs(*(uint16_t *)TLVP_VAL(&tp, GSM0808_IE_CIRCUIT_IDENTITY_CODE));
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080097 timeslot = cic & 0x1f;
98 multiplex = (cic & ~0x1f) >> 5;
99
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800100
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800101 endp = mgcp_timeslot_to_endpoint(multiplex, timeslot);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800102
103 /* find stale connections using that endpoint */
104 llist_for_each_entry(mcon, &con->bsc->nat->sccp_connections, list_entry) {
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800105 if (mcon->msc_endp == endp) {
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800106 LOGP(DNAT, LOGL_ERROR,
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800107 "Endpoint %d was assigned to 0x%x and now 0x%x\n",
108 endp,
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800109 sccp_src_ref_to_int(&mcon->patched_ref),
110 sccp_src_ref_to_int(&con->patched_ref));
111 bsc_mgcp_dlcx(mcon);
112 }
113 }
114
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800115 con->msc_endp = endp;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800116 if (bsc_assign_endpoint(con->bsc, con) != 0)
117 return -1;
118
119 /*
120 * now patch the message for the new CIC...
121 * still assumed to be one multiplex only
122 */
123 cic = htons(create_cic(con->bsc_endp));
124 memcpy((uint8_t *) TLVP_VAL(&tp, GSM0808_IE_CIRCUIT_IDENTITY_CODE),
125 &cic, sizeof(cic));
126
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800127 return 0;
128}
129
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800130static void bsc_mgcp_free_endpoint(struct bsc_nat *nat, int i)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200131{
132 if (nat->bsc_endpoints[i].transaction_id) {
133 talloc_free(nat->bsc_endpoints[i].transaction_id);
134 nat->bsc_endpoints[i].transaction_id = NULL;
135 }
136
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800137 nat->bsc_endpoints[i].transaction_state = 0;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200138 nat->bsc_endpoints[i].bsc = NULL;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200139}
140
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200141void bsc_mgcp_free_endpoints(struct bsc_nat *nat)
142{
143 int i;
144
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800145 for (i = 1; i < nat->mgcp_cfg->number_endpoints; ++i){
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200146 bsc_mgcp_free_endpoint(nat, i);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800147 mgcp_free_endp(&nat->mgcp_cfg->endpoints[i]);
148 }
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200149}
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200150
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800151/* send a MDCX where we do not want a response */
Holger Hans Peter Freyther601180f2010-08-29 23:40:33 +0800152static void bsc_mgcp_send_mdcx(struct bsc_connection *bsc, int port, struct mgcp_endpoint *endp)
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800153{
154 char buf[2096];
155 int len;
156
157 len = snprintf(buf, sizeof(buf),
Holger Hans Peter Freytherf42f45b2010-04-22 13:06:24 +0800158 "MDCX 23 %x@mgw MGCP 1.0\r\n"
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800159 "Z: noanswer\r\n"
160 "\r\n"
161 "c=IN IP4 %s\r\n"
162 "m=audio %d RTP/AVP 255\r\n",
Holger Hans Peter Freyther601180f2010-08-29 23:40:33 +0800163 port,
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800164 bsc->nat->mgcp_cfg->source_addr,
Holger Hans Peter Freyther58ff2192010-08-05 03:08:35 +0800165 endp->bts_end.local_port);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800166 if (len < 0) {
167 LOGP(DMGCP, LOGL_ERROR, "snprintf for DLCX failed.\n");
168 return;
169 }
Holger Hans Peter Freytherd38aa452010-08-30 11:58:49 +0800170
171 #warning "The MDCX is not send to the BSC. It should"
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800172}
173
174static void bsc_mgcp_send_dlcx(struct bsc_connection *bsc, int endpoint)
175{
176 char buf[2096];
177 int len;
178
179 len = snprintf(buf, sizeof(buf),
Holger Hans Peter Freytherbf812fa2010-08-30 12:01:36 +0800180 "DLCX 26 %x@mgw MGCP 1.0\r\n"
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800181 "Z: noanswer\r\n", endpoint);
182 if (len < 0) {
183 LOGP(DMGCP, LOGL_ERROR, "snprintf for DLCX failed.\n");
184 return;
185 }
186
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800187 bsc_write_mgcp(bsc, (uint8_t *) buf, len);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800188}
189
190void bsc_mgcp_init(struct sccp_connections *con)
191{
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800192 con->msc_endp = -1;
193 con->bsc_endp = -1;
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800194}
195
196void bsc_mgcp_dlcx(struct sccp_connections *con)
197{
198 /* send a DLCX down the stream */
Holger Hans Peter Freyther39cd32e2010-08-28 18:11:07 +0800199 if (con->bsc_endp != -1) {
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800200 if (con->bsc->endpoint_status[con->bsc_endp] != 1)
201 LOGP(DNAT, LOGL_ERROR, "Endpoint 0x%x was not in use\n", con->bsc_endp);
202 con->bsc->endpoint_status[con->bsc_endp] = 0;
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800203 bsc_mgcp_send_dlcx(con->bsc, con->bsc_endp);
204 bsc_mgcp_free_endpoint(con->bsc->nat, con->msc_endp);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800205 }
206
207 bsc_mgcp_init(con);
208}
209
210
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800211struct sccp_connections *bsc_mgcp_find_con(struct bsc_nat *nat, int endpoint)
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200212{
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800213 struct sccp_connections *con = NULL;
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200214 struct sccp_connections *sccp;
215
216 llist_for_each_entry(sccp, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800217 if (sccp->msc_endp == -1)
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200218 continue;
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800219 if (sccp->msc_endp != endpoint)
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200220 continue;
221
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800222 con = sccp;
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200223 }
224
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800225 if (con)
226 return con;
Holger Hans Peter Freythereb52e892010-04-18 02:14:45 +0800227
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200228 LOGP(DMGCP, LOGL_ERROR, "Failed to find the connection.\n");
229 return NULL;
230}
231
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200232int bsc_mgcp_policy_cb(struct mgcp_config *cfg, int endpoint, int state, const char *transaction_id)
233{
234 struct bsc_nat *nat;
235 struct bsc_endpoint *bsc_endp;
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800236 struct sccp_connections *sccp;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200237 struct mgcp_endpoint *mgcp_endp;
238 struct msgb *bsc_msg;
239
240 nat = cfg->data;
241 bsc_endp = &nat->bsc_endpoints[endpoint];
242 mgcp_endp = &nat->mgcp_cfg->endpoints[endpoint];
243
Holger Hans Peter Freytherfef76122010-04-24 21:05:18 +0800244 if (bsc_endp->transaction_id) {
245 LOGP(DMGCP, LOGL_ERROR, "Endpoint 0x%x had pending transaction: '%s'\n",
246 endpoint, bsc_endp->transaction_id);
247 talloc_free(bsc_endp->transaction_id);
248 bsc_endp->transaction_id = NULL;
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800249 bsc_endp->transaction_state = 0;
Holger Hans Peter Freytherfef76122010-04-24 21:05:18 +0800250 }
251 bsc_endp->bsc = NULL;
252
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800253 sccp = bsc_mgcp_find_con(nat, endpoint);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200254
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800255 if (!sccp) {
Holger Hans Peter Freyther3d194d92010-04-24 21:02:01 +0800256 LOGP(DMGCP, LOGL_ERROR, "Did not find BSC for change on endpoint: 0x%x state: %d\n", endpoint, state);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200257
258 switch (state) {
259 case MGCP_ENDP_CRCX:
260 return MGCP_POLICY_REJECT;
261 break;
262 case MGCP_ENDP_DLCX:
263 return MGCP_POLICY_CONT;
264 break;
265 case MGCP_ENDP_MDCX:
266 return MGCP_POLICY_CONT;
267 break;
268 default:
269 LOGP(DMGCP, LOGL_FATAL, "Unhandled state: %d\n", state);
270 return MGCP_POLICY_CONT;
271 break;
272 }
273 }
274
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200275 /* we need to generate a new and patched message */
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800276 bsc_msg = bsc_mgcp_rewrite((char *) nat->mgcp_msg, nat->mgcp_length, sccp->bsc_endp,
Holger Hans Peter Freyther58ff2192010-08-05 03:08:35 +0800277 nat->mgcp_cfg->source_addr, mgcp_endp->bts_end.local_port);
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200278 if (!bsc_msg) {
279 LOGP(DMGCP, LOGL_ERROR, "Failed to patch the msg.\n");
280 return MGCP_POLICY_CONT;
281 }
282
283
Holger Hans Peter Freytherb3e0a032010-04-04 18:11:49 +0200284 bsc_endp->transaction_id = talloc_strdup(nat, transaction_id);
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800285 bsc_endp->transaction_state = state;
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800286 bsc_endp->bsc = sccp->bsc;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200287
288 /* we need to update some bits */
289 if (state == MGCP_ENDP_CRCX) {
290 struct sockaddr_in sock;
291 socklen_t len = sizeof(sock);
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800292 if (getpeername(sccp->bsc->write_queue.bfd.fd, (struct sockaddr *) &sock, &len) != 0) {
Holger Hans Peter Freyther92febd32010-04-06 11:17:07 +0200293 LOGP(DMGCP, LOGL_ERROR, "Can not get the peername...%d/%s\n",
294 errno, strerror(errno));
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200295 } else {
Holger Hans Peter Freythera17d7012010-08-05 01:34:51 +0800296 mgcp_endp->bts_end.addr = sock.sin_addr;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200297 }
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200298
Holger Hans Peter Freythere66cac32010-08-05 01:50:44 +0800299 /* send the message and a fake MDCX to force sending of a dummy packet */
Holger Hans Peter Freyther19c530c2010-10-13 23:52:01 +0200300 bsc_write(sccp->bsc, bsc_msg, IPAC_PROTO_MGCP);
Holger Hans Peter Freyther601180f2010-08-29 23:40:33 +0800301 bsc_mgcp_send_mdcx(sccp->bsc, sccp->bsc_endp, mgcp_endp);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800302 return MGCP_POLICY_DEFER;
303 } else if (state == MGCP_ENDP_DLCX) {
304 /* we will free the endpoint now and send a DLCX to the BSC */
Holger Hans Peter Freyther3a347f02010-05-01 10:31:53 +0800305 msgb_free(bsc_msg);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800306 bsc_mgcp_dlcx(sccp);
307 return MGCP_POLICY_CONT;
308 } else {
Holger Hans Peter Freyther19c530c2010-10-13 23:52:01 +0200309 bsc_write(sccp->bsc, bsc_msg, IPAC_PROTO_MGCP);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800310 return MGCP_POLICY_DEFER;
311 }
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200312}
313
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200314/*
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800315 * We do have a failure, free data downstream..
316 */
317static void free_chan_downstream(struct mgcp_endpoint *endp, struct bsc_endpoint *bsc_endp,
318 struct bsc_connection *bsc)
319{
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800320 LOGP(DMGCP, LOGL_ERROR, "No CI, freeing endpoint 0x%x in state %d\n",
321 ENDPOINT_NUMBER(endp), bsc_endp->transaction_state);
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800322
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800323 /* if a CRCX failed... send a DLCX down the stream */
324 if (bsc_endp->transaction_state == MGCP_ENDP_CRCX) {
325 struct sccp_connections *con;
326 con = bsc_mgcp_find_con(bsc->nat, ENDPOINT_NUMBER(endp));
327 if (!con) {
328 LOGP(DMGCP, LOGL_ERROR,
329 "No SCCP connection for endp 0x%x\n",
330 ENDPOINT_NUMBER(endp));
331 } else {
332 if (con->bsc == bsc) {
Holger Hans Peter Freyther8574dcf2010-08-29 22:39:07 +0800333 bsc_mgcp_send_dlcx(bsc, con->bsc_endp);
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800334 } else {
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800335 LOGP(DMGCP, LOGL_ERROR,
336 "Endpoint belongs to a different BSC\n");
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800337 }
338 }
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800339 }
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800340
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800341 bsc_mgcp_free_endpoint(bsc->nat, ENDPOINT_NUMBER(endp));
342 mgcp_free_endp(endp);
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800343}
344
345/*
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200346 * We have received a msg from the BSC. We will see if we know
347 * this transaction and if it belongs to the BSC. Then we will
348 * need to patch the content to point to the local network and we
349 * need to update the I: that was assigned by the BSS.
350 */
351void bsc_mgcp_forward(struct bsc_connection *bsc, struct msgb *msg)
352{
353 struct msgb *output;
354 struct bsc_endpoint *bsc_endp = NULL;
355 struct mgcp_endpoint *endp = NULL;
Holger Hans Peter Freytherd2dd6e82010-04-06 11:06:11 +0200356 int i, code;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200357 char transaction_id[60];
358
359 /* Some assumption that our buffer is big enough.. and null terminate */
360 if (msgb_l2len(msg) > 2000) {
361 LOGP(DMGCP, LOGL_ERROR, "MGCP message too long.\n");
362 return;
363 }
364
365 msg->l2h[msgb_l2len(msg)] = '\0';
366
367 if (bsc_mgcp_parse_response((const char *) msg->l2h, &code, transaction_id) != 0) {
368 LOGP(DMGCP, LOGL_ERROR, "Failed to parse response code.\n");
369 return;
370 }
371
372 for (i = 1; i < bsc->nat->mgcp_cfg->number_endpoints; ++i) {
373 if (bsc->nat->bsc_endpoints[i].bsc != bsc)
374 continue;
Holger Hans Peter Freyther3f7c7d02010-04-05 18:00:05 +0200375 /* no one listening? a bug? */
376 if (!bsc->nat->bsc_endpoints[i].transaction_id)
377 continue;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200378 if (strcmp(transaction_id, bsc->nat->bsc_endpoints[i].transaction_id) != 0)
379 continue;
380
381 endp = &bsc->nat->mgcp_cfg->endpoints[i];
382 bsc_endp = &bsc->nat->bsc_endpoints[i];
383 break;
384 }
385
386 if (!bsc_endp) {
Holger Hans Peter Freytherb9ac37d2010-04-05 17:58:52 +0200387 LOGP(DMGCP, LOGL_ERROR, "Could not find active endpoint: %s for msg: '%s'\n",
388 transaction_id, (const char *) msg->l2h);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200389 return;
390 }
391
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800392 endp->ci = bsc_mgcp_extract_ci((const char *) msg->l2h);
Holger Hans Peter Freytherb84b5f62010-08-06 08:34:46 +0800393 if (endp->ci == CI_UNUSED) {
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800394 free_chan_downstream(endp, bsc_endp, bsc);
Holger Hans Peter Freytherb84b5f62010-08-06 08:34:46 +0800395 return;
396 }
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200397
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200398 /* free some stuff */
399 talloc_free(bsc_endp->transaction_id);
400 bsc_endp->transaction_id = NULL;
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800401 bsc_endp->transaction_state = 0;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200402
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200403 /*
404 * rewrite the information. In case the endpoint was deleted
405 * there should be nothing for us to rewrite so putting endp->rtp_port
406 * with the value of 0 should be no problem.
407 */
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800408 output = bsc_mgcp_rewrite((char * ) msg->l2h, msgb_l2len(msg), -1,
Holger Hans Peter Freyther58ff2192010-08-05 03:08:35 +0800409 bsc->nat->mgcp_cfg->source_addr, endp->net_end.local_port);
Holger Hans Peter Freyther5cc94fb2010-04-05 22:56:49 +0200410
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200411 if (!output) {
412 LOGP(DMGCP, LOGL_ERROR, "Failed to rewrite MGCP msg.\n");
413 return;
414 }
415
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800416 if (write_queue_enqueue(&bsc->nat->mgcp_cfg->gw_fd, output) != 0) {
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200417 LOGP(DMGCP, LOGL_ERROR, "Failed to queue MGCP msg.\n");
418 msgb_free(output);
419 }
420}
421
422int bsc_mgcp_parse_response(const char *str, int *code, char transaction[60])
423{
424 /* we want to parse two strings */
425 return sscanf(str, "%3d %59s\n", code, transaction) != 2;
426}
427
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800428uint32_t bsc_mgcp_extract_ci(const char *str)
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200429{
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800430 unsigned int ci;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200431 char *res = strstr(str, "I: ");
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800432 if (!res) {
433 LOGP(DMGCP, LOGL_ERROR, "No CI in msg '%s'\n", str);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200434 return CI_UNUSED;
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800435 }
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200436
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800437 if (sscanf(res, "I: %u", &ci) != 1) {
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800438 LOGP(DMGCP, LOGL_ERROR, "Failed to parse CI in msg '%s'\n", str);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200439 return CI_UNUSED;
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800440 }
441
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200442 return ci;
443}
444
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800445static void patch_mgcp(struct msgb *output, const char *op, const char *tok,
446 int endp, int len, int cr)
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200447{
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800448 int slen;
449 int ret;
450 char buf[40];
451
452 buf[0] = buf[39] = '\0';
453 ret = sscanf(tok, "%*s %s", buf);
454
455 slen = sprintf((char *) output->l3h, "%s %s %x@mgw MGCP 1.0%s",
456 op, buf, endp, cr ? "\r\n" : "\n");
457 output->l3h = msgb_put(output, slen);
458}
459
460/* we need to replace some strings... */
461struct msgb *bsc_mgcp_rewrite(char *input, int length, int endpoint, const char *ip, int port)
462{
463 static const char *crcx_str = "CRCX ";
464 static const char *dlcx_str = "DLCX ";
465 static const char *mdcx_str = "MDCX ";
466
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200467 static const char *ip_str = "c=IN IP4 ";
468 static const char *aud_str = "m=audio ";
469
470 char buf[128];
471 char *running, *token;
472 struct msgb *output;
473
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200474 if (length > 4096 - 128) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200475 LOGP(DMGCP, LOGL_ERROR, "Input is too long.\n");
476 return NULL;
477 }
478
479 output = msgb_alloc_headroom(4096, 128, "MGCP rewritten");
480 if (!output) {
481 LOGP(DMGCP, LOGL_ERROR, "Failed to allocate new MGCP msg.\n");
482 return NULL;
483 }
484
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200485 running = input;
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200486 output->l2h = output->data;
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800487 output->l3h = output->l2h;
Holger Hans Peter Freyther9e5300a2010-04-04 19:34:44 +0200488 for (token = strsep(&running, "\n"); running; token = strsep(&running, "\n")) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200489 int len = strlen(token);
Holger Hans Peter Freyther9e5300a2010-04-04 19:34:44 +0200490 int cr = len > 0 && token[len - 1] == '\r';
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200491
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800492 if (strncmp(crcx_str, token, (sizeof crcx_str) - 1) == 0) {
493 patch_mgcp(output, "CRCX", token, endpoint, len, cr);
494 } else if (strncmp(dlcx_str, token, (sizeof dlcx_str) - 1) == 0) {
495 patch_mgcp(output, "DLCX", token, endpoint, len, cr);
496 } else if (strncmp(mdcx_str, token, (sizeof mdcx_str) - 1) == 0) {
497 patch_mgcp(output, "MDCX", token, endpoint, len, cr);
498 } else if (strncmp(ip_str, token, (sizeof ip_str) - 1) == 0) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200499 output->l3h = msgb_put(output, strlen(ip_str));
500 memcpy(output->l3h, ip_str, strlen(ip_str));
501 output->l3h = msgb_put(output, strlen(ip));
502 memcpy(output->l3h, ip, strlen(ip));
Holger Hans Peter Freyther9e5300a2010-04-04 19:34:44 +0200503
504 if (cr) {
505 output->l3h = msgb_put(output, 2);
506 output->l3h[0] = '\r';
507 output->l3h[1] = '\n';
508 } else {
509 output->l3h = msgb_put(output, 1);
510 output->l3h[0] = '\n';
511 }
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200512 } else if (strncmp(aud_str, token, (sizeof aud_str) - 1) == 0) {
513 int payload;
514 if (sscanf(token, "m=audio %*d RTP/AVP %d", &payload) != 1) {
515 LOGP(DMGCP, LOGL_ERROR, "Could not parsed audio line.\n");
516 msgb_free(output);
517 return NULL;
518 }
519
Holger Hans Peter Freyther9e5300a2010-04-04 19:34:44 +0200520 snprintf(buf, sizeof(buf)-1, "m=audio %d RTP/AVP %d%s",
521 port, payload, cr ? "\r\n" : "\n");
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200522 buf[sizeof(buf)-1] = '\0';
523
524 output->l3h = msgb_put(output, strlen(buf));
525 memcpy(output->l3h, buf, strlen(buf));
526 } else {
527 output->l3h = msgb_put(output, len + 1);
528 memcpy(output->l3h, token, len);
529 output->l3h[len] = '\n';
530 }
531 }
532
533 return output;
534}
535
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200536static int mgcp_do_read(struct bsc_fd *fd)
537{
538 struct bsc_nat *nat;
539 struct msgb *msg, *resp;
540 int rc;
541
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200542 nat = fd->data;
543
544 rc = read(fd->fd, nat->mgcp_msg, sizeof(nat->mgcp_msg) - 1);
545 if (rc <= 0) {
546 LOGP(DMGCP, LOGL_ERROR, "Failed to read errno: %d\n", errno);
547 return -1;
548 }
549
550 nat->mgcp_msg[rc] = '\0';
551 nat->mgcp_length = rc;
552
553 msg = msgb_alloc(sizeof(nat->mgcp_msg), "MGCP GW Read");
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200554 if (!msg) {
555 LOGP(DMGCP, LOGL_ERROR, "Failed to create buffer.\n");
556 return -1;
557 }
558
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200559 msg->l2h = msgb_put(msg, rc);
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200560 memcpy(msg->l2h, nat->mgcp_msg, msgb_l2len(msg));
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200561 resp = mgcp_handle_message(nat->mgcp_cfg, msg);
562 msgb_free(msg);
563
564 /* we do have a direct answer... e.g. AUEP */
565 if (resp) {
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800566 if (write_queue_enqueue(&nat->mgcp_cfg->gw_fd, resp) != 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200567 LOGP(DMGCP, LOGL_ERROR, "Failed to enqueue msg.\n");
568 msgb_free(resp);
569 }
570 }
571
572 return 0;
573}
574
575static int mgcp_do_write(struct bsc_fd *bfd, struct msgb *msg)
576{
577 int rc;
578
579 rc = write(bfd->fd, msg->data, msg->len);
580
581 if (rc != msg->len) {
582 LOGP(DMGCP, LOGL_ERROR, "Failed to write msg to MGCP CallAgent.\n");
583 return -1;
584 }
585
586 return rc;
587}
588
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800589int bsc_mgcp_nat_init(struct bsc_nat *nat)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200590{
591 int on;
592 struct sockaddr_in addr;
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800593 struct mgcp_config *cfg = nat->mgcp_cfg;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200594
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800595 if (!cfg->call_agent_addr) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200596 LOGP(DMGCP, LOGL_ERROR, "The BSC nat requires the call agent ip to be set.\n");
597 return -1;
598 }
599
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800600 if (cfg->bts_ip) {
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200601 LOGP(DMGCP, LOGL_ERROR, "Do not set the BTS ip for the nat.\n");
602 return -1;
603 }
604
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800605 cfg->gw_fd.bfd.fd = socket(AF_INET, SOCK_DGRAM, 0);
606 if (cfg->gw_fd.bfd.fd < 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200607 LOGP(DMGCP, LOGL_ERROR, "Failed to create MGCP socket. errno: %d\n", errno);
608 return -1;
609 }
610
611 on = 1;
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800612 setsockopt(cfg->gw_fd.bfd.fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200613
614 addr.sin_family = AF_INET;
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800615 addr.sin_port = htons(cfg->source_port);
616 inet_aton(cfg->source_addr, &addr.sin_addr);
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200617
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800618 if (bind(cfg->gw_fd.bfd.fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200619 LOGP(DMGCP, LOGL_ERROR, "Failed to bind. errno: %d\n", errno);
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800620 close(cfg->gw_fd.bfd.fd);
621 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200622 return -1;
623 }
624
625 addr.sin_port = htons(2727);
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800626 inet_aton(cfg->call_agent_addr, &addr.sin_addr);
627 if (connect(cfg->gw_fd.bfd.fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200628 LOGP(DMGCP, LOGL_ERROR, "Failed to connect to: '%s'. errno: %d\n",
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800629 cfg->call_agent_addr, errno);
630 close(cfg->gw_fd.bfd.fd);
631 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200632 return -1;
633 }
634
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800635 write_queue_init(&cfg->gw_fd, 10);
636 cfg->gw_fd.bfd.when = BSC_FD_READ;
637 cfg->gw_fd.bfd.data = nat;
638 cfg->gw_fd.read_cb = mgcp_do_read;
639 cfg->gw_fd.write_cb = mgcp_do_write;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200640
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800641 if (bsc_register_fd(&cfg->gw_fd.bfd) != 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200642 LOGP(DMGCP, LOGL_ERROR, "Failed to register MGCP fd.\n");
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800643 close(cfg->gw_fd.bfd.fd);
644 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200645 return -1;
646 }
647
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200648 /* some more MGCP config handling */
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800649 cfg->data = nat;
650 cfg->policy_cb = bsc_mgcp_policy_cb;
651 cfg->force_realloc = 1;
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +0000652
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800653 if (cfg->bts_ip)
654 talloc_free(cfg->bts_ip);
655 cfg->bts_ip = "";
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +0000656
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200657 nat->bsc_endpoints = talloc_zero_array(nat,
658 struct bsc_endpoint,
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800659 cfg->number_endpoints + 1);
Holger Hans Peter Freyther3c792142010-09-19 04:34:04 +0800660 if (!nat->bsc_endpoints) {
661 LOGP(DMGCP, LOGL_ERROR, "Failed to allocate nat endpoints\n");
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800662 close(cfg->gw_fd.bfd.fd);
663 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freyther3c792142010-09-19 04:34:04 +0800664 return -1;
665 }
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200666
Holger Hans Peter Freytherf2eedff2010-09-19 04:36:07 +0800667 if (mgcp_reset_transcoder(cfg) < 0) {
668 LOGP(DMGCP, LOGL_ERROR, "Failed to send packet to the transcoder.\n");
669 talloc_free(nat->bsc_endpoints);
670 nat->bsc_endpoints = NULL;
671 close(cfg->gw_fd.bfd.fd);
672 cfg->gw_fd.bfd.fd = -1;
673 return -1;
674 }
675
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200676 return 0;
677}
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +0200678
679void bsc_mgcp_clear_endpoints_for(struct bsc_connection *bsc)
680{
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800681 struct rate_ctr *ctr = NULL;
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +0200682 int i;
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800683
684 if (bsc->cfg)
685 ctr = &bsc->cfg->stats.ctrg->ctr[BCFG_CTR_DROPPED_CALLS];
686
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +0200687 for (i = 1; i < bsc->nat->mgcp_cfg->number_endpoints; ++i) {
688 struct bsc_endpoint *bsc_endp = &bsc->nat->bsc_endpoints[i];
689
690 if (bsc_endp->bsc != bsc)
691 continue;
692
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +0800693 if (ctr)
694 rate_ctr_inc(ctr);
695
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800696 bsc_mgcp_free_endpoint(bsc->nat, i);
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +0200697 mgcp_free_endp(&bsc->nat->mgcp_cfg->endpoints[i]);
698 }
699}