blob: 3dad3962852040d76aca92d6144b996f7778c58e [file] [log] [blame]
Holger Hans Peter Freyther07fc0972012-10-24 21:52:16 +02001/**
2 * This file contains helper routines for MGCP Gateway handling.
3 *
4 * The first thing to remember is that each BSC has its own namespace/range
5 * of endpoints. Whenever a BSSMAP ASSIGNMENT REQUEST is received this code
6 * will be called to select an endpoint on the BSC. The mapping from original
7 * multiplex/timeslot to BSC multiplex'/timeslot' will be stored.
8 *
9 * The second part is to take messages on the public MGCP GW interface
10 * and forward them to the right BSC. This requires the MSC to first
11 * assign the timeslot. This assumption has been true so far. We are using
12 * the policy_cb of the MGCP protocol code to decide if the request should
13 * be immediately answered or delayed. An extension "Z: noanswer" is used
14 * to request the BSC to not respond. This is saving some bytes of bandwidth
15 * and as we are using TCP to forward the message we know it will arrive.
16 * The mgcp_do_read method reads these messages and hands them to the protocol
17 * parsing code which will call the mentioned policy_cb. The bsc_mgcp_forward
18 * method is used on the way back from the BSC to the network.
19 *
20 * The third part is to patch messages forwarded to the BSC. This includes
21 * the endpoint number, the ports to be used inside the SDP file and maybe
22 * some other bits.
23 *
24 */
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080025/*
Holger Hans Peter Freyther07fc0972012-10-24 21:52:16 +020026 * (C) 2010-2012 by Holger Hans Peter Freyther <zecke@selfish.org>
27 * (C) 2010-2012 by On-Waves
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080028 * All Rights Reserved
29 *
30 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010031 * it under the terms of the GNU Affero General Public License as published by
32 * the Free Software Foundation; either version 3 of the License, or
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080033 * (at your option) any later version.
34 *
35 * This program is distributed in the hope that it will be useful,
36 * but WITHOUT ANY WARRANTY; without even the implied warranty of
37 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010038 * GNU Affero General Public License for more details.
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080039 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010040 * You should have received a copy of the GNU Affero General Public License
41 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080042 *
43 */
44
45#include <openbsc/bsc_nat.h>
Holger Hans Peter Freytherab223352013-04-22 09:07:39 +020046#include <openbsc/bsc_nat_callstats.h>
Holger Hans Peter Freytherc2b31ed2010-07-31 05:17:17 +080047#include <openbsc/bsc_nat_sccp.h>
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080048#include <openbsc/gsm_data.h>
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080049#include <openbsc/debug.h>
Holger Hans Peter Freyther19c530c2010-10-13 23:52:01 +020050#include <openbsc/ipaccess.h>
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +020051#include <openbsc/mgcp.h>
52#include <openbsc/mgcp_internal.h>
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +020053#include <openbsc/control_cmd.h>
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080054
Harald Welted5db12c2010-08-03 15:11:51 +020055#include <osmocom/sccp/sccp.h>
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +080056
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010057#include <osmocom/core/talloc.h>
Harald Welted36ff762011-03-23 18:26:56 +010058#include <osmocom/gsm/gsm0808.h>
59#include <osmocom/gsm/protocol/gsm_08_08.h>
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +020060
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080061#include <netinet/in.h>
62#include <arpa/inet.h>
63
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +020064#include <errno.h>
65#include <unistd.h>
66
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +010067static void send_direct(struct bsc_nat *nat, struct msgb *output)
Holger Hans Peter Freyther77956aa2012-11-05 13:52:53 +010068{
69 if (osmo_wqueue_enqueue(&nat->mgcp_cfg->gw_fd, output) != 0) {
70 LOGP(DMGCP, LOGL_ERROR, "Failed to queue MGCP msg.\n");
71 msgb_free(output);
72 }
73}
74
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +010075static void mgcp_queue_for_call_agent(struct bsc_nat *nat, struct msgb *output)
76{
77 if (nat->mgcp_ipa)
78 bsc_nat_send_mgcp_to_msc(nat, output);
79 else
80 send_direct(nat, output);
81}
82
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +010083int bsc_mgcp_nr_multiplexes(int max_endpoints)
84{
85 int div = max_endpoints / 32;
86
87 if ((max_endpoints % 32) != 0)
88 div += 1;
89
90 return div;
91}
92
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +010093static int bsc_init_endps_if_needed(struct bsc_connection *con)
94{
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +010095 int multiplexes;
96
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +010097 /* we have done that */
98 if (con->_endpoint_status)
99 return 0;
100
101 /* we have no config... */
102 if (!con->cfg)
103 return -1;
104
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +0100105 multiplexes = bsc_mgcp_nr_multiplexes(con->cfg->max_endpoints);
106 con->number_multiplexes = multiplexes;
107 con->max_endpoints = con->cfg->max_endpoints;
108 con->_endpoint_status = talloc_zero_array(con, char, 32 * multiplexes + 1);
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100109 return con->_endpoint_status == NULL;
110}
111
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200112static int bsc_assign_endpoint(struct bsc_connection *bsc, struct nat_sccp_connection *con)
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800113{
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100114 int multiplex;
115 int timeslot;
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +0100116 const int number_endpoints = bsc->max_endpoints;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800117 int i;
118
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100119 mgcp_endpoint_to_timeslot(bsc->last_endpoint, &multiplex, &timeslot);
120 timeslot += 1;
121
122 for (i = 0; i < number_endpoints; ++i) {
123 int endpoint;
124
125 /* Wrap around timeslots */
126 if (timeslot == 0)
127 timeslot = 1;
128
129 if (timeslot == 0x1f) {
130 timeslot = 1;
131 multiplex += 1;
132 }
133
134 /* Wrap around the multiplex */
135 if (multiplex >= bsc->number_multiplexes)
136 multiplex = 0;
137
138 endpoint = mgcp_timeslot_to_endpoint(multiplex, timeslot);
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800139
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +0100140 /* Now check if we are allowed to assign this one */
141 if (endpoint >= bsc->max_endpoints) {
142 multiplex = 0;
143 timeslot = 1;
144 endpoint = mgcp_timeslot_to_endpoint(multiplex, timeslot);
145 }
146
147
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100148 if (bsc->_endpoint_status[endpoint] == 0) {
149 bsc->_endpoint_status[endpoint] = 1;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800150 con->bsc_endp = endpoint;
151 bsc->last_endpoint = endpoint;
152 return 0;
153 }
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100154
155 timeslot += 1;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800156 }
157
158 return -1;
159}
160
161static uint16_t create_cic(int endpoint)
162{
163 int timeslot, multiplex;
164
165 mgcp_endpoint_to_timeslot(endpoint, &multiplex, &timeslot);
166 return (multiplex << 5) | (timeslot & 0x1f);
167}
168
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200169int bsc_mgcp_assign_patch(struct nat_sccp_connection *con, struct msgb *msg)
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800170{
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200171 struct nat_sccp_connection *mcon;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800172 struct tlv_parsed tp;
Holger Hans Peter Freythere2c15202010-07-23 19:09:21 +0800173 uint16_t cic;
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800174 uint8_t timeslot;
175 uint8_t multiplex;
Holger Hans Peter Freyther14069772010-11-04 17:14:41 +0100176 unsigned int endp;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800177
178 if (!msg->l3h) {
179 LOGP(DNAT, LOGL_ERROR, "Assignment message should have l3h pointer.\n");
180 return -1;
181 }
182
183 if (msgb_l3len(msg) < 3) {
184 LOGP(DNAT, LOGL_ERROR, "Assignment message has not enough space for GSM0808.\n");
185 return -1;
186 }
187
188 tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l3h + 3, msgb_l3len(msg) - 3, 0, 0);
189 if (!TLVP_PRESENT(&tp, GSM0808_IE_CIRCUIT_IDENTITY_CODE)) {
190 LOGP(DNAT, LOGL_ERROR, "Circuit identity code not found in assignment message.\n");
191 return -1;
192 }
193
Holger Hans Peter Freythere2c15202010-07-23 19:09:21 +0800194 cic = ntohs(*(uint16_t *)TLVP_VAL(&tp, GSM0808_IE_CIRCUIT_IDENTITY_CODE));
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800195 timeslot = cic & 0x1f;
196 multiplex = (cic & ~0x1f) >> 5;
197
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800198
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800199 endp = mgcp_timeslot_to_endpoint(multiplex, timeslot);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800200
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100201 if (endp >= con->bsc->nat->mgcp_cfg->trunk.number_endpoints) {
Holger Hans Peter Freyther14069772010-11-04 17:14:41 +0100202 LOGP(DNAT, LOGL_ERROR,
203 "MSC attempted to assign bad endpoint 0x%x\n",
204 endp);
205 return -1;
206 }
207
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800208 /* find stale connections using that endpoint */
209 llist_for_each_entry(mcon, &con->bsc->nat->sccp_connections, list_entry) {
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800210 if (mcon->msc_endp == endp) {
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800211 LOGP(DNAT, LOGL_ERROR,
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800212 "Endpoint %d was assigned to 0x%x and now 0x%x\n",
213 endp,
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800214 sccp_src_ref_to_int(&mcon->patched_ref),
215 sccp_src_ref_to_int(&con->patched_ref));
216 bsc_mgcp_dlcx(mcon);
217 }
218 }
219
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800220 con->msc_endp = endp;
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100221 if (bsc_init_endps_if_needed(con->bsc) != 0)
222 return -1;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800223 if (bsc_assign_endpoint(con->bsc, con) != 0)
224 return -1;
225
226 /*
227 * now patch the message for the new CIC...
228 * still assumed to be one multiplex only
229 */
230 cic = htons(create_cic(con->bsc_endp));
231 memcpy((uint8_t *) TLVP_VAL(&tp, GSM0808_IE_CIRCUIT_IDENTITY_CODE),
232 &cic, sizeof(cic));
233
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800234 return 0;
235}
236
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800237static void bsc_mgcp_free_endpoint(struct bsc_nat *nat, int i)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200238{
239 if (nat->bsc_endpoints[i].transaction_id) {
240 talloc_free(nat->bsc_endpoints[i].transaction_id);
241 nat->bsc_endpoints[i].transaction_id = NULL;
242 }
243
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800244 nat->bsc_endpoints[i].transaction_state = 0;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200245 nat->bsc_endpoints[i].bsc = NULL;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200246}
247
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200248void bsc_mgcp_free_endpoints(struct bsc_nat *nat)
249{
250 int i;
251
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100252 for (i = 1; i < nat->mgcp_cfg->trunk.number_endpoints; ++i){
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200253 bsc_mgcp_free_endpoint(nat, i);
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100254 mgcp_free_endp(&nat->mgcp_cfg->trunk.endpoints[i]);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800255 }
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200256}
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200257
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800258/* send a MDCX where we do not want a response */
Holger Hans Peter Freyther601180f2010-08-29 23:40:33 +0800259static void bsc_mgcp_send_mdcx(struct bsc_connection *bsc, int port, struct mgcp_endpoint *endp)
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800260{
261 char buf[2096];
262 int len;
263
264 len = snprintf(buf, sizeof(buf),
Holger Hans Peter Freytherf42f45b2010-04-22 13:06:24 +0800265 "MDCX 23 %x@mgw MGCP 1.0\r\n"
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800266 "Z: noanswer\r\n"
267 "\r\n"
268 "c=IN IP4 %s\r\n"
269 "m=audio %d RTP/AVP 255\r\n",
Holger Hans Peter Freyther601180f2010-08-29 23:40:33 +0800270 port,
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800271 bsc->nat->mgcp_cfg->source_addr,
Holger Hans Peter Freyther58ff2192010-08-05 03:08:35 +0800272 endp->bts_end.local_port);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800273 if (len < 0) {
Holger Hans Peter Freyther74568912012-09-14 15:51:43 +0200274 LOGP(DMGCP, LOGL_ERROR, "snprintf for MDCX failed.\n");
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800275 return;
276 }
Holger Hans Peter Freytherd38aa452010-08-30 11:58:49 +0800277
Holger Hans Peter Freyther6de9d0b2012-10-30 16:32:19 +0100278 bsc_write_mgcp(bsc, (uint8_t *) buf, len);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800279}
280
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200281static void bsc_mgcp_send_dlcx(struct bsc_connection *bsc, int endpoint, int trans)
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800282{
283 char buf[2096];
284 int len;
285
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200286 /*
287 * The following is a bit of a spec violation. According to the
288 * MGCP grammar the transaction id is are upto 9 digits but we
289 * prefix it with an alpha numeric value so we can easily recognize
290 * it as a response.
291 */
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800292 len = snprintf(buf, sizeof(buf),
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200293 "DLCX nat-%u %x@mgw MGCP 1.0\r\n",
294 trans, endpoint);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800295 if (len < 0) {
296 LOGP(DMGCP, LOGL_ERROR, "snprintf for DLCX failed.\n");
297 return;
298 }
299
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800300 bsc_write_mgcp(bsc, (uint8_t *) buf, len);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800301}
302
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200303void bsc_mgcp_init(struct nat_sccp_connection *con)
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800304{
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800305 con->msc_endp = -1;
306 con->bsc_endp = -1;
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800307}
308
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200309/**
310 * This code will remember the network side of the audio statistics and
311 * once the internal DLCX response arrives this can be combined with the
312 * the BSC side and forwarded as a trap.
313 */
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200314static void remember_pending_dlcx(struct nat_sccp_connection *con, uint32_t transaction)
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200315{
316 struct bsc_nat_call_stats *stats;
317 struct bsc_connection *bsc = con->bsc;
318 struct mgcp_endpoint *endp;
319
320 stats = talloc_zero(bsc, struct bsc_nat_call_stats);
321 if (!stats) {
322 LOGP(DNAT, LOGL_NOTICE,
323 "Failed to allocate statistics for endpoint 0x%x\n",
324 con->msc_endp);
325 return;
326 }
327
328 /* take the endpoint here */
329 endp = &bsc->nat->mgcp_cfg->trunk.endpoints[con->msc_endp];
330
331 stats->remote_ref = con->remote_ref;
332 stats->src_ref = con->patched_ref;
333
334 stats->ci = endp->ci;
335 stats->bts_rtp_port = endp->bts_end.rtp_port;
336 stats->bts_addr = endp->bts_end.addr;
337 stats->net_rtp_port = endp->net_end.rtp_port;
338 stats->net_addr = endp->net_end.addr;
339
340 stats->net_ps = endp->net_end.packets;
341 stats->net_os = endp->net_end.octets;
342 stats->bts_pr = endp->bts_end.packets;
343 stats->bts_or = endp->bts_end.octets;
344 mgcp_state_calc_loss(&endp->bts_state, &endp->bts_end,
345 &stats->bts_expected, &stats->bts_loss);
346 stats->bts_jitter = mgcp_state_calc_jitter(&endp->bts_state);
347
348 stats->trans_id = transaction;
349 stats->msc_endpoint = con->msc_endp;
350
Holger Hans Peter Freyther7c831ec2012-11-12 18:36:00 +0100351 /*
352 * Too many pending requests.. let's remove the first two items.
353 */
354 if (!llist_empty(&bsc->pending_dlcx) &&
355 bsc->pending_dlcx_count >= bsc->cfg->max_endpoints * 3) {
356 struct bsc_nat_call_stats *tmp;
357 LOGP(DNAT, LOGL_ERROR,
358 "Too many(%d) pending DLCX responses on BSC: %d\n",
359 bsc->pending_dlcx_count, bsc->cfg->nr);
360 bsc->pending_dlcx_count -= 1;
361 tmp = (struct bsc_nat_call_stats *) bsc->pending_dlcx.next;
362 llist_del(&tmp->entry);
363 talloc_free(tmp);
364 }
365
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200366 bsc->pending_dlcx_count += 1;
367 llist_add_tail(&stats->entry, &bsc->pending_dlcx);
368}
369
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200370void bsc_mgcp_dlcx(struct nat_sccp_connection *con)
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800371{
372 /* send a DLCX down the stream */
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100373 if (con->bsc_endp != -1 && con->bsc->_endpoint_status) {
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200374 LOGP(DNAT, LOGL_NOTICE,
Holger Hans Peter Freyther931ad6a2012-11-12 18:00:25 +0100375 "Endpoint 0x%x was allocated for bsc: %d. Freeing it.\n",
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200376 con->bsc_endp, con->bsc->cfg->nr);
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100377 if (con->bsc->_endpoint_status[con->bsc_endp] != 1)
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800378 LOGP(DNAT, LOGL_ERROR, "Endpoint 0x%x was not in use\n", con->bsc_endp);
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200379 remember_pending_dlcx(con, con->bsc->next_transaction);
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100380 con->bsc->_endpoint_status[con->bsc_endp] = 0;
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200381 bsc_mgcp_send_dlcx(con->bsc, con->bsc_endp, con->bsc->next_transaction++);
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800382 bsc_mgcp_free_endpoint(con->bsc->nat, con->msc_endp);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800383 }
384
385 bsc_mgcp_init(con);
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200386
387}
388
389/*
390 * Search for the pending request
391 */
392static void handle_dlcx_response(struct bsc_connection *bsc, struct msgb *msg,
393 int code, const char *transaction)
394{
395 uint32_t trans_id = UINT32_MAX;
396 uint32_t b_ps, b_os, n_pr, n_or, jitter;
397 int loss;
398 struct bsc_nat_call_stats *tmp, *stat = NULL;
399 struct ctrl_cmd *cmd;
400
401 /* parse the transaction identifier */
402 int rc = sscanf(transaction, "nat-%u", &trans_id);
403 if (rc != 1) {
404 LOGP(DNAT, LOGL_ERROR, "Can not parse transaction id: '%s'\n",
405 transaction);
406 return;
407 }
408
409 /* find the answer for the request we made */
410 llist_for_each_entry(tmp, &bsc->pending_dlcx, entry) {
411 if (trans_id != tmp->trans_id)
412 continue;
413
414 stat = tmp;
415 break;
416 }
417
418 if (!stat) {
419 LOGP(DNAT, LOGL_ERROR,
420 "Can not find transaction for: %u\n", trans_id);
421 return;
422 }
423
424 /* attempt to parse the data now */
425 rc = mgcp_parse_stats(msg, &b_ps, &b_os, &n_pr, &n_or, &loss, &jitter);
426 if (rc != 0)
427 LOGP(DNAT, LOGL_ERROR,
428 "Can not parse connection statistics: %d\n", rc);
429
430 /* send a trap now */
431 cmd = ctrl_cmd_create(bsc, CTRL_TYPE_TRAP);
432 if (!cmd) {
433 LOGP(DNAT, LOGL_ERROR,
434 "Creating a ctrl cmd failed.\n");
435 goto free_stat;
436 }
437
438 cmd->id = "0";
Holger Hans Peter Freytherac04d8d2012-11-13 21:54:36 +0100439 cmd->variable = talloc_asprintf(cmd, "net.0.bsc.%d.call_stats.v2",
440 bsc->cfg->nr);
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200441 cmd->reply = talloc_asprintf(cmd,
Holger Hans Peter Freytherac04d8d2012-11-13 21:54:36 +0100442 "mg_ip_addr=%s,mg_port=%d,",
443 inet_ntoa(stat->net_addr),
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200444 stat->net_rtp_port);
445 cmd->reply = talloc_asprintf_append(cmd->reply,
446 "endpoint_ip_addr=%s,endpoint_port=%d,",
447 inet_ntoa(stat->bts_addr),
448 stat->bts_rtp_port);
449 cmd->reply = talloc_asprintf_append(cmd->reply,
450 "nat_pkt_in=%u,nat_pkt_out=%u,"
451 "nat_bytes_in=%u,nat_bytes_out=%u,"
452 "nat_jitter=%u,nat_pkt_lost=%d,",
453 stat->bts_pr, stat->net_ps,
454 stat->bts_or, stat->net_os,
455 stat->bts_jitter, stat->bts_loss);
456 cmd->reply = talloc_asprintf_append(cmd->reply,
457 "bsc_pkt_in=%u,bsc_pkt_out=%u,"
458 "bsc_bytes_in=%u,bsc_bytes_out=%u,"
Holger Hans Peter Freyther7d7054e2012-11-12 19:05:16 +0100459 "bsc_jitter=%u,bsc_pkt_lost=%d,",
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200460 n_pr, b_ps,
461 n_or, b_os,
462 jitter, loss);
Holger Hans Peter Freyther7d7054e2012-11-12 19:05:16 +0100463 cmd->reply = talloc_asprintf_append(cmd->reply,
464 "sccp_src_ref=%u,sccp_dst_ref=%u",
465 sccp_src_ref_to_int(&stat->src_ref),
466 sccp_src_ref_to_int(&stat->remote_ref));
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200467
468 /* send it and be done */
469 ctrl_cmd_send_to_all(bsc->nat->ctrl, cmd);
470 talloc_free(cmd);
471
472free_stat:
473 bsc->pending_dlcx_count -= 1;
474 llist_del(&stat->entry);
475 talloc_free(stat);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800476}
477
478
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200479struct nat_sccp_connection *bsc_mgcp_find_con(struct bsc_nat *nat, int endpoint)
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200480{
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200481 struct nat_sccp_connection *con = NULL;
482 struct nat_sccp_connection *sccp;
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200483
484 llist_for_each_entry(sccp, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800485 if (sccp->msc_endp == -1)
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200486 continue;
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800487 if (sccp->msc_endp != endpoint)
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200488 continue;
489
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800490 con = sccp;
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200491 }
492
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800493 if (con)
494 return con;
Holger Hans Peter Freythereb52e892010-04-18 02:14:45 +0800495
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200496 LOGP(DMGCP, LOGL_ERROR,
497 "Failed to find the connection for endpoint: 0x%x\n", endpoint);
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200498 return NULL;
499}
500
Holger Hans Peter Freythercb3c2c92012-10-24 21:53:07 +0200501static int bsc_mgcp_policy_cb(struct mgcp_trunk_config *tcfg, int endpoint, int state, const char *transaction_id)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200502{
503 struct bsc_nat *nat;
504 struct bsc_endpoint *bsc_endp;
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200505 struct nat_sccp_connection *sccp;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200506 struct mgcp_endpoint *mgcp_endp;
507 struct msgb *bsc_msg;
508
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100509 nat = tcfg->cfg->data;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200510 bsc_endp = &nat->bsc_endpoints[endpoint];
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100511 mgcp_endp = &nat->mgcp_cfg->trunk.endpoints[endpoint];
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200512
Holger Hans Peter Freytherfef76122010-04-24 21:05:18 +0800513 if (bsc_endp->transaction_id) {
514 LOGP(DMGCP, LOGL_ERROR, "Endpoint 0x%x had pending transaction: '%s'\n",
515 endpoint, bsc_endp->transaction_id);
516 talloc_free(bsc_endp->transaction_id);
517 bsc_endp->transaction_id = NULL;
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800518 bsc_endp->transaction_state = 0;
Holger Hans Peter Freytherfef76122010-04-24 21:05:18 +0800519 }
520 bsc_endp->bsc = NULL;
521
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800522 sccp = bsc_mgcp_find_con(nat, endpoint);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200523
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800524 if (!sccp) {
Holger Hans Peter Freyther3d194d92010-04-24 21:02:01 +0800525 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 +0200526
527 switch (state) {
528 case MGCP_ENDP_CRCX:
529 return MGCP_POLICY_REJECT;
530 break;
531 case MGCP_ENDP_DLCX:
532 return MGCP_POLICY_CONT;
533 break;
534 case MGCP_ENDP_MDCX:
535 return MGCP_POLICY_CONT;
536 break;
537 default:
538 LOGP(DMGCP, LOGL_FATAL, "Unhandled state: %d\n", state);
539 return MGCP_POLICY_CONT;
540 break;
541 }
542 }
543
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200544 /* we need to generate a new and patched message */
Jacob Erlbeck3dff27d2013-11-29 13:43:48 +0100545 bsc_msg = bsc_mgcp_rewrite((char *) nat->mgcp_msg, nat->mgcp_length,
546 sccp->bsc_endp, nat->mgcp_cfg->source_addr,
547 mgcp_endp->bts_end.local_port,
548 &mgcp_endp->net_end.payload_type);
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200549 if (!bsc_msg) {
550 LOGP(DMGCP, LOGL_ERROR, "Failed to patch the msg.\n");
551 return MGCP_POLICY_CONT;
552 }
553
554
Holger Hans Peter Freytherb3e0a032010-04-04 18:11:49 +0200555 bsc_endp->transaction_id = talloc_strdup(nat, transaction_id);
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800556 bsc_endp->transaction_state = state;
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800557 bsc_endp->bsc = sccp->bsc;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200558
559 /* we need to update some bits */
560 if (state == MGCP_ENDP_CRCX) {
561 struct sockaddr_in sock;
562 socklen_t len = sizeof(sock);
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800563 if (getpeername(sccp->bsc->write_queue.bfd.fd, (struct sockaddr *) &sock, &len) != 0) {
Holger Hans Peter Freyther92febd32010-04-06 11:17:07 +0200564 LOGP(DMGCP, LOGL_ERROR, "Can not get the peername...%d/%s\n",
565 errno, strerror(errno));
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200566 } else {
Holger Hans Peter Freythera17d7012010-08-05 01:34:51 +0800567 mgcp_endp->bts_end.addr = sock.sin_addr;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200568 }
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200569
Holger Hans Peter Freythere66cac32010-08-05 01:50:44 +0800570 /* send the message and a fake MDCX to force sending of a dummy packet */
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +0100571 bsc_write(sccp->bsc, bsc_msg, IPAC_PROTO_MGCP_OLD);
Holger Hans Peter Freyther601180f2010-08-29 23:40:33 +0800572 bsc_mgcp_send_mdcx(sccp->bsc, sccp->bsc_endp, mgcp_endp);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800573 return MGCP_POLICY_DEFER;
574 } else if (state == MGCP_ENDP_DLCX) {
575 /* we will free the endpoint now and send a DLCX to the BSC */
Holger Hans Peter Freyther3a347f02010-05-01 10:31:53 +0800576 msgb_free(bsc_msg);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800577 bsc_mgcp_dlcx(sccp);
578 return MGCP_POLICY_CONT;
579 } else {
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +0100580 bsc_write(sccp->bsc, bsc_msg, IPAC_PROTO_MGCP_OLD);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800581 return MGCP_POLICY_DEFER;
582 }
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200583}
584
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200585/*
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800586 * We do have a failure, free data downstream..
587 */
588static void free_chan_downstream(struct mgcp_endpoint *endp, struct bsc_endpoint *bsc_endp,
589 struct bsc_connection *bsc)
590{
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800591 LOGP(DMGCP, LOGL_ERROR, "No CI, freeing endpoint 0x%x in state %d\n",
592 ENDPOINT_NUMBER(endp), bsc_endp->transaction_state);
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800593
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800594 /* if a CRCX failed... send a DLCX down the stream */
595 if (bsc_endp->transaction_state == MGCP_ENDP_CRCX) {
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200596 struct nat_sccp_connection *con;
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800597 con = bsc_mgcp_find_con(bsc->nat, ENDPOINT_NUMBER(endp));
598 if (!con) {
599 LOGP(DMGCP, LOGL_ERROR,
600 "No SCCP connection for endp 0x%x\n",
601 ENDPOINT_NUMBER(endp));
602 } else {
603 if (con->bsc == bsc) {
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200604 bsc_mgcp_send_dlcx(bsc, con->bsc_endp, con->bsc->next_transaction++);
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800605 } else {
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800606 LOGP(DMGCP, LOGL_ERROR,
607 "Endpoint belongs to a different BSC\n");
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800608 }
609 }
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800610 }
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800611
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800612 bsc_mgcp_free_endpoint(bsc->nat, ENDPOINT_NUMBER(endp));
613 mgcp_free_endp(endp);
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800614}
615
616/*
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200617 * We have received a msg from the BSC. We will see if we know
618 * this transaction and if it belongs to the BSC. Then we will
619 * need to patch the content to point to the local network and we
620 * need to update the I: that was assigned by the BSS.
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200621 *
622 * Only responses to CRCX and DLCX should arrive here. The DLCX
623 * needs to be handled specially to combine the two statistics.
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200624 */
625void bsc_mgcp_forward(struct bsc_connection *bsc, struct msgb *msg)
626{
627 struct msgb *output;
628 struct bsc_endpoint *bsc_endp = NULL;
629 struct mgcp_endpoint *endp = NULL;
Holger Hans Peter Freytherd2dd6e82010-04-06 11:06:11 +0200630 int i, code;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200631 char transaction_id[60];
632
633 /* Some assumption that our buffer is big enough.. and null terminate */
634 if (msgb_l2len(msg) > 2000) {
635 LOGP(DMGCP, LOGL_ERROR, "MGCP message too long.\n");
636 return;
637 }
638
639 msg->l2h[msgb_l2len(msg)] = '\0';
640
641 if (bsc_mgcp_parse_response((const char *) msg->l2h, &code, transaction_id) != 0) {
642 LOGP(DMGCP, LOGL_ERROR, "Failed to parse response code.\n");
643 return;
644 }
645
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100646 for (i = 1; i < bsc->nat->mgcp_cfg->trunk.number_endpoints; ++i) {
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200647 if (bsc->nat->bsc_endpoints[i].bsc != bsc)
648 continue;
Holger Hans Peter Freyther3f7c7d02010-04-05 18:00:05 +0200649 /* no one listening? a bug? */
650 if (!bsc->nat->bsc_endpoints[i].transaction_id)
651 continue;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200652 if (strcmp(transaction_id, bsc->nat->bsc_endpoints[i].transaction_id) != 0)
653 continue;
654
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100655 endp = &bsc->nat->mgcp_cfg->trunk.endpoints[i];
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200656 bsc_endp = &bsc->nat->bsc_endpoints[i];
657 break;
658 }
659
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200660 if (!bsc_endp && strncmp("nat-", transaction_id, 4) == 0) {
661 handle_dlcx_response(bsc, msg, code, transaction_id);
662 return;
663 }
664
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200665 if (!bsc_endp) {
Holger Hans Peter Freytherb9ac37d2010-04-05 17:58:52 +0200666 LOGP(DMGCP, LOGL_ERROR, "Could not find active endpoint: %s for msg: '%s'\n",
667 transaction_id, (const char *) msg->l2h);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200668 return;
669 }
670
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800671 endp->ci = bsc_mgcp_extract_ci((const char *) msg->l2h);
Holger Hans Peter Freytherb84b5f62010-08-06 08:34:46 +0800672 if (endp->ci == CI_UNUSED) {
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800673 free_chan_downstream(endp, bsc_endp, bsc);
Holger Hans Peter Freytherb84b5f62010-08-06 08:34:46 +0800674 return;
675 }
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200676
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200677 /* free some stuff */
678 talloc_free(bsc_endp->transaction_id);
679 bsc_endp->transaction_id = NULL;
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800680 bsc_endp->transaction_state = 0;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200681
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200682 /*
683 * rewrite the information. In case the endpoint was deleted
684 * there should be nothing for us to rewrite so putting endp->rtp_port
685 * with the value of 0 should be no problem.
686 */
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800687 output = bsc_mgcp_rewrite((char * ) msg->l2h, msgb_l2len(msg), -1,
Jacob Erlbeck3dff27d2013-11-29 13:43:48 +0100688 bsc->nat->mgcp_cfg->source_addr,
689 endp->net_end.local_port,
690 &endp->bts_end.payload_type);
Holger Hans Peter Freyther5cc94fb2010-04-05 22:56:49 +0200691
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200692 if (!output) {
693 LOGP(DMGCP, LOGL_ERROR, "Failed to rewrite MGCP msg.\n");
694 return;
695 }
696
Holger Hans Peter Freyther77956aa2012-11-05 13:52:53 +0100697 mgcp_queue_for_call_agent(bsc->nat, output);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200698}
699
700int bsc_mgcp_parse_response(const char *str, int *code, char transaction[60])
701{
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200702 int rc;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200703 /* we want to parse two strings */
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200704 rc = sscanf(str, "%3d %59s\n", code, transaction) != 2;
705 transaction[59] = '\0';
706 return rc;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200707}
708
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800709uint32_t bsc_mgcp_extract_ci(const char *str)
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200710{
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800711 unsigned int ci;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200712 char *res = strstr(str, "I: ");
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800713 if (!res) {
714 LOGP(DMGCP, LOGL_ERROR, "No CI in msg '%s'\n", str);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200715 return CI_UNUSED;
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800716 }
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200717
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800718 if (sscanf(res, "I: %u", &ci) != 1) {
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800719 LOGP(DMGCP, LOGL_ERROR, "Failed to parse CI in msg '%s'\n", str);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200720 return CI_UNUSED;
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800721 }
722
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200723 return ci;
724}
725
Holger Hans Peter Freyther9592c452012-01-17 15:58:48 +0100726/**
727 * Create a new MGCPCommand based on the input and endpoint from a message
728 */
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800729static void patch_mgcp(struct msgb *output, const char *op, const char *tok,
730 int endp, int len, int cr)
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200731{
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800732 int slen;
733 int ret;
734 char buf[40];
735
736 buf[0] = buf[39] = '\0';
737 ret = sscanf(tok, "%*s %s", buf);
Holger Hans Peter Freyther9592c452012-01-17 15:58:48 +0100738 if (ret != 1) {
739 LOGP(DMGCP, LOGL_ERROR,
740 "Failed to find Endpoint in: %s\n", tok);
741 return;
742 }
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800743
744 slen = sprintf((char *) output->l3h, "%s %s %x@mgw MGCP 1.0%s",
745 op, buf, endp, cr ? "\r\n" : "\n");
746 output->l3h = msgb_put(output, slen);
747}
748
749/* we need to replace some strings... */
Jacob Erlbeck3dff27d2013-11-29 13:43:48 +0100750struct msgb *bsc_mgcp_rewrite(char *input, int length, int endpoint,
751 const char *ip, int port,
752 int *payload_type)
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800753{
Holger Hans Peter Freyther3dfe8a12012-11-07 11:36:58 +0100754 static const char crcx_str[] = "CRCX ";
755 static const char dlcx_str[] = "DLCX ";
756 static const char mdcx_str[] = "MDCX ";
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800757
Holger Hans Peter Freyther3dfe8a12012-11-07 11:36:58 +0100758 static const char ip_str[] = "c=IN IP4 ";
759 static const char aud_str[] = "m=audio ";
760 static const char fmt_str[] = "a=fmtp:";
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200761
762 char buf[128];
763 char *running, *token;
764 struct msgb *output;
765
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100766 /* keep state to add the a=fmtp line */
767 int found_fmtp = 0;
768 int payload = -1;
769 int cr = 1;
770
771 if (length > 4096 - 256) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200772 LOGP(DMGCP, LOGL_ERROR, "Input is too long.\n");
773 return NULL;
774 }
775
776 output = msgb_alloc_headroom(4096, 128, "MGCP rewritten");
777 if (!output) {
778 LOGP(DMGCP, LOGL_ERROR, "Failed to allocate new MGCP msg.\n");
779 return NULL;
780 }
781
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200782 running = input;
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200783 output->l2h = output->data;
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800784 output->l3h = output->l2h;
Holger Hans Peter Freyther9e5300a2010-04-04 19:34:44 +0200785 for (token = strsep(&running, "\n"); running; token = strsep(&running, "\n")) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200786 int len = strlen(token);
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100787 cr = len > 0 && token[len - 1] == '\r';
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200788
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800789 if (strncmp(crcx_str, token, (sizeof crcx_str) - 1) == 0) {
790 patch_mgcp(output, "CRCX", token, endpoint, len, cr);
791 } else if (strncmp(dlcx_str, token, (sizeof dlcx_str) - 1) == 0) {
792 patch_mgcp(output, "DLCX", token, endpoint, len, cr);
793 } else if (strncmp(mdcx_str, token, (sizeof mdcx_str) - 1) == 0) {
794 patch_mgcp(output, "MDCX", token, endpoint, len, cr);
795 } else if (strncmp(ip_str, token, (sizeof ip_str) - 1) == 0) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200796 output->l3h = msgb_put(output, strlen(ip_str));
797 memcpy(output->l3h, ip_str, strlen(ip_str));
798 output->l3h = msgb_put(output, strlen(ip));
799 memcpy(output->l3h, ip, strlen(ip));
Holger Hans Peter Freyther9e5300a2010-04-04 19:34:44 +0200800
801 if (cr) {
802 output->l3h = msgb_put(output, 2);
803 output->l3h[0] = '\r';
804 output->l3h[1] = '\n';
805 } else {
806 output->l3h = msgb_put(output, 1);
807 output->l3h[0] = '\n';
808 }
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200809 } else if (strncmp(aud_str, token, (sizeof aud_str) - 1) == 0) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200810 if (sscanf(token, "m=audio %*d RTP/AVP %d", &payload) != 1) {
811 LOGP(DMGCP, LOGL_ERROR, "Could not parsed audio line.\n");
812 msgb_free(output);
813 return NULL;
814 }
815
Holger Hans Peter Freyther9e5300a2010-04-04 19:34:44 +0200816 snprintf(buf, sizeof(buf)-1, "m=audio %d RTP/AVP %d%s",
817 port, payload, cr ? "\r\n" : "\n");
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200818 buf[sizeof(buf)-1] = '\0';
819
820 output->l3h = msgb_put(output, strlen(buf));
821 memcpy(output->l3h, buf, strlen(buf));
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100822 } else if (strncmp(fmt_str, token, (sizeof fmt_str) - 1) == 0) {
823 found_fmtp = 1;
824 goto copy;
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200825 } else {
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100826copy:
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200827 output->l3h = msgb_put(output, len + 1);
828 memcpy(output->l3h, token, len);
829 output->l3h[len] = '\n';
830 }
831 }
832
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100833 /*
834 * the above code made sure that we have 128 bytes lefts. So we can
835 * safely append another line.
836 */
837 if (!found_fmtp && payload != -1) {
838 snprintf(buf, sizeof(buf) - 1, "a=fmtp:%d mode-set=2%s",
839 payload, cr ? "\r\n" : "\n");
840 buf[sizeof(buf) - 1] = '\0';
841 output->l3h = msgb_put(output, strlen(buf));
842 memcpy(output->l3h, buf, strlen(buf));
843 }
844
Jacob Erlbeck3dff27d2013-11-29 13:43:48 +0100845 if (payload != -1 && payload_type)
846 *payload_type = payload;
847
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200848 return output;
849}
850
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +0100851/*
852 * This comes from the MSC and we will now parse it. The caller needs
853 * to free the msgb.
854 */
855void bsc_nat_handle_mgcp(struct bsc_nat *nat, struct msgb *msg)
856{
857 struct msgb *resp;
858
859 if (!nat->mgcp_ipa) {
860 LOGP(DMGCP, LOGL_ERROR, "MGCP message not allowed on IPA.\n");
861 return;
862 }
863
864 if (msgb_l2len(msg) > sizeof(nat->mgcp_msg) - 1) {
865 LOGP(DMGCP, LOGL_ERROR, "MGCP msg too big for handling.\n");
866 return;
867 }
868
869 memcpy(nat->mgcp_msg, msg->l2h, msgb_l2len(msg));
870 nat->mgcp_length = msgb_l2len(msg);
871 nat->mgcp_msg[nat->mgcp_length] = '\0';
872
873 /* now handle the message */
874 resp = mgcp_handle_message(nat->mgcp_cfg, msg);
875
876 /* we do have a direct answer... e.g. AUEP */
877 if (resp)
878 mgcp_queue_for_call_agent(nat, resp);
879
880 return;
881}
882
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200883static int mgcp_do_read(struct osmo_fd *fd)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200884{
885 struct bsc_nat *nat;
886 struct msgb *msg, *resp;
887 int rc;
888
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200889 nat = fd->data;
890
891 rc = read(fd->fd, nat->mgcp_msg, sizeof(nat->mgcp_msg) - 1);
892 if (rc <= 0) {
893 LOGP(DMGCP, LOGL_ERROR, "Failed to read errno: %d\n", errno);
894 return -1;
895 }
896
897 nat->mgcp_msg[rc] = '\0';
898 nat->mgcp_length = rc;
899
900 msg = msgb_alloc(sizeof(nat->mgcp_msg), "MGCP GW Read");
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200901 if (!msg) {
902 LOGP(DMGCP, LOGL_ERROR, "Failed to create buffer.\n");
903 return -1;
904 }
905
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200906 msg->l2h = msgb_put(msg, rc);
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200907 memcpy(msg->l2h, nat->mgcp_msg, msgb_l2len(msg));
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200908 resp = mgcp_handle_message(nat->mgcp_cfg, msg);
909 msgb_free(msg);
910
911 /* we do have a direct answer... e.g. AUEP */
Holger Hans Peter Freyther77956aa2012-11-05 13:52:53 +0100912 if (resp)
913 mgcp_queue_for_call_agent(nat, resp);
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200914
915 return 0;
916}
917
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200918static int mgcp_do_write(struct osmo_fd *bfd, struct msgb *msg)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200919{
920 int rc;
921
922 rc = write(bfd->fd, msg->data, msg->len);
923
924 if (rc != msg->len) {
925 LOGP(DMGCP, LOGL_ERROR, "Failed to write msg to MGCP CallAgent.\n");
926 return -1;
927 }
928
929 return rc;
930}
931
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +0100932static int init_mgcp_socket(struct bsc_nat *nat, struct mgcp_config *cfg)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200933{
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200934 struct sockaddr_in addr;
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +0100935 int on;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200936
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800937 cfg->gw_fd.bfd.fd = socket(AF_INET, SOCK_DGRAM, 0);
938 if (cfg->gw_fd.bfd.fd < 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200939 LOGP(DMGCP, LOGL_ERROR, "Failed to create MGCP socket. errno: %d\n", errno);
940 return -1;
941 }
942
943 on = 1;
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800944 setsockopt(cfg->gw_fd.bfd.fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200945
Holger Hans Peter Freyther9bec10e2013-07-05 07:48:04 +0200946 memset(&addr, 0, sizeof(addr));
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200947 addr.sin_family = AF_INET;
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800948 addr.sin_port = htons(cfg->source_port);
949 inet_aton(cfg->source_addr, &addr.sin_addr);
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200950
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800951 if (bind(cfg->gw_fd.bfd.fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
Holger Hans Peter Freytherd000c272011-03-29 17:12:07 +0200952 LOGP(DMGCP, LOGL_ERROR, "Failed to bind on %s:%d errno: %d\n",
953 cfg->source_addr, cfg->source_port, errno);
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800954 close(cfg->gw_fd.bfd.fd);
955 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200956 return -1;
957 }
958
959 addr.sin_port = htons(2727);
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800960 inet_aton(cfg->call_agent_addr, &addr.sin_addr);
961 if (connect(cfg->gw_fd.bfd.fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200962 LOGP(DMGCP, LOGL_ERROR, "Failed to connect to: '%s'. errno: %d\n",
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800963 cfg->call_agent_addr, errno);
964 close(cfg->gw_fd.bfd.fd);
965 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200966 return -1;
967 }
968
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200969 osmo_wqueue_init(&cfg->gw_fd, 10);
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800970 cfg->gw_fd.bfd.when = BSC_FD_READ;
971 cfg->gw_fd.bfd.data = nat;
972 cfg->gw_fd.read_cb = mgcp_do_read;
973 cfg->gw_fd.write_cb = mgcp_do_write;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200974
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200975 if (osmo_fd_register(&cfg->gw_fd.bfd) != 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200976 LOGP(DMGCP, LOGL_ERROR, "Failed to register MGCP fd.\n");
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800977 close(cfg->gw_fd.bfd.fd);
978 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200979 return -1;
980 }
981
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +0100982 return 0;
983}
984
985int bsc_mgcp_nat_init(struct bsc_nat *nat)
986{
987 struct mgcp_config *cfg = nat->mgcp_cfg;
988
989 if (!cfg->call_agent_addr) {
990 LOGP(DMGCP, LOGL_ERROR, "The BSC nat requires the call agent ip to be set.\n");
991 return -1;
992 }
993
994 if (cfg->bts_ip) {
995 LOGP(DMGCP, LOGL_ERROR, "Do not set the BTS ip for the nat.\n");
996 return -1;
997 }
998
999 /* initialize the MGCP socket */
1000 if (!nat->mgcp_ipa) {
1001 int rc = init_mgcp_socket(nat, cfg);
1002 if (rc != 0)
1003 return rc;
1004 }
1005
1006
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +02001007 /* some more MGCP config handling */
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001008 cfg->data = nat;
1009 cfg->policy_cb = bsc_mgcp_policy_cb;
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +01001010 cfg->trunk.force_realloc = 1;
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +00001011
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001012 if (cfg->bts_ip)
1013 talloc_free(cfg->bts_ip);
1014 cfg->bts_ip = "";
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +00001015
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +02001016 nat->bsc_endpoints = talloc_zero_array(nat,
1017 struct bsc_endpoint,
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +01001018 cfg->trunk.number_endpoints + 1);
Holger Hans Peter Freyther3c792142010-09-19 04:34:04 +08001019 if (!nat->bsc_endpoints) {
1020 LOGP(DMGCP, LOGL_ERROR, "Failed to allocate nat endpoints\n");
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001021 close(cfg->gw_fd.bfd.fd);
1022 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freyther3c792142010-09-19 04:34:04 +08001023 return -1;
1024 }
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +02001025
Holger Hans Peter Freytherf2eedff2010-09-19 04:36:07 +08001026 if (mgcp_reset_transcoder(cfg) < 0) {
1027 LOGP(DMGCP, LOGL_ERROR, "Failed to send packet to the transcoder.\n");
1028 talloc_free(nat->bsc_endpoints);
1029 nat->bsc_endpoints = NULL;
1030 close(cfg->gw_fd.bfd.fd);
1031 cfg->gw_fd.bfd.fd = -1;
1032 return -1;
1033 }
1034
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001035 return 0;
1036}
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +02001037
1038void bsc_mgcp_clear_endpoints_for(struct bsc_connection *bsc)
1039{
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +08001040 struct rate_ctr *ctr = NULL;
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +02001041 int i;
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +08001042
1043 if (bsc->cfg)
1044 ctr = &bsc->cfg->stats.ctrg->ctr[BCFG_CTR_DROPPED_CALLS];
1045
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +01001046 for (i = 1; i < bsc->nat->mgcp_cfg->trunk.number_endpoints; ++i) {
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +02001047 struct bsc_endpoint *bsc_endp = &bsc->nat->bsc_endpoints[i];
1048
1049 if (bsc_endp->bsc != bsc)
1050 continue;
1051
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +08001052 if (ctr)
1053 rate_ctr_inc(ctr);
1054
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +08001055 bsc_mgcp_free_endpoint(bsc->nat, i);
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +01001056 mgcp_free_endp(&bsc->nat->mgcp_cfg->trunk.endpoints[i]);
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +02001057 }
1058}